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 html, | 8 html, |
9 body { | 9 body { |
10 height: 100%; | 10 height: 100%; |
(...skipping 260 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
271 | 271 |
272 #oobe.eula + #security-info { | 272 #oobe.eula + #security-info { |
273 visibility: visible; | 273 visibility: visible; |
274 } | 274 } |
275 | 275 |
276 #update div { | 276 #update div { |
277 margin: 6em auto; | 277 margin: 6em auto; |
278 width: 32em; | 278 width: 32em; |
279 } | 279 } |
280 | 280 |
| 281 #update #update-cancel-hint { |
| 282 color: #a00; |
| 283 left: 50%; |
| 284 margin: 1em -16em; |
| 285 position: absolute; |
| 286 } |
| 287 |
281 #update progress { | 288 #update progress { |
282 margin: 13px 0; | 289 margin: 13px 0; |
283 width: 380px; | 290 width: 380px; |
284 } | 291 } |
285 | 292 |
286 button { | 293 button { |
287 min-width: 80px; | 294 min-width: 80px; |
288 } | 295 } |
289 | 296 |
290 .eula-columns { | 297 .eula-columns { |
(...skipping 476 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
767 } | 774 } |
768 | 775 |
769 .dropdown-overlay { | 776 .dropdown-overlay { |
770 bottom: 0; | 777 bottom: 0; |
771 left: 0; | 778 left: 0; |
772 position: fixed; | 779 position: fixed; |
773 right: 0; | 780 right: 0; |
774 top: 0; | 781 top: 0; |
775 z-index: 5; | 782 z-index: 5; |
776 } | 783 } |
OLD | NEW |