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; |
11 display: -webkit-box; | 11 display: -webkit-box; |
12 left: 0; | 12 left: 0; |
13 position: absolute; | 13 position: absolute; |
14 right: 0; | 14 right: 0; |
15 top: 0; | 15 top: 0; |
16 } | 16 } |
17 | 17 |
18 #mainview { | 18 #mainview { |
19 -webkit-box-align: stretch; | 19 -webkit-box-align: stretch; |
20 bottom: 0; | 20 bottom: 0; |
21 left: 0; | 21 left: 0; |
22 margin: 0; | 22 margin: 0; |
23 position: absolute; | 23 position: absolute; |
24 right: 0; | 24 right: 0; |
25 top: 0; | 25 top: 0; |
26 z-index: 1; | 26 z-index: 1; |
27 } | 27 } |
28 | 28 |
29 html.hide-menu #mainview { | |
30 -webkit-padding-start: 0; | |
31 } | |
32 | |
33 #mainview-content { | 29 #mainview-content { |
34 min-height: 100%; | 30 min-height: 100%; |
35 position: relative; | 31 position: relative; |
36 } | 32 } |
37 | 33 |
38 #page-container { | 34 #page-container { |
39 -webkit-padding-end: 24px; | 35 -webkit-padding-end: 24px; |
40 box-sizing: border-box; | 36 box-sizing: border-box; |
41 max-width: 888px; | 37 max-width: 888px; |
42 min-width: 600px; | 38 min-width: 600px; |
(...skipping 563 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
606 url('chrome://theme/IDR_CONTROLLED_SETTING_RECOMMENDED_LARGE'); | 602 url('chrome://theme/IDR_CONTROLLED_SETTING_RECOMMENDED_LARGE'); |
607 } | 603 } |
608 | 604 |
609 html[dir='rtl'] .controlled-setting-bubble-text { | 605 html[dir='rtl'] .controlled-setting-bubble-text { |
610 background-position: right top; | 606 background-position: right top; |
611 } | 607 } |
612 | 608 |
613 .controlled-setting-bubble-action { | 609 .controlled-setting-bubble-action { |
614 padding: 0 !important; | 610 padding: 0 !important; |
615 } | 611 } |
OLD | NEW |