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

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

Issue 10889024: [cros] Initialize OOBE in parallel when boot animation is disabled. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 3 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
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;
11 /* -webkit-transition: all 180ms linear; */
11 display: -webkit-box; 12 display: -webkit-box;
13 /* opacity: 1; */
Nikita (slow) 2012/08/29 14:10:01 Cleanup
Ivan Korotkov 2012/08/30 12:26:06 Done.
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 271 matching lines...) Expand 10 before | Expand all | Expand 10 after
298 301
299 html[oobe=old] .signed-in-indicator { 302 html[oobe=old] .signed-in-indicator {
300 margin: 5px; 303 margin: 5px;
301 } 304 }
302 305
303 html[oobe=old] .pod.focused .signed-in-indicator { 306 html[oobe=old] .pod.focused .signed-in-indicator {
304 /* Track shifting of .user-image on pod focus. */ 307 /* Track shifting of .user-image on pod focus. */
305 -webkit-transform: translateY(-1px); 308 -webkit-transform: translateY(-1px);
306 -webkit-transition: -webkit-transform 140ms ease; 309 -webkit-transition: -webkit-transform 140ms ease;
307 } 310 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698