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 10 matching lines...) Expand all Loading... |
21 | 21 |
22 html[oobe=old] body { | 22 html[oobe=old] body { |
23 background-color: #fefefe; | 23 background-color: #fefefe; |
24 } | 24 } |
25 | 25 |
26 html[oobe=new]:not([screen=lock]) body { | 26 html[oobe=new]:not([screen=lock]) body { |
27 background-color: transparent; | 27 background-color: transparent; |
28 } | 28 } |
29 | 29 |
30 html[oobe=new][screen=lock] body { | 30 html[oobe=new][screen=lock] body { |
31 -webkit-background-size: 100% 100%; | 31 background-color: transparent; |
32 } | 32 } |
33 | 33 |
34 progress { | 34 progress { |
35 border: solid 1px #bbb; | 35 border: solid 1px #bbb; |
36 padding: 1px; | 36 padding: 1px; |
37 } | 37 } |
38 | 38 |
39 progress::-webkit-progress-bar { | 39 progress::-webkit-progress-bar { |
40 background: white; | 40 background: white; |
41 } | 41 } |
(...skipping 1219 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1261 width: 100%; | 1261 width: 100%; |
1262 } | 1262 } |
1263 | 1263 |
1264 .background-initial { | 1264 .background-initial { |
1265 opacity: 0; | 1265 opacity: 0; |
1266 } | 1266 } |
1267 | 1267 |
1268 .background-final { | 1268 .background-final { |
1269 opacity: 1; | 1269 opacity: 1; |
1270 } | 1270 } |
OLD | NEW |