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

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

Issue 6277005: Fix subsheet RTL. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: review fixes Created 9 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
« no previous file with comments | « no previous file | chrome/browser/resources/options/options_page.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 body { 1 body {
2 cursor: default; 2 cursor: default;
3 font-size: 100%; 3 font-size: 100%;
4 } 4 }
5 5
6 #settings-title { 6 #settings-title {
7 -webkit-padding-end: 24px; 7 -webkit-padding-end: 24px;
8 color: #53637d; 8 color: #53637d;
9 cursor: pointer; 9 cursor: pointer;
10 font-size: 200%; 10 font-size: 200%;
(...skipping 174 matching lines...) Expand 10 before | Expand all | Expand 10 after
185 #mainview-content { 185 #mainview-content {
186 box-sizing: border-box; 186 box-sizing: border-box;
187 max-width: 888px; 187 max-width: 888px;
188 min-height: 100%; 188 min-height: 100%;
189 min-width: 600px; 189 min-width: 600px;
190 padding: 0 24px; 190 padding: 0 24px;
191 position: relative; 191 position: relative;
192 } 192 }
193 193
194 .subpage-sheet-container { 194 .subpage-sheet-container {
195 padding: 8px; 195 -webkit-margin-start: 60px;
196 -webkit-padding-start: 60px; 196 -webkit-padding-start: 0;
stuartmorgan 2011/01/18 22:48:04 I think this has to be after padding..
197 box-sizing: border-box; 197 box-sizing: border-box;
198 height: 100%; 198 height: 100%;
199 padding: 8px;
199 position: absolute; 200 position: absolute;
201 /* We set both left and right for the sake of RTL. */
202 left: 0;
203 right: 0;
200 top: 0; 204 top: 0;
201 left: 0; 205 width: 688px;
202 } 206 }
203 207
204 #subpage-sheet-container-1 { 208 #subpage-sheet-container-1 {
205 width: 748px;
206 z-index: 5; 209 z-index: 5;
207 } 210 }
208 211
209 #subpage-sheet-container-2 { 212 #subpage-sheet-container-2 {
210 left: 60px; 213 -webkit-padding-start: 60px;
211 width: 688px;
212 z-index: 10; 214 z-index: 10;
213 } 215 }
214 216
215 .subpage-sheet { 217 .subpage-sheet {
216 -webkit-box-shadow: #666 0px 3px 5px; 218 -webkit-box-shadow: #666 0px 3px 5px;
217 background-color: white; 219 background-color: white;
218 border: 1px solid #b8b8b8; 220 border: 1px solid #b8b8b8;
219 border-radius: 2px; 221 border-radius: 2px;
220 box-sizing: border-box; 222 box-sizing: border-box;
221 min-height: 100%; 223 min-height: 100%;
(...skipping 309 matching lines...) Expand 10 before | Expand all | Expand 10 after
531 } 533 }
532 534
533 .suboption { 535 .suboption {
534 -webkit-margin-start: 16px; 536 -webkit-margin-start: 16px;
535 } 537 }
536 538
537 html[os=mac] label > input[type=checkbox], 539 html[os=mac] label > input[type=checkbox],
538 html[os=mac] label > input[type=radio] { 540 html[os=mac] label > input[type=radio] {
539 margin-top: 2px; 541 margin-top: 2px;
540 } 542 }
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/resources/options/options_page.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698