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 209 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
220 } | 220 } |
221 | 221 |
222 .auth-container, | 222 .auth-container, |
223 .password-entry-container, | 223 .password-entry-container, |
224 .reauth-hint-container { | 224 .reauth-hint-container { |
225 display: none; | 225 display: none; |
226 } | 226 } |
227 | 227 |
228 .input-line { | 228 .input-line { |
229 display: none; | 229 display: none; |
| 230 height: 1px; |
230 opacity: 0.34; | 231 opacity: 0.34; |
231 position: absolute; | 232 position: absolute; |
232 stroke: #FFFFFF; | 233 stroke: #FFFFFF; |
233 stroke-width: 1px; | 234 stroke-width: 1px; |
234 top: 40px; | 235 top: 40px; |
235 } | 236 } |
236 | 237 |
237 .input-present .input-line { | 238 .input-present .input-line { |
238 opacity: 1; | 239 opacity: 1; |
239 } | 240 } |
(...skipping 886 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1126 .small-pod.extra-small .small-pod-name { | 1127 .small-pod.extra-small .small-pod-name { |
1127 left: 76px; | 1128 left: 76px; |
1128 padding: 16px 0; | 1129 padding: 16px 0; |
1129 width: 190px; | 1130 width: 190px; |
1130 } | 1131 } |
1131 | 1132 |
1132 @keyframes switch-image { | 1133 @keyframes switch-image { |
1133 from { transform: rotate3d(0, 1, 0, 90deg); } | 1134 from { transform: rotate3d(0, 1, 0, 90deg); } |
1134 to { transform: none; } | 1135 to { transform: none; } |
1135 } | 1136 } |
OLD | NEW |