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 display: -webkit-box; | 10 display: -webkit-box; |
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
73 .hbox { | 73 .hbox { |
74 display: -webkit-box; | 74 display: -webkit-box; |
75 -webkit-box-orient: horizontal; | 75 -webkit-box-orient: horizontal; |
76 } | 76 } |
77 | 77 |
78 .vbox { | 78 .vbox { |
79 display: -webkit-box; | 79 display: -webkit-box; |
80 -webkit-box-orient: vertical; | 80 -webkit-box-orient: vertical; |
81 } | 81 } |
82 | 82 |
| 83 .box-align-center { |
| 84 -webkit-box-align: center; |
| 85 } |
| 86 |
83 .stretch { | 87 .stretch { |
84 -webkit-box-flex: 1; | 88 -webkit-box-flex: 1; |
85 } | 89 } |
86 | 90 |
87 .frozen, | 91 .frozen, |
88 .subpage-sheet-container.frozen { | 92 .subpage-sheet-container.frozen { |
89 position: fixed; | 93 position: fixed; |
90 } | 94 } |
91 | 95 |
92 .search-field-container { | 96 .search-field-container { |
(...skipping 639 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
732 url('chrome://theme/IDR_CONTROLLED_SETTING_RECOMMENDED_LARGE'); | 736 url('chrome://theme/IDR_CONTROLLED_SETTING_RECOMMENDED_LARGE'); |
733 } | 737 } |
734 | 738 |
735 html[dir='rtl'] .controlled-setting-bubble-text { | 739 html[dir='rtl'] .controlled-setting-bubble-text { |
736 background-position: right top; | 740 background-position: right top; |
737 } | 741 } |
738 | 742 |
739 .controlled-setting-bubble-action { | 743 .controlled-setting-bubble-action { |
740 padding: 0 !important; | 744 padding: 0 !important; |
741 } | 745 } |
OLD | NEW |