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 170 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
181 | 181 |
182 .managed-prefs-banner.clickable:active .managed-prefs-text { | 182 .managed-prefs-banner.clickable:active .managed-prefs-text { |
183 background: -webkit-linear-gradient(rgb(250, 230, 145), | 183 background: -webkit-linear-gradient(rgb(250, 230, 145), |
184 rgb(255, 242, 183)); | 184 rgb(255, 242, 183)); |
185 } | 185 } |
186 | 186 |
187 #page-container .page.showing-banner { | 187 #page-container .page.showing-banner { |
188 margin-top: 45px; | 188 margin-top: 45px; |
189 } | 189 } |
190 | 190 |
191 .overlay .page h1 { | |
192 background: -webkit-linear-gradient(white, #F8F8F8); | |
193 border-bottom: 1px solid rgba(188, 193, 208, .5); | |
194 font-size: 105%; | |
195 font-weight: bold; | |
196 padding: 10px 15px 8px 15px; | |
197 } | |
198 | |
199 .page list { | 191 .page list { |
200 /* Min height is a multiple of the list item height (32) */ | 192 /* Min height is a multiple of the list item height (32) */ |
201 min-height: 192px; | 193 min-height: 192px; |
202 } | 194 } |
203 | 195 |
204 section { | 196 section { |
205 -webkit-padding-start: 18px; | 197 -webkit-padding-start: 18px; |
206 margin-bottom: 24px; | 198 margin-bottom: 24px; |
207 margin-top: 8px; | 199 margin-top: 8px; |
208 max-width: 600px; | 200 max-width: 600px; |
(...skipping 387 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
596 url('chrome://theme/IDR_CONTROLLED_SETTING_RECOMMENDED_LARGE'); | 588 url('chrome://theme/IDR_CONTROLLED_SETTING_RECOMMENDED_LARGE'); |
597 } | 589 } |
598 | 590 |
599 html[dir='rtl'] .controlled-setting-bubble-text { | 591 html[dir='rtl'] .controlled-setting-bubble-text { |
600 background-position: right top; | 592 background-position: right top; |
601 } | 593 } |
602 | 594 |
603 .controlled-setting-bubble-action { | 595 .controlled-setting-bubble-action { |
604 padding: 0 !important; | 596 padding: 0 !important; |
605 } | 597 } |
OLD | NEW |