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

Side by Side Diff: chrome/browser/resources/options2/options_page.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 /* 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 display: -webkit-box; 10 display: -webkit-box;
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
73 .hbox { 73 .hbox {
74 display: -webkit-box; 74 display: -webkit-box;
75 -webkit-box-orient: horizontal; 75 -webkit-box-orient: horizontal;
76 } 76 }
77 77
78 .vbox { 78 .vbox {
79 display: -webkit-box; 79 display: -webkit-box;
80 -webkit-box-orient: vertical; 80 -webkit-box-orient: vertical;
81 } 81 }
82 82
83 .box-align-center {
84 -webkit-box-align: center;
85 }
86
83 .stretch { 87 .stretch {
84 -webkit-box-flex: 1; 88 -webkit-box-flex: 1;
85 } 89 }
86 90
87 .frozen, 91 .frozen,
88 .subpage-sheet-container.frozen { 92 .subpage-sheet-container.frozen {
89 position: fixed; 93 position: fixed;
90 } 94 }
91 95
92 .search-field-container { 96 .search-field-container {
(...skipping 639 matching lines...) Expand 10 before | Expand all | Expand 10 after
732 url('chrome://theme/IDR_CONTROLLED_SETTING_RECOMMENDED_LARGE'); 736 url('chrome://theme/IDR_CONTROLLED_SETTING_RECOMMENDED_LARGE');
733 } 737 }
734 738
735 html[dir='rtl'] .controlled-setting-bubble-text { 739 html[dir='rtl'] .controlled-setting-bubble-text {
736 background-position: right top; 740 background-position: right top;
737 } 741 }
738 742
739 .controlled-setting-bubble-action { 743 .controlled-setting-bubble-action {
740 padding: 0 !important; 744 padding: 0 !important;
741 } 745 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698