Chromium Code Reviews| 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 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 276 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 287 width: 400px; | 287 width: 400px; |
| 288 } | 288 } |
| 289 | 289 |
| 290 #user-image-grid img { | 290 #user-image-grid img { |
| 291 background-color: white; | 291 background-color: white; |
| 292 height: 50px; | 292 height: 50px; |
| 293 vertical-align: middle; | 293 vertical-align: middle; |
| 294 width: 50px; | 294 width: 50px; |
| 295 } | 295 } |
| 296 | 296 |
| 297 #user-image-grid [role=listitem] { | 297 #user-image-grid [role=option] { |
|
Evan Stade
2012/05/07 20:58:02
use (single) quotes
| |
| 298 border: 1px solid rgba(0, 0, 0, 0.15); | 298 border: 1px solid rgba(0, 0, 0, 0.15); |
| 299 border-radius: 4px; | 299 border-radius: 4px; |
| 300 display: inline-block; | 300 display: inline-block; |
| 301 margin: 4px; | 301 margin: 4px; |
| 302 padding: 3px; | 302 padding: 3px; |
| 303 } | 303 } |
| 304 | 304 |
| 305 #user-image-grid [selected] { | 305 #user-image-grid [selected] { |
| 306 border: 2px solid rgb(0, 102, 204); | 306 border: 2px solid rgb(0, 102, 204); |
| 307 padding: 2px; | 307 padding: 2px; |
| (...skipping 470 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 778 } | 778 } |
| 779 | 779 |
| 780 #notification-area a { | 780 #notification-area a { |
| 781 color: rgb(37, 79, 155); | 781 color: rgb(37, 79, 155); |
| 782 } | 782 } |
| 783 | 783 |
| 784 #notification-area .butter-bar { | 784 #notification-area .butter-bar { |
| 785 margin: 0 auto; | 785 margin: 0 auto; |
| 786 max-width: 850px; | 786 max-width: 850px; |
| 787 } | 787 } |
| OLD | NEW |