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 /* TODO(csilv): Re-order, rename selectors according to style guide. */ | 5 /* TODO(csilv): Re-order, rename selectors according to style guide. */ |
6 | 6 |
7 /* This is necessary because the fix for correctly wrapping labels | 7 /* This is necessary because the fix for correctly wrapping labels |
8 * (crbug.com/109334) requires labels to be display: block; however, this label | 8 * (crbug.com/109334) requires labels to be display: block; however, this label |
9 * has a button inline after it. | 9 * has a button inline after it. |
10 */ | 10 */ |
11 #home-page-label { | 11 #home-page-label { |
12 display: inline; | 12 display: inline; |
13 } | 13 } |
14 | 14 |
15 #customHomePageGroup { | 15 #home-page-select-container { |
16 display: -webkit-box; | 16 margin-top: 5px; |
17 -webkit-box-orient: horizontal; | |
18 } | 17 } |
19 | 18 |
20 #homepageURL { | 19 #homepageURL { |
21 margin-left: 10px; | 20 margin-left: 10px; |
22 } | 21 } |
23 | 22 |
24 #defaultSearchEngineGroup { | 23 #defaultSearchEngineGroup { |
25 display: -webkit-box; | 24 display: -webkit-box; |
26 -webkit-box-orient: vertical; | 25 -webkit-box-orient: vertical; |
27 } | 26 } |
(...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
131 | 130 |
132 html[dir=rtl] #pointer-sensitivity-more { | 131 html[dir=rtl] #pointer-sensitivity-more { |
133 float: left; | 132 float: left; |
134 } | 133 } |
135 | 134 |
136 #pointer-value, | 135 #pointer-value, |
137 #slider-control { | 136 #slider-control { |
138 display: inline-block; | 137 display: inline-block; |
139 vertical-align: top; | 138 vertical-align: top; |
140 } | 139 } |
OLD | NEW |