| 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 * This is the stylesheet used by user pods row of account picker UI. | 5 * This is the stylesheet used by user pods row of account picker UI. |
| 6 */ | 6 */ |
| 7 | 7 |
| 8 podrow { | 8 podrow { |
| 9 /* Temporarily disabled because animation interferes with updating screen's | 9 /* Temporarily disabled because animation interferes with updating screen's |
| 10 size. */ | 10 size. */ |
| (...skipping 211 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 222 white-space: nowrap; | 222 white-space: nowrap; |
| 223 } | 223 } |
| 224 | 224 |
| 225 .learn-more-container, | 225 .learn-more-container, |
| 226 .auth-container, | 226 .auth-container, |
| 227 .password-entry-container, | 227 .password-entry-container, |
| 228 .reauth-hint-container { | 228 .reauth-hint-container { |
| 229 display: none; | 229 display: none; |
| 230 } | 230 } |
| 231 | 231 |
| 232 .pod[is-active-directory] .reauth-warning { |
| 233 display: none; |
| 234 } |
| 235 |
| 232 .pod[auth-type='offlinePassword'].focused .password-entry-container, | 236 .pod[auth-type='offlinePassword'].focused .password-entry-container, |
| 233 .pod[auth-type='forceOfflinePassword'].focused .password-entry-container { | 237 .pod[auth-type='forceOfflinePassword'].focused .password-entry-container { |
| 234 display: flex; | 238 display: flex; |
| 235 flex: auto; | 239 flex: auto; |
| 236 } | 240 } |
| 237 | 241 |
| 238 .password-container { | 242 .password-container { |
| 239 flex: auto; | 243 flex: auto; |
| 240 } | 244 } |
| 241 | 245 |
| (...skipping 742 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 984 -webkit-animation: ellipsis-component2 1.5s infinite; | 988 -webkit-animation: ellipsis-component2 1.5s infinite; |
| 985 } | 989 } |
| 986 | 990 |
| 987 @-webkit-keyframes ellipsis-component2 { | 991 @-webkit-keyframes ellipsis-component2 { |
| 988 0% { opacity: 0; } | 992 0% { opacity: 0; } |
| 989 25% { opacity: 0; } | 993 25% { opacity: 0; } |
| 990 50% { opacity: 0; } | 994 50% { opacity: 0; } |
| 991 75% { opacity: 1; } | 995 75% { opacity: 1; } |
| 992 100% { opacity: 0; } | 996 100% { opacity: 0; } |
| 993 } | 997 } |
| OLD | NEW |