| 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 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 65 opacity: 0; | 65 opacity: 0; |
| 66 visibility: hidden; | 66 visibility: hidden; |
| 67 } | 67 } |
| 68 | 68 |
| 69 html[screen=login] #signin-banner.message-set, | 69 html[screen=login] #signin-banner.message-set, |
| 70 html[screen=lock] #signin-banner.message-set { | 70 html[screen=lock] #signin-banner.message-set { |
| 71 opacity: 1; | 71 opacity: 1; |
| 72 transition: opacity 1s; | 72 transition: opacity 1s; |
| 73 visibility: visible; | 73 visibility: visible; |
| 74 } | 74 } |
| 75 |
| 76 .small-pod-container { |
| 77 overflow: scroll; |
| 78 position: absolute; |
| 79 } |
| OLD | NEW |