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 272 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
283 } | 283 } |
284 | 284 |
285 .eula-columns { | 285 .eula-columns { |
286 display: -webkit-box; | 286 display: -webkit-box; |
287 width: 630px; | 287 width: 630px; |
288 } | 288 } |
289 | 289 |
290 .eula-frame { | 290 .eula-frame { |
291 border: none; | 291 border: none; |
292 height: 200px; | 292 height: 200px; |
293 margin-right: 10px; | |
294 padding: 0 0 0 5px; | 293 padding: 0 0 0 5px; |
295 width: 310px; | 294 width: 313px; |
296 } | 295 } |
297 | 296 |
298 #cros-eula, | 297 #cros-eula, |
299 #oem-eula { | 298 #oem-eula { |
300 border: 1px solid #d9d9d9; | 299 border: 1px solid #d9d9d9; |
| 300 height: 200px |
| 301 } |
| 302 |
| 303 #oem-eula { |
| 304 border-left: none; |
301 } | 305 } |
302 | 306 |
303 #eulas.one-column #cros-eula { | 307 #eulas.one-column #cros-eula { |
304 width: 100%; | 308 width: 100%; |
305 } | 309 } |
306 | 310 |
307 #eulas.one-column #cros-eula-frame { | 311 #eulas.one-column #cros-eula-frame { |
308 width: 100%; | 312 width: 100%; |
309 } | 313 } |
310 | 314 |
(...skipping 449 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
760 } | 764 } |
761 | 765 |
762 .dropdown-overlay { | 766 .dropdown-overlay { |
763 bottom: 0; | 767 bottom: 0; |
764 left: 0; | 768 left: 0; |
765 position: fixed; | 769 position: fixed; |
766 right: 0; | 770 right: 0; |
767 top: 0; | 771 top: 0; |
768 z-index: 5; | 772 z-index: 5; |
769 } | 773 } |
OLD | NEW |