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 button { | 23 button { |
24 font-family: inherit; | 24 font-family: inherit; |
| 25 outline: none; |
| 26 } |
| 27 |
| 28 /* Follow same focus coloring as in widgets.css */ |
| 29 button.custom-appearance:enabled { |
| 30 -webkit-transition: border-color 200ms; |
| 31 border: 1px solid transparent; |
| 32 } |
| 33 |
| 34 button.custom-appearance:enabled:focus { |
| 35 border-color: rgb(77, 144, 254); |
25 } | 36 } |
26 | 37 |
27 #outer-container { | 38 #outer-container { |
28 -webkit-box-align: center; | 39 -webkit-box-align: center; |
29 -webkit-box-pack: center; | 40 -webkit-box-pack: center; |
30 bottom: 41px; /* Leave space for the header bar */ | 41 bottom: 41px; /* Leave space for the header bar */ |
31 display: -webkit-box; | 42 display: -webkit-box; |
32 left: 0; | 43 left: 0; |
33 position: absolute; | 44 position: absolute; |
34 right: 0; | 45 right: 0; |
(...skipping 723 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
758 } | 769 } |
759 | 770 |
760 #notification-area a { | 771 #notification-area a { |
761 color: rgb(37, 79, 155); | 772 color: rgb(37, 79, 155); |
762 } | 773 } |
763 | 774 |
764 #notification-area .butter-bar { | 775 #notification-area .butter-bar { |
765 margin: 0 auto; | 776 margin: 0 auto; |
766 max-width: 850px; | 777 max-width: 850px; |
767 } | 778 } |
OLD | NEW |