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 /* This is necessary because the fix for correctly wrapping labels | 5 /* This is necessary because the fix for correctly wrapping labels |
6 * (crbug.com/109334) requires labels to be display: block; however, this label | 6 * (crbug.com/109334) requires labels to be display: block; however, this label |
7 * has a button inline after it. */ | 7 * has a button inline after it. */ |
8 #home-page-label { | 8 #home-page-label { |
9 display: inline; | 9 display: inline; |
10 } | 10 } |
11 | 11 |
12 #home-page-select-container { | |
13 margin-top: 5px; | |
14 } | |
15 | |
16 #default-search-engine-group { | 12 #default-search-engine-group { |
17 -webkit-box-orient: vertical; | 13 -webkit-box-orient: vertical; |
18 display: -webkit-box; | 14 display: -webkit-box; |
19 } | 15 } |
20 | 16 |
21 #default-search-engine-group > div { | 17 #default-search-engine-group > div { |
22 -webkit-box-orient: horizontal; | 18 -webkit-box-orient: horizontal; |
23 display: -webkit-box; | 19 display: -webkit-box; |
24 } | 20 } |
25 | 21 |
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
112 | 108 |
113 html[dir=rtl] #pointer-sensitivity-more { | 109 html[dir=rtl] #pointer-sensitivity-more { |
114 float: left; | 110 float: left; |
115 } | 111 } |
116 | 112 |
117 #pointer-value, | 113 #pointer-value, |
118 #slider-control { | 114 #slider-control { |
119 display: inline-block; | 115 display: inline-block; |
120 vertical-align: top; | 116 vertical-align: top; |
121 } | 117 } |
OLD | NEW |