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; |
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
64 | 64 |
65 .pod.faded { | 65 .pod.faded { |
66 opacity: .75; | 66 opacity: .75; |
67 } | 67 } |
68 | 68 |
69 html[oobe=old] .pod.focused .user-image { | 69 html[oobe=old] .pod.focused .user-image { |
70 -webkit-transform: translateY(-1px); | 70 -webkit-transform: translateY(-1px); |
71 box-shadow: 0 6px 16px #a4a4a4; | 71 box-shadow: 0 6px 16px #a4a4a4; |
72 } | 72 } |
73 | 73 |
74 html[oobe=new] .user-image { | 74 html[oobe=new] .pod .user-image { |
75 opacity: 0.7; | 75 opacity: 0.7; |
76 } | 76 } |
77 | 77 |
78 html[oobe=new] .pod.focused .user-image { | 78 html[oobe=new] .pod.focused .user-image { |
79 opacity: 1; | 79 opacity: 1; |
80 } | 80 } |
81 | 81 |
82 html[oobe=new] .pod:not(.focused) { | 82 html[oobe=new] .pod:not(.focused) { |
83 -webkit-transform: scale(0.9); | 83 -webkit-transform: scale(0.9); |
84 } | 84 } |
(...skipping 209 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
294 | 294 |
295 html[oobe=old] .signed-in-indicator { | 295 html[oobe=old] .signed-in-indicator { |
296 margin: 5px; | 296 margin: 5px; |
297 } | 297 } |
298 | 298 |
299 html[oobe=old] .pod.focused .signed-in-indicator { | 299 html[oobe=old] .pod.focused .signed-in-indicator { |
300 /* Track shifting of .user-image on pod focus. */ | 300 /* Track shifting of .user-image on pod focus. */ |
301 -webkit-transform: translateY(-1px); | 301 -webkit-transform: translateY(-1px); |
302 -webkit-transition: -webkit-transform 140ms ease; | 302 -webkit-transition: -webkit-transform 140ms ease; |
303 } | 303 } |
OLD | NEW |