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

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

Issue 9265020: [uber] make the navigation controls an iframe (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: opt = Created 8 years, 11 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.
2 * Use of this source code is governed by a BSD-style license that can be
3 * found in the LICENSE file.
4 */
5
6 body {
7 position: relative;
8 }
9
1 #main-content { 10 #main-content {
2 display: -webkit-box; 11 display: -webkit-box;
3 position: absolute; 12 position: absolute;
4 left: 0; 13 left: 0;
5 right: 0; 14 right: 0;
6 top: 0; 15 top: 0;
7 bottom: 0; 16 bottom: 0;
8 } 17 }
9 18
10 #mainview { 19 #mainview {
(...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after
124 /* 133 /*
125 * Override the font-size rule in shared_options.css file. 134 * Override the font-size rule in shared_options.css file.
126 * 16 px font-size proved to be more touch friendly. It increases the touchable 135 * 16 px font-size proved to be more touch friendly. It increases the touchable
127 * area for buttons and input boxes. 136 * area for buttons and input boxes.
128 */ 137 */
129 html[touch-optimized] body { 138 html[touch-optimized] body {
130 font-size: 16px; 139 font-size: 16px;
131 } 140 }
132 141
133 #overlay { 142 #overlay {
134 /* -155px hack compensates for uber navigation area. */
135 left: -155px;
136 /* This padding keeps the dialog from moving too far to the left.
137 * 155px (navigation area) + 40px (dialog shadow) = 195px */
138 padding-left: 195px;
139 padding-right: 195px;
140 z-index: 10; 143 z-index: 10;
141 } 144 }
142 145
143 .raw-button, 146 .raw-button,
144 .raw-button:hover, 147 .raw-button:hover,
145 .raw-button:active { 148 .raw-button:active {
146 -webkit-box-shadow: none; 149 -webkit-box-shadow: none;
147 background-color: transparent; 150 background-color: transparent;
148 background-repeat: no-repeat; 151 background-repeat: no-repeat;
149 border: none; 152 border: none;
(...skipping 581 matching lines...) Expand 10 before | Expand all | Expand 10 after
731 url('chrome://theme/IDR_CONTROLLED_SETTING_RECOMMENDED_LARGE'); 734 url('chrome://theme/IDR_CONTROLLED_SETTING_RECOMMENDED_LARGE');
732 } 735 }
733 736
734 html[dir='rtl'] .controlled-setting-bubble-text { 737 html[dir='rtl'] .controlled-setting-bubble-text {
735 background-position: right top; 738 background-position: right top;
736 } 739 }
737 740
738 .controlled-setting-bubble-action { 741 .controlled-setting-bubble-action {
739 padding: 0 !important; 742 padding: 0 !important;
740 } 743 }
OLDNEW
« no previous file with comments | « chrome/browser/resources/options2/options.html ('k') | chrome/browser/resources/options2/options_page.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698