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 318 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
329 } | 329 } |
330 | 330 |
331 /* Have to add attribute selector here otherwise style html[oobe=old] .step | 331 /* Have to add attribute selector here otherwise style html[oobe=old] .step |
332 has more points. */ | 332 has more points. */ |
333 html[oobe=old] .faded, | 333 html[oobe=old] .faded, |
334 html[oobe=old] .left, | 334 html[oobe=old] .left, |
335 html[oobe=old] .right { | 335 html[oobe=old] .right { |
336 opacity: 0; | 336 opacity: 0; |
337 } | 337 } |
338 | 338 |
339 html[oobe=new] .step.faded, | 339 html[oobe=new] .faded, |
340 html[oobe=new] .step.left, | 340 html[oobe=new] .left, |
341 html[oobe=new] .step.right { | 341 html[oobe=new] .right { |
342 opacity: 0; | 342 opacity: 0; |
343 } | 343 } |
344 | 344 |
345 html[oobe=new] .step.right { | 345 html[oobe=new] .step.right { |
346 -webkit-transform: translateX(50px); | 346 -webkit-transform: translateX(50px); |
347 } | 347 } |
348 | 348 |
349 html[oobe=new] .step.left { | 349 html[oobe=new] .step.left { |
350 -webkit-transform: translateX(-50px) | 350 -webkit-transform: translateX(-50px) |
351 } | 351 } |
(...skipping 970 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1322 width: 100%; | 1322 width: 100%; |
1323 } | 1323 } |
1324 | 1324 |
1325 .background-initial { | 1325 .background-initial { |
1326 opacity: 0; | 1326 opacity: 0; |
1327 } | 1327 } |
1328 | 1328 |
1329 .background-final { | 1329 .background-final { |
1330 opacity: 1; | 1330 opacity: 1; |
1331 } | 1331 } |
OLD | NEW |