blob: f46e7c16d60fe46dab261034835c29baa50116b9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
/* Copyright (c) 2012 The Chromium Authors. All rights reserved.
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
.account-picker.flying-pods #account-picker {
-webkit-transition: width 180ms ease,
height 180ms ease;
}
#signin-banner-container1 {
bottom: 100%;
margin-bottom: 10px;
position: absolute;
width: 100%;
}
#signin-banner-container2 {
display: inline-block;
position: relative;
right: -50%;
}
#signin-banner {
background-color: rgba(0, 0, 0, 0.75);
border-radius: 4px;
color: whitesmoke;
display: none;
font-size: 15px;
left: -50%;
padding: 20px;
position: relative;
white-space: nowrap;
}
html[screen=user-adding] #signin-banner {
display: inline-block;
}
html[screen=lock] #signin-banner {
display: inline-block;
opacity: 0;
visibility: hidden;
}
html[screen=lock] #signin-banner.message-set {
-webkit-transition: opacity 1s;
opacity: 1;
visibility: visible;
}
|