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