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

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

Issue 10376003: Improve accessibility of user image selection screen. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase. Manually verified with fresh Chrome OS build. Created 8 years, 4 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 the Out of the box experience (OOBE) flow, 5 * This is the stylesheet used by the Out of the box experience (OOBE) flow,
6 * sign in and lock screens. 6 * sign in and lock screens.
7 */ 7 */
8 8
9 html, 9 html,
10 body { 10 body {
(...skipping 462 matching lines...) Expand 10 before | Expand all | Expand 10 after
473 width: 400px; 473 width: 400px;
474 } 474 }
475 475
476 #user-image-grid img { 476 #user-image-grid img {
477 background-color: white; 477 background-color: white;
478 height: 50px; 478 height: 50px;
479 vertical-align: middle; 479 vertical-align: middle;
480 width: 50px; 480 width: 50px;
481 } 481 }
482 482
483 #user-image-grid [role=listitem] { 483 #user-image-grid > li {
484 border: 1px solid rgba(0, 0, 0, 0.15); 484 border: 1px solid rgba(0, 0, 0, 0.15);
485 border-radius: 4px; 485 border-radius: 4px;
486 display: inline-block; 486 display: inline-block;
487 margin: 4px; 487 margin: 4px;
488 padding: 3px; 488 padding: 3px;
489 } 489 }
490 490
491 #user-image-grid [selected] { 491 #user-image-grid [selected] {
492 border: 2px solid rgb(0, 102, 204); 492 border: 2px solid rgb(0, 102, 204);
493 padding: 2px; 493 padding: 2px;
(...skipping 773 matching lines...) Expand 10 before | Expand all | Expand 10 after
1267 width: 100%; 1267 width: 100%;
1268 } 1268 }
1269 1269
1270 .background-initial { 1270 .background-initial {
1271 opacity: 0; 1271 opacity: 0;
1272 } 1272 }
1273 1273
1274 .background-final { 1274 .background-final {
1275 opacity: 1; 1275 opacity: 1;
1276 } 1276 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698