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 | 5 |
6 body { | 6 body { |
7 -webkit-user-select: text; | 7 -webkit-user-select: text; |
8 } | 8 } |
9 | 9 |
| 10 #overlay { |
| 11 z-index: 5; |
| 12 } |
| 13 |
| 14 #overlay .page:not(.showing) { |
| 15 display: none; |
| 16 } |
| 17 |
10 #about-container { | 18 #about-container { |
11 -webkit-box-align: center; | 19 -webkit-box-align: center; |
12 display: -webkit-box; | 20 display: -webkit-box; |
13 margin-top: 10px; | 21 margin-top: 10px; |
14 } | 22 } |
15 | 23 |
16 #product-description { | 24 #product-description { |
17 -webkit-margin-start: 10px; | 25 -webkit-margin-start: 10px; |
18 } | 26 } |
19 | 27 |
(...skipping 24 matching lines...) Expand all Loading... |
44 | 52 |
45 #help-container { | 53 #help-container { |
46 margin-top: 16px; | 54 margin-top: 16px; |
47 } | 55 } |
48 | 56 |
49 #product-container { | 57 #product-container { |
50 line-height: 1.8em; | 58 line-height: 1.8em; |
51 margin-top: 200px; | 59 margin-top: 200px; |
52 } | 60 } |
53 | 61 |
54 #update-status-icon { | 62 .help-page-icon, |
| 63 .help-page-icon-large { |
55 background-repeat: no-repeat; | 64 background-repeat: no-repeat; |
56 display: inline-block; | 65 display: inline-block; |
57 height: 17px; | |
58 margin-right: 4px; | 66 margin-right: 4px; |
59 vertical-align: top; | 67 vertical-align: top; |
| 68 } |
| 69 |
| 70 .help-page-icon { |
| 71 height: 17px; |
60 width: 17px; | 72 width: 17px; |
61 } | 73 } |
62 | 74 |
| 75 .help-page-icon-large { |
| 76 height: 22px; |
| 77 width: 22px; |
| 78 } |
| 79 |
63 #update-status-icon.up-to-date { | 80 #update-status-icon.up-to-date { |
64 background-image: url('chrome://theme/IDR_UPDATE_UPTODATE'); | 81 background-image: url('chrome://theme/IDR_UPDATE_UPTODATE'); |
65 background-size: 17px; | 82 background-size: 17px; |
66 } | 83 } |
67 | 84 |
68 #update-status-icon.working { | 85 #update-status-icon.working { |
69 background-image: url('chrome://resources/images/throbber.svg'); | 86 background-image: url('chrome://resources/images/throbber.svg'); |
70 } | 87 } |
71 | 88 |
72 #update-status-icon.failed { | 89 #update-status-icon.failed { |
(...skipping 21 matching lines...) Expand all Loading... |
94 overflow: hidden; | 111 overflow: hidden; |
95 } | 112 } |
96 | 113 |
97 #build-date-container.empty { | 114 #build-date-container.empty { |
98 visibility: hidden; | 115 visibility: hidden; |
99 } | 116 } |
100 | 117 |
101 #channel-change-confirmation { | 118 #channel-change-confirmation { |
102 margin-top: 5px; | 119 margin-top: 5px; |
103 } | 120 } |
| 121 |
| 122 #change-channel { |
| 123 margin-top: 8px; |
| 124 } |
| 125 |
| 126 #channel-change-disallowed-icon { |
| 127 background-image: url('chrome://theme/IDR_CONTROLLED_SETTING_MANDATORY_GRAY'); |
| 128 background-size: 17px; |
| 129 margin-left: 4px; |
| 130 vertical-align: middle; |
| 131 } |
| 132 |
| 133 .channel-change-error-bubble { |
| 134 display: -webkit-box; |
| 135 } |
| 136 |
| 137 .channel-change-error-icon { |
| 138 background-image: |
| 139 url('chrome://theme/IDR_CONTROLLED_SETTING_MANDATORY_LARGE'); |
| 140 background-size: 22px; |
| 141 margin-left: 4px; |
| 142 vertical-align: top; |
| 143 } |
| 144 |
| 145 .channel-change-error-text { |
| 146 display: block; |
| 147 margin-left: 4px; |
| 148 vertical-align: top; |
| 149 width: 240px; |
| 150 } |
OLD | NEW |