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

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: click handling 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
OLDNEW
1 body { 1 body {
2 -webkit-user-select: none; 2 -webkit-user-select: none;
3 cursor: default; 3 cursor: default;
4 font-size: 100%; 4 font-size: 100%;
5 } 5 }
6 6
7 #settings-title { 7 #settings-title {
8 -webkit-padding-end: 24px; 8 -webkit-padding-end: 24px;
9 color: #53637d; 9 color: #53637d;
10 font-size: 200%; 10 font-size: 200%;
(...skipping 188 matching lines...) Expand 10 before | Expand all | Expand 10 after
199 box-sizing: border-box; 199 box-sizing: border-box;
200 max-width: 888px; 200 max-width: 888px;
201 min-height: 100%; 201 min-height: 100%;
202 min-width: 600px; 202 min-width: 600px;
203 padding: 0 24px; 203 padding: 0 24px;
204 position: relative; 204 position: relative;
205 } 205 }
206 206
207 .subpage-sheet-container { 207 .subpage-sheet-container {
208 padding: 8px; 208 padding: 8px;
209 -webkit-padding-start: 60px; 209 -webkit-padding-start: 0px;
arv (Not doing code reviews) 2011/01/18 19:06:07 s/0px/0/
Evan Stade 2011/01/18 22:37:09 Done.
210 -webkit-margin-start: 60px;
210 box-sizing: border-box; 211 box-sizing: border-box;
211 height: 100%; 212 height: 100%;
212 position: absolute; 213 position: absolute;
214 /* We set both left and right for the sake of RTL. */
215 left: 0;
216 right: 0;
213 top: 0; 217 top: 0;
214 left: 0; 218 width: 680px;
stuartmorgan 2011/01/18 17:21:52 Won't this make the visible sub-pages 16px narrowe
Evan Stade 2011/01/18 22:37:09 yes, good catch. (actually, it was off by 8)
215 } 219 }
216 220
217 #subpage-sheet-container-1 { 221 #subpage-sheet-container-1 {
218 width: 748px;
219 z-index: 5; 222 z-index: 5;
220 } 223 }
221 224
222 #subpage-sheet-container-2 { 225 #subpage-sheet-container-2 {
223 left: 60px; 226 -webkit-padding-start: 60px;
224 width: 688px;
225 z-index: 10; 227 z-index: 10;
226 } 228 }
227 229
228 .subpage-sheet { 230 .subpage-sheet {
229 -webkit-box-shadow: #666 0px 3px 5px; 231 -webkit-box-shadow: #666 0px 3px 5px;
230 background-color: white; 232 background-color: white;
231 border: 1px solid #b8b8b8; 233 border: 1px solid #b8b8b8;
232 border-radius: 2px; 234 border-radius: 2px;
233 box-sizing: border-box; 235 box-sizing: border-box;
234 min-height: 100%; 236 min-height: 100%;
(...skipping 309 matching lines...) Expand 10 before | Expand all | Expand 10 after
544 } 546 }
545 547
546 .suboption { 548 .suboption {
547 -webkit-margin-start: 16px; 549 -webkit-margin-start: 16px;
548 } 550 }
549 551
550 html[os=mac] label > input[type=checkbox], 552 html[os=mac] label > input[type=checkbox],
551 html[os=mac] label > input[type=radio] { 553 html[os=mac] label > input[type=radio] {
552 margin-top: 2px; 554 margin-top: 2px;
553 } 555 }
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/resources/options/options_page.js » ('j') | chrome/browser/resources/options/options_page.js » ('J')

Powered by Google App Engine
This is Rietveld 408576698