| 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 167 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 178 | 178 |
| 179 .pod.focused:not(.multiprofiles-policy-applied) .auth-container { | 179 .pod.focused:not(.multiprofiles-policy-applied) .auth-container { |
| 180 background-color: white; | 180 background-color: white; |
| 181 position: absolute; | 181 position: absolute; |
| 182 top: 160px; | 182 top: 160px; |
| 183 width: 160px; | 183 width: 160px; |
| 184 } | 184 } |
| 185 | 185 |
| 186 .auth-container.pin-disabled { | 186 .auth-container.pin-disabled { |
| 187 opacity: 1; | 187 opacity: 1; |
| 188 transition: opacity 200ms ease-in-out 180ms, | 188 transition: opacity 200ms ease-in-out 180ms; |
| 189 visibility 200ms ease-in-out 180ms; | |
| 190 visibility: visible; | 189 visibility: visible; |
| 191 } | 190 } |
| 192 | 191 |
| 193 .auth-container.pin-enabled { | 192 .auth-container.pin-enabled { |
| 194 opacity: 0; | 193 opacity: 0; |
| 195 transition: none; | 194 transition: none; |
| 196 visibility: hidden; | 195 visibility: hidden; |
| 197 } | 196 } |
| 198 | 197 |
| 199 .name-container { | 198 .name-container { |
| (...skipping 688 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 888 -webkit-animation: ellipsis-component2 1.5s infinite; | 887 -webkit-animation: ellipsis-component2 1.5s infinite; |
| 889 } | 888 } |
| 890 | 889 |
| 891 @-webkit-keyframes ellipsis-component2 { | 890 @-webkit-keyframes ellipsis-component2 { |
| 892 0% { opacity: 0; } | 891 0% { opacity: 0; } |
| 893 25% { opacity: 0; } | 892 25% { opacity: 0; } |
| 894 50% { opacity: 0; } | 893 50% { opacity: 0; } |
| 895 75% { opacity: 1; } | 894 75% { opacity: 1; } |
| 896 100% { opacity: 0; } | 895 100% { opacity: 0; } |
| 897 } | 896 } |
| OLD | NEW |