| 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 transition: width 180ms ease, height 180ms ease; | 7 transition: width 180ms ease, height 180ms ease; |
| 8 } | 8 } |
| 9 | 9 |
| 10 #bubble { | 10 #bubble { |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 44 | 44 |
| 45 html[dir=rtl] #signin-banner { | 45 html[dir=rtl] #signin-banner { |
| 46 left: auto; | 46 left: auto; |
| 47 right: -50%; | 47 right: -50%; |
| 48 } | 48 } |
| 49 | 49 |
| 50 html[screen=user-adding] #signin-banner { | 50 html[screen=user-adding] #signin-banner { |
| 51 display: inline-block; | 51 display: inline-block; |
| 52 } | 52 } |
| 53 | 53 |
| 54 html[screen=login] #signin-banner, |
| 54 html[screen=lock] #signin-banner { | 55 html[screen=lock] #signin-banner { |
| 55 display: inline-block; | 56 display: inline-block; |
| 56 opacity: 0; | 57 opacity: 0; |
| 57 visibility: hidden; | 58 visibility: hidden; |
| 58 } | 59 } |
| 59 | 60 |
| 61 html[screen=login] #signin-banner.message-set, |
| 60 html[screen=lock] #signin-banner.message-set { | 62 html[screen=lock] #signin-banner.message-set { |
| 61 opacity: 1; | 63 opacity: 1; |
| 62 transition: opacity 1s; | 64 transition: opacity 1s; |
| 63 visibility: visible; | 65 visibility: visible; |
| 64 } | 66 } |
| OLD | NEW |