OLD | NEW |
1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 /* Copyright 2014 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 { | |
7 -webkit-user-select: text; | |
8 } | |
9 | |
10 #overlay .page:not(.showing) { | |
11 display: none; | |
12 } | |
13 | |
14 #about-container { | 6 #about-container { |
15 -webkit-box-align: center; | 7 align-items: center; |
16 display: -webkit-box; | 8 display: flex; |
17 margin-top: 10px; | 9 margin-top: 10px; |
18 } | 10 } |
19 | 11 |
20 #product-description { | 12 #product-description { |
21 -webkit-margin-start: 10px; | 13 -webkit-margin-start: 10px; |
22 } | 14 } |
23 | 15 |
24 #version-container { | 16 #version-container { |
25 margin-top: 30px; | 17 margin-top: 30px; |
26 } | 18 } |
(...skipping 21 matching lines...) Expand all Loading... |
48 | 40 |
49 #help-container { | 41 #help-container { |
50 margin-top: 16px; | 42 margin-top: 16px; |
51 } | 43 } |
52 | 44 |
53 #product-container { | 45 #product-container { |
54 line-height: 1.8em; | 46 line-height: 1.8em; |
55 margin-top: 200px; | 47 margin-top: 200px; |
56 } | 48 } |
57 | 49 |
| 50 .overlay #product-container { |
| 51 margin-top: 40px; |
| 52 } |
| 53 |
58 .help-page-icon, | 54 .help-page-icon, |
59 .help-page-icon-large { | 55 .help-page-icon-large { |
60 background-repeat: no-repeat; | 56 background-repeat: no-repeat; |
61 display: inline-block; | 57 display: inline-block; |
62 margin-right: 4px; | 58 margin-right: 4px; |
63 vertical-align: top; | 59 vertical-align: top; |
64 } | 60 } |
65 | 61 |
66 .help-page-icon { | 62 .help-page-icon { |
67 height: 17px; | 63 height: 17px; |
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
120 } | 116 } |
121 | 117 |
122 #channel-change-disallowed-icon { | 118 #channel-change-disallowed-icon { |
123 -webkit-margin-start: 4px; | 119 -webkit-margin-start: 4px; |
124 background-image: url('chrome://theme/IDR_CONTROLLED_SETTING_MANDATORY'); | 120 background-image: url('chrome://theme/IDR_CONTROLLED_SETTING_MANDATORY'); |
125 background-size: 17px; | 121 background-size: 17px; |
126 vertical-align: middle; | 122 vertical-align: middle; |
127 } | 123 } |
128 | 124 |
129 .channel-change-error-bubble { | 125 .channel-change-error-bubble { |
130 display: -webkit-box; | 126 display: flex; |
131 } | 127 } |
132 | 128 |
133 .channel-change-error-icon { | 129 .channel-change-error-icon { |
134 -webkit-margin-start: 4px; | 130 -webkit-margin-start: 4px; |
135 background-image: url('chrome://theme/IDR_CONTROLLED_SETTING_MANDATORY'); | 131 background-image: url('chrome://theme/IDR_CONTROLLED_SETTING_MANDATORY'); |
136 background-size: 22px; | 132 background-size: 22px; |
137 vertical-align: top; | 133 vertical-align: top; |
138 } | 134 } |
139 | 135 |
140 .channel-change-error-text { | 136 .channel-change-error-text { |
141 -webkit-margin-start: 4px; | 137 -webkit-margin-start: 4px; |
142 display: block; | 138 display: block; |
143 vertical-align: top; | 139 vertical-align: top; |
144 width: 240px; | 140 width: 240px; |
145 } | 141 } |
OLD | NEW |