OLD | NEW |
1 /* Copyright 2014 The Chromium Authors. All rights reserved. | 1 /* Copyright 2014 The Chromium Authors. All rights reserved. |
2 * Use of this source code is governed by a BSD-style license that can be | 2 * Use of this source code is governed by a BSD-style license that can be |
3 * found in the LICENSE file. | 3 * found in the LICENSE file. |
4 */ | 4 */ |
5 | 5 |
6 .account-picker.flying-pods #account-picker { | 6 .account-picker.flying-pods #account-picker { |
7 -webkit-transition: width 180ms ease, | 7 transition: width 180ms ease, height 180ms ease; |
8 height 180ms ease; | |
9 } | 8 } |
10 | 9 |
11 #bubble { | 10 #bubble { |
12 z-index: 1; | 11 z-index: 1; |
13 } | 12 } |
14 | 13 |
15 #signin-banner-container1 { | 14 #signin-banner-container1 { |
16 bottom: 100%; | 15 bottom: 100%; |
17 margin-bottom: 10px; | 16 margin-bottom: 10px; |
18 position: absolute; | 17 position: absolute; |
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
52 display: inline-block; | 51 display: inline-block; |
53 } | 52 } |
54 | 53 |
55 html[screen=lock] #signin-banner { | 54 html[screen=lock] #signin-banner { |
56 display: inline-block; | 55 display: inline-block; |
57 opacity: 0; | 56 opacity: 0; |
58 visibility: hidden; | 57 visibility: hidden; |
59 } | 58 } |
60 | 59 |
61 html[screen=lock] #signin-banner.message-set { | 60 html[screen=lock] #signin-banner.message-set { |
62 -webkit-transition: opacity 1s; | |
63 opacity: 1; | 61 opacity: 1; |
| 62 transition: opacity 1s; |
64 visibility: visible; | 63 visibility: visible; |
65 } | 64 } |
OLD | NEW |