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 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
91 padding-top: 1px; | 91 padding-top: 1px; |
92 } | 92 } |
93 | 93 |
94 #header span { | 94 #header span { |
95 text-transform: lowercase; | 95 text-transform: lowercase; |
96 } | 96 } |
97 | 97 |
98 #header span, | 98 #header span, |
99 #user-image-screen-curtain p, | 99 #user-image-screen-curtain p, |
100 .label, | 100 .label, |
| 101 .flexible-label, |
101 .menu-control { | 102 .menu-control { |
102 cursor: default; | 103 cursor: default; |
103 } | 104 } |
104 | 105 |
105 #header-sections { | 106 #header-sections { |
106 display: inline-block; | 107 display: inline-block; |
107 height: 30px; | 108 height: 30px; |
108 position: relative; | 109 position: relative; |
109 } | 110 } |
110 | 111 |
(...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
217 margin: 5px; | 218 margin: 5px; |
218 } | 219 } |
219 | 220 |
220 .menu-control { | 221 .menu-control { |
221 font-family: inherit; | 222 font-family: inherit; |
222 line-height: 20px; | 223 line-height: 20px; |
223 position: relative; | 224 position: relative; |
224 width: 250px; | 225 width: 250px; |
225 } | 226 } |
226 | 227 |
227 .label { | 228 .label, |
| 229 .flexible-label { |
228 display: block; | 230 display: block; |
229 margin: 5px 5px 5px 0; | 231 margin: 5px 5px 5px 0; |
230 padding: 5px 5px 5px 0; | 232 padding: 5px 5px 5px 0; |
| 233 } |
| 234 |
| 235 .label { |
231 width: 170px; | 236 width: 170px; |
232 } | 237 } |
233 | 238 |
| 239 .flexible-label { |
| 240 max-width: 250px; |
| 241 } |
| 242 |
234 #connect { | 243 #connect { |
235 box-sizing: border-box; | 244 box-sizing: border-box; |
236 padding: 60px 0 0 145px; | 245 padding: 60px 0 0 145px; |
237 } | 246 } |
238 | 247 |
239 #logging { | 248 #logging { |
240 clear: both; | 249 clear: both; |
241 font-size: small; | 250 font-size: small; |
242 margin-top: 20px; | 251 margin-top: 20px; |
243 width: 500px; | 252 width: 500px; |
(...skipping 514 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
758 } | 767 } |
759 | 768 |
760 #notification-area a { | 769 #notification-area a { |
761 color: rgb(37, 79, 155); | 770 color: rgb(37, 79, 155); |
762 } | 771 } |
763 | 772 |
764 #notification-area .butter-bar { | 773 #notification-area .butter-bar { |
765 margin: 0 auto; | 774 margin: 0 auto; |
766 max-width: 850px; | 775 max-width: 850px; |
767 } | 776 } |
OLD | NEW |