Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(54)

Side by Side Diff: chrome/browser/resources/options2/browser_options.css

Issue 9296038: [uber] Redoing the homepage selection UI (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: more fixes Created 8 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698