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 body { | 5 body { |
6 position: relative; | 6 position: relative; |
7 } | 7 } |
8 | 8 |
9 #main-content { | 9 #main-content { |
10 bottom: 0; | 10 bottom: 0; |
(...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
145 | 145 |
146 #page-container .page.showing-banner { | 146 #page-container .page.showing-banner { |
147 margin-top: 45px; | 147 margin-top: 45px; |
148 } | 148 } |
149 | 149 |
150 .page list { | 150 .page list { |
151 /* Min height is a multiple of the list item height (32) */ | 151 /* Min height is a multiple of the list item height (32) */ |
152 min-height: 192px; | 152 min-height: 192px; |
153 } | 153 } |
154 | 154 |
155 section { | |
156 -webkit-padding-start: 18px; | |
157 margin-bottom: 24px; | |
158 margin-top: 8px; | |
159 max-width: 600px; | |
160 } | |
161 | |
162 section:last-of-type { | |
163 margin-bottom: 0; | |
164 } | |
165 | |
166 section > h3 { | |
167 -webkit-margin-start: -18px; | |
168 } | |
169 | |
170 section > div:only-of-type { | |
171 -webkit-box-flex: 1; | |
172 } | |
173 | |
174 .option { | 155 .option { |
175 margin-top: 0; | 156 margin-top: 0; |
176 } | 157 } |
177 | 158 |
178 .transparent { | 159 .transparent { |
179 opacity: 0; | 160 opacity: 0; |
180 } | 161 } |
181 | 162 |
182 .touch-slider { | 163 .touch-slider { |
183 -webkit-appearance: slider-horizontal; | 164 -webkit-appearance: slider-horizontal; |
(...skipping 375 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
559 url('chrome://theme/IDR_CONTROLLED_SETTING_RECOMMENDED_LARGE'); | 540 url('chrome://theme/IDR_CONTROLLED_SETTING_RECOMMENDED_LARGE'); |
560 } | 541 } |
561 | 542 |
562 html[dir='rtl'] .controlled-setting-bubble-text { | 543 html[dir='rtl'] .controlled-setting-bubble-text { |
563 background-position: right top; | 544 background-position: right top; |
564 } | 545 } |
565 | 546 |
566 .controlled-setting-bubble-action { | 547 .controlled-setting-bubble-action { |
567 padding: 0 !important; | 548 padding: 0 !important; |
568 } | 549 } |
OLD | NEW |