Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(160)

Side by Side Diff: chrome/browser/resources/chromeos/login/user_pod_row.css

Issue 10695145: Fix user-image css rule. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698