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 28 matching lines...) Expand all Loading... |
39 width: 180px; | 39 width: 180px; |
40 z-index: 0; | 40 z-index: 0; |
41 } | 41 } |
42 | 42 |
43 #account_picker.flying-pods .pod { | 43 #account_picker.flying-pods .pod { |
44 transition: all 180ms; | 44 transition: all 180ms; |
45 } | 45 } |
46 | 46 |
47 .pod.flying-pin-pod { | 47 .pod.flying-pin-pod { |
48 transition: height 180ms ease-in-out, | 48 transition: height 180ms ease-in-out, |
| 49 left 180ms ease-in-out, |
49 top 180ms ease-in-out, | 50 top 180ms ease-in-out, |
50 width 180ms ease-in-out; | 51 width 180ms ease-in-out; |
51 } | 52 } |
52 | 53 |
53 .pod.pin-enabled { | 54 .pod.pin-enabled { |
54 height: 594px; | 55 height: 594px; |
55 top: -200px !important; | 56 top: -200px !important; |
56 width: 270px; | 57 width: 270px; |
57 } | 58 } |
58 | 59 |
(...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
209 visibility: visible; | 210 visibility: visible; |
210 } | 211 } |
211 | 212 |
212 .auth-container.pin-enabled { | 213 .auth-container.pin-enabled { |
213 opacity: 0; | 214 opacity: 0; |
214 transition: none; | 215 transition: none; |
215 visibility: hidden; | 216 visibility: hidden; |
216 } | 217 } |
217 | 218 |
218 .name-container { | 219 .name-container { |
219 transition: transform 180ms; | 220 transition: transform 180ms, |
| 221 opacity 180ms ease-in-out 180ms, |
| 222 visibility 180ms ease-in-out 180ms; |
| 223 opacity : 1; |
| 224 visibility: visible; |
220 } | 225 } |
221 | 226 |
222 .pod.focused .name-container { | 227 .name-container.pin-enabled { |
223 display: none; | 228 opacity : 0; |
| 229 transition: none; |
| 230 visibility: hidden; |
224 } | 231 } |
225 | 232 |
226 .pod.focused.multiprofiles-policy-applied .name-container { | 233 .pod.focused.multiprofiles-policy-applied .name-container { |
227 display: flex; | 234 display: flex; |
228 } | 235 } |
229 | 236 |
230 .name { | 237 .name { |
231 color: #565656; | 238 color: #565656; |
232 /* This should be 15.6px - the equivalent of 14px at 90% scale. */ | 239 /* This should be 15.6px - the equivalent of 14px at 90% scale. */ |
233 flex: auto; | 240 flex: auto; |
(...skipping 673 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
907 -webkit-animation: ellipsis-component2 1.5s infinite; | 914 -webkit-animation: ellipsis-component2 1.5s infinite; |
908 } | 915 } |
909 | 916 |
910 @-webkit-keyframes ellipsis-component2 { | 917 @-webkit-keyframes ellipsis-component2 { |
911 0% { opacity: 0; } | 918 0% { opacity: 0; } |
912 25% { opacity: 0; } | 919 25% { opacity: 0; } |
913 50% { opacity: 0; } | 920 50% { opacity: 0; } |
914 75% { opacity: 1; } | 921 75% { opacity: 1; } |
915 100% { opacity: 0; } | 922 100% { opacity: 0; } |
916 } | 923 } |
OLD | NEW |