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