Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 /* Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 /* Copyright (c) 2011 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 */ | 6 */ |
| 7 | 7 |
| 8 body { | 8 body { |
| 9 background: -webkit-gradient(radial, center center, 0, center center, 400, | 9 background: -webkit-gradient(radial, center center, 0, center center, 400, |
| 10 from(#fefefe), to(#efefef)); | 10 from(#fefefe), to(#efefef)); |
| (...skipping 162 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 173 display: inline-block; | 173 display: inline-block; |
| 174 width: 360px; | 174 width: 360px; |
| 175 } | 175 } |
| 176 | 176 |
| 177 #user-image-list img { | 177 #user-image-list img { |
| 178 border-radius: 4px; | 178 border-radius: 4px; |
| 179 height: 50px; | 179 height: 50px; |
| 180 margin: 0 10px 8px 0; | 180 margin: 0 10px 8px 0; |
| 181 padding: 4px; | 181 padding: 4px; |
| 182 width: 50px; | 182 width: 50px; |
| 183 outline: none; | |
|
whywhat
2011/08/05 07:23:15
nit: sort properties alphabetically, please
| |
| 183 } | 184 } |
| 184 | 185 |
| 185 #user-image-list .user-image-selected { | 186 #user-image-list .user-image-selected { |
| 186 border: 2px solid rgb(0, 102, 204); | 187 border: 2px solid rgb(0, 102, 204); |
| 187 padding: 2px; | 188 padding: 2px; |
| 188 } | 189 } |
| 189 | 190 |
| 190 #user-image-preview { | 191 #user-image-preview { |
| 191 border-radius: 4px; | 192 border-radius: 4px; |
| 192 float: right; | 193 float: right; |
| (...skipping 334 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 527 #version-labels { | 528 #version-labels { |
| 528 -webkit-transition: all .5s linear; | 529 -webkit-transition: all .5s linear; |
| 529 bottom: 10px; | 530 bottom: 10px; |
| 530 color: #999; | 531 color: #999; |
| 531 font-size: 11px; | 532 font-size: 11px; |
| 532 left: 10px; | 533 left: 10px; |
| 533 opacity: 1.0; | 534 opacity: 1.0; |
| 534 position: absolute; | 535 position: absolute; |
| 535 text-shadow: 0 1px 1px #fff; | 536 text-shadow: 0 1px 1px #fff; |
| 536 } | 537 } |
| OLD | NEW |