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

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

Issue 9317114: Settings: Clean up browser_options page according to style guide. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Review 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 209 matching lines...) Expand 10 before | Expand all | Expand 10 after
220 .subpage-sheet-container { 220 .subpage-sheet-container {
221 -webkit-transition: 250ms opacity, 100ms padding-left, 100ms padding-right; 221 -webkit-transition: 250ms opacity, 100ms padding-left, 100ms padding-right;
222 box-sizing: border-box; 222 box-sizing: border-box;
223 min-height: 100%; 223 min-height: 100%;
224 position: absolute; 224 position: absolute;
225 left: 0; 225 left: 0;
226 right: 0; 226 right: 0;
227 top: 0; 227 top: 0;
228 } 228 }
229 229
230 /* Omit top padding (currently only on #browserPage) whenever the search page is 230 /* Omit top padding (currently only on #settings) whenever the search page is
231 * showing. */ 231 * showing.
232 #searchPage:not([hidden]) + #browserPage { 232 */
233 #searchPage:not([hidden]) + #settings {
233 padding-top: 0; 234 padding-top: 0;
234 } 235 }
235 236
236 #subpage-sheet-container-1 { 237 #subpage-sheet-container-1 {
237 -webkit-padding-start: 40px; 238 -webkit-padding-start: 40px;
238 z-index: 5; 239 z-index: 5;
239 } 240 }
240 241
241 #subpage-sheet-container-2 { 242 #subpage-sheet-container-2 {
242 -webkit-padding-start: 80px; 243 -webkit-padding-start: 80px;
(...skipping 493 matching lines...) Expand 10 before | Expand all | Expand 10 after
736 url('chrome://theme/IDR_CONTROLLED_SETTING_RECOMMENDED_LARGE'); 737 url('chrome://theme/IDR_CONTROLLED_SETTING_RECOMMENDED_LARGE');
737 } 738 }
738 739
739 html[dir='rtl'] .controlled-setting-bubble-text { 740 html[dir='rtl'] .controlled-setting-bubble-text {
740 background-position: right top; 741 background-position: right top;
741 } 742 }
742 743
743 .controlled-setting-bubble-action { 744 .controlled-setting-bubble-action {
744 padding: 0 !important; 745 padding: 0 !important;
745 } 746 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698