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 { |
11 height: 100%; | 11 height: 100%; |
12 width: 100%; | 12 width: 100%; |
13 } | 13 } |
14 | 14 |
15 body { | 15 body { |
16 background: #fefefe; | 16 background: #fefefe; |
17 font-size: 14px; | 17 font-size: 14px; |
18 margin: 0; | 18 margin: 0; |
19 overflow: hidden; | 19 overflow: hidden; |
20 padding: 0; | 20 padding: 0; |
21 } | 21 } |
22 | 22 |
23 progress { | |
24 border: solid 1px #bbb; | |
25 padding: 1px; | |
26 } | |
27 | |
28 progress::-webkit-progress-bar { | |
29 background: white; | |
30 } | |
31 | |
32 progress::-webkit-progress-value { | |
33 background: #bbb; | |
34 } | |
35 | |
23 button { | 36 button { |
24 font-family: inherit; | 37 font-family: inherit; |
25 outline: none; | 38 outline: none; |
26 } | 39 } |
27 | 40 |
28 /* Follow same focus coloring as in widgets.css */ | 41 /* Follow same focus coloring as in widgets.css */ |
29 button.custom-appearance { | 42 button.custom-appearance { |
30 -webkit-transition: border-color 200ms; | 43 -webkit-transition: border-color 200ms; |
31 border: 1px solid transparent; | 44 border: 1px solid transparent; |
32 } | 45 } |
(...skipping 401 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
434 width: 32em; | 447 width: 32em; |
435 } | 448 } |
436 | 449 |
437 #update #update-cancel-hint { | 450 #update #update-cancel-hint { |
438 color: rgb(170, 0, 0); | 451 color: rgb(170, 0, 0); |
439 left: 50%; | 452 left: 50%; |
440 margin: 1em -16em; | 453 margin: 1em -16em; |
441 position: absolute; | 454 position: absolute; |
442 } | 455 } |
443 | 456 |
457 #update #update-upper-label { | |
458 -webkit-margin-after: 4px; | |
459 } | |
460 | |
461 #update #update-bottom-label { | |
462 -webkit-margin-after: 4px; | |
463 -webkit-margin-before: 4px; | |
464 } | |
465 | |
444 #update progress { | 466 #update progress { |
445 margin: 13px 0; | 467 -webkit-margin-after: 4px; |
446 width: 380px; | 468 -webkit-margin-before: 34px; |
469 height: 15px; | |
470 margin-left: 74px; | |
Nikita (slow)
2012/05/15 07:25:09
Use -webkit-margin-start instead of margin-left si
ygorshenin1
2012/05/15 08:12:10
Done.
| |
471 width: 300px; | |
472 } | |
473 | |
474 #update #update-estimated-time-left { | |
475 -webkit-margin-before: 4px; | |
476 } | |
477 | |
478 #update #update-estimated-time-left { | |
479 color: #666; | |
480 font-size: 13px; | |
481 text-align: center; | |
447 } | 482 } |
448 | 483 |
449 button { | 484 button { |
450 min-width: 80px; | 485 min-width: 80px; |
451 } | 486 } |
452 | 487 |
453 .eula-columns { | 488 .eula-columns { |
454 display: -webkit-box; | 489 display: -webkit-box; |
455 width: 630px; | 490 width: 630px; |
456 } | 491 } |
(...skipping 321 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
778 } | 813 } |
779 | 814 |
780 #notification-area a { | 815 #notification-area a { |
781 color: rgb(37, 79, 155); | 816 color: rgb(37, 79, 155); |
782 } | 817 } |
783 | 818 |
784 #notification-area .butter-bar { | 819 #notification-area .butter-bar { |
785 margin: 0 auto; | 820 margin: 0 auto; |
786 max-width: 850px; | 821 max-width: 850px; |
787 } | 822 } |
OLD | NEW |