| OLD | NEW |
| 1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 /* Copyright (c) 2012 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 -webkit-box-align: center; | 9 -webkit-box-align: center; |
| 10 -webkit-box-pack: center; | 10 -webkit-box-pack: center; |
| 11 /* -webkit-transition: all 180ms linear; */ |
| 11 display: -webkit-box; | 12 display: -webkit-box; |
| 13 /* opacity: 1; */ |
| 12 position: relative; | 14 position: relative; |
| 13 } | 15 } |
| 14 | 16 |
| 15 /* Hide the pod row while images are loading. */ | 17 /* Hide the pod row while images are loading. */ |
| 16 podrow.images-loading { | 18 podrow.images-loading { |
| 19 /* opacity: 0; */ |
| 17 visibility: hidden; | 20 visibility: hidden; |
| 18 } | 21 } |
| 19 | 22 |
| 20 html[oobe=old] podrow { | 23 html[oobe=old] podrow { |
| 21 height: 230px; | 24 height: 230px; |
| 22 } | 25 } |
| 23 | 26 |
| 24 .pod { | 27 .pod { |
| 25 border-radius: 2px; | 28 border-radius: 2px; |
| 26 cursor: pointer; | 29 cursor: pointer; |
| (...skipping 278 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 305 | 308 |
| 306 html[oobe=old] .signed-in-indicator { | 309 html[oobe=old] .signed-in-indicator { |
| 307 margin: 5px; | 310 margin: 5px; |
| 308 } | 311 } |
| 309 | 312 |
| 310 html[oobe=old] .pod.focused .signed-in-indicator { | 313 html[oobe=old] .pod.focused .signed-in-indicator { |
| 311 /* Track shifting of .user-image on pod focus. */ | 314 /* Track shifting of .user-image on pod focus. */ |
| 312 -webkit-transform: translateY(-1px); | 315 -webkit-transform: translateY(-1px); |
| 313 -webkit-transition: -webkit-transform 140ms ease; | 316 -webkit-transition: -webkit-transform 140ms ease; |
| 314 } | 317 } |
| OLD | NEW |