| 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 636 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 647 background-repeat: no-repeat; | 647 background-repeat: no-repeat; |
| 648 } | 648 } |
| 649 | 649 |
| 650 html[dir=rtl] .header-bar-item, | 650 html[dir=rtl] .header-bar-item, |
| 651 html[dir=rtl] #header, | 651 html[dir=rtl] #header, |
| 652 html[dir=rtl] #login-header-bar #shutdown-button, | 652 html[dir=rtl] #login-header-bar #shutdown-button, |
| 653 html[dir=rtl] #login-header-bar #add-user-button { | 653 html[dir=rtl] #login-header-bar #add-user-button { |
| 654 background-position: right center; | 654 background-position: right center; |
| 655 } | 655 } |
| 656 | 656 |
| 657 body.login-display #oobe hr { | 657 body.login-display #oobe hr.shadow { |
| 658 -webkit-transition: all .8s ease; | 658 -webkit-transition: all .8s ease; |
| 659 width: 1100px; /* Necessary. Otherwise hr shrinks to 0 first when switching | 659 width: 1100px; /* Necessary. Otherwise hr shrinks to 0 first when switching |
| 660 from 640px to full width. */ | 660 from 640px to full width. */ |
| 661 } | 661 } |
| 662 | 662 |
| 663 body.login-display #oobe.signin hr, | 663 body.login-display #oobe.signin hr, |
| 664 body.login-display #oobe.gaia-signin hr { | 664 body.login-display #oobe.gaia-signin hr { |
| 665 opacity: 0; | 665 opacity: 0; |
| 666 } | 666 } |
| 667 | 667 |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 716 left: 10px; | 716 left: 10px; |
| 717 opacity: 1.0; | 717 opacity: 1.0; |
| 718 position: absolute; | 718 position: absolute; |
| 719 right: 10px; | 719 right: 10px; |
| 720 text-shadow: 0 1px 1px #fff; | 720 text-shadow: 0 1px 1px #fff; |
| 721 } | 721 } |
| 722 | 722 |
| 723 #offline-network-control { | 723 #offline-network-control { |
| 724 margin-left: 60px; | 724 margin-left: 60px; |
| 725 } | 725 } |
| OLD | NEW |