| 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 793 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 804 | 804 |
| 805 span.bold { | 805 span.bold { |
| 806 font-weight: bold; | 806 font-weight: bold; |
| 807 } | 807 } |
| 808 | 808 |
| 809 .error-message { | 809 .error-message { |
| 810 -webkit-padding-start: 30px; | 810 -webkit-padding-start: 30px; |
| 811 background-image: url('chrome://theme/IDR_WARNING'); | 811 background-image: url('chrome://theme/IDR_WARNING'); |
| 812 background-position: left top; | 812 background-position: left top; |
| 813 background-repeat: no-repeat; | 813 background-repeat: no-repeat; |
| 814 background-size: 24px; |
| 814 } | 815 } |
| 815 | 816 |
| 816 .error-message-padding { | 817 .error-message-padding { |
| 817 margin-bottom: 10px; | 818 margin-bottom: 10px; |
| 818 } | 819 } |
| 819 | 820 |
| 820 html[dir=rtl] .error-message { | 821 html[dir=rtl] .error-message { |
| 821 background-position: right top; | 822 background-position: right top; |
| 822 } | 823 } |
| 823 | 824 |
| (...skipping 20 matching lines...) Expand all Loading... |
| 844 } | 845 } |
| 845 | 846 |
| 846 #notification-area a { | 847 #notification-area a { |
| 847 color: rgb(37, 79, 155); | 848 color: rgb(37, 79, 155); |
| 848 } | 849 } |
| 849 | 850 |
| 850 #notification-area .butter-bar { | 851 #notification-area .butter-bar { |
| 851 margin: 0 auto; | 852 margin: 0 auto; |
| 852 max-width: 850px; | 853 max-width: 850px; |
| 853 } | 854 } |
| OLD | NEW |