| 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 18 matching lines...) Expand all Loading... |
| 29 html.hide-menu #mainview { | 29 html.hide-menu #mainview { |
| 30 -webkit-padding-start: 0; | 30 -webkit-padding-start: 0; |
| 31 } | 31 } |
| 32 | 32 |
| 33 #mainview-content { | 33 #mainview-content { |
| 34 min-height: 100%; | 34 min-height: 100%; |
| 35 position: relative; | 35 position: relative; |
| 36 } | 36 } |
| 37 | 37 |
| 38 #page-container { | 38 #page-container { |
| 39 -webkit-padding-end: 24px; | |
| 40 box-sizing: border-box; | 39 box-sizing: border-box; |
| 41 max-width: 888px; | 40 max-width: 888px; |
| 42 min-width: 600px; | 41 min-width: 600px; |
| 43 } | 42 } |
| 44 | 43 |
| 45 div.disabled { | 44 div.disabled { |
| 46 color: #888; | 45 color: #888; |
| 47 } | 46 } |
| 48 | 47 |
| 49 .settings-row { | 48 .settings-row { |
| (...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 171 .managed-prefs-gradient { | 170 .managed-prefs-gradient { |
| 172 background: -webkit-linear-gradient(rgb(255, 242, 183), | 171 background: -webkit-linear-gradient(rgb(255, 242, 183), |
| 173 rgb(250, 230, 145)); | 172 rgb(250, 230, 145)); |
| 174 border: 1px solid rgb(201, 189, 141); | 173 border: 1px solid rgb(201, 189, 141); |
| 175 border-radius: 3px; | 174 border-radius: 3px; |
| 176 height: 25px; | 175 height: 25px; |
| 177 margin: 9px 9px 0 9px; | 176 margin: 9px 9px 0 9px; |
| 178 } | 177 } |
| 179 | 178 |
| 180 .main-page-banner .managed-prefs-gradient { | 179 .main-page-banner .managed-prefs-gradient { |
| 181 -webkit-margin-end: 100px; | 180 -webkit-margin-end: 20px; |
| 182 -webkit-margin-start: 0; | 181 -webkit-margin-start: 0; |
| 183 margin-bottom: 9px; | 182 margin-bottom: 9px; |
| 184 margin-top: 0; | |
| 185 } | 183 } |
| 186 | 184 |
| 187 .managed-prefs-text { | 185 .managed-prefs-text { |
| 188 background-image: url('chrome://theme/IDR_WARNING'); | 186 background-image: url('chrome://theme/IDR_WARNING'); |
| 189 background-position: 3px center; | 187 background-position: 3px center; |
| 190 background-repeat: no-repeat; | 188 background-repeat: no-repeat; |
| 191 display: block; | 189 display: block; |
| 192 line-height: 25px; | 190 line-height: 25px; |
| 193 padding-left: 31px; | 191 padding-left: 31px; |
| 194 } | 192 } |
| 195 | 193 |
| 196 .managed-prefs-banner.clickable:active .managed-prefs-text { | 194 .managed-prefs-banner.clickable:active .managed-prefs-text { |
| 197 background: -webkit-linear-gradient(rgb(250, 230, 145), | 195 background: -webkit-linear-gradient(rgb(250, 230, 145), |
| 198 rgb(255, 242, 183)); | 196 rgb(255, 242, 183)); |
| 199 } | 197 } |
| 200 | 198 |
| 201 #page-container .page.showing-banner { | 199 #page-container .page.showing-banner { |
| 202 margin-top: 36px; | 200 margin-top: 45px; |
| 203 } | 201 } |
| 204 | 202 |
| 205 .overlay .page h1 { | 203 .overlay .page h1 { |
| 206 background: -webkit-linear-gradient(white, #F8F8F8); | 204 background: -webkit-linear-gradient(white, #F8F8F8); |
| 207 border-bottom: 1px solid rgba(188, 193, 208, .5); | 205 border-bottom: 1px solid rgba(188, 193, 208, .5); |
| 208 font-size: 105%; | 206 font-size: 105%; |
| 209 font-weight: bold; | 207 font-weight: bold; |
| 210 padding: 10px 15px 8px 15px; | 208 padding: 10px 15px 8px 15px; |
| 211 } | 209 } |
| 212 | 210 |
| (...skipping 397 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 610 url('chrome://theme/IDR_CONTROLLED_SETTING_RECOMMENDED_LARGE'); | 608 url('chrome://theme/IDR_CONTROLLED_SETTING_RECOMMENDED_LARGE'); |
| 611 } | 609 } |
| 612 | 610 |
| 613 html[dir='rtl'] .controlled-setting-bubble-text { | 611 html[dir='rtl'] .controlled-setting-bubble-text { |
| 614 background-position: right top; | 612 background-position: right top; |
| 615 } | 613 } |
| 616 | 614 |
| 617 .controlled-setting-bubble-action { | 615 .controlled-setting-bubble-action { |
| 618 padding: 0 !important; | 616 padding: 0 !important; |
| 619 } | 617 } |
| OLD | NEW |