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

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

Issue 6093001: Some RTL fixes for tabbed options. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: alphabet Created 10 years 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 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
68 html[dir='rtl'] .close-subpage { 68 html[dir='rtl'] .close-subpage {
69 float: left; 69 float: left;
70 left: 0; 70 left: 0;
71 } 71 }
72 72
73 html[hide-menu=true] .close-subpage { 73 html[hide-menu=true] .close-subpage {
74 display: none 74 display: none
75 } 75 }
76 76
77 .action-area { 77 .action-area {
78 -webkit-box-align: center;
78 -webkit-box-orient: horizontal; 79 -webkit-box-orient: horizontal;
79 -webkit-box-align: center; 80 bottom: 0px;
James Hawkins 2010/12/23 00:40:45 nit: Take off the 'px' for 0.
Evan Stade 2010/12/23 00:48:21 Done.
81 display: -webkit-box;
80 padding: 12px; 82 padding: 12px;
81 position: absolute; 83 position: absolute;
82 right: 0px; 84 right: 0px
83 bottom: 0px; 85 }
84 display: -webkit-box; 86
87 html[dir='rtl'] .action-area {
88 left: 0px;
85 } 89 }
86 90
87 .button-strip { 91 .button-strip {
88 -webkit-box-orient: horizontal; 92 -webkit-box-orient: horizontal;
89 display: -webkit-box; 93 display: -webkit-box;
90 } 94 }
91 95
92 html[toolkit=views] .button-strip { 96 html[toolkit=views] .button-strip {
93 -webkit-box-direction: reverse; 97 -webkit-box-direction: reverse;
94 } 98 }
(...skipping 382 matching lines...) Expand 10 before | Expand all | Expand 10 after
477 padding-left: 5px; 481 padding-left: 5px;
478 } 482 }
479 483
480 .favicon-cell { 484 .favicon-cell {
481 -webkit-padding-start: 20px; 485 -webkit-padding-start: 20px;
482 background-position: left; 486 background-position: left;
483 background-repeat: no-repeat; 487 background-repeat: no-repeat;
484 } 488 }
485 489
486 list .favicon-cell { 490 list .favicon-cell {
487 -webkit-padding-start: 33px; 491 -webkit-margin-start: 7px;
488 background-position: 7px; 492 -webkit-padding-start: 26px;
489 display: block; 493 display: block;
490 text-overflow: ellipsis; 494 text-overflow: ellipsis;
491 overflow: hidden; 495 overflow: hidden;
492 white-space: nowrap; 496 white-space: nowrap;
493 } 497 }
494 498
495 html[dir=rtl] list .favicon-cell { 499 html[dir=rtl] list .favicon-cell {
496 /* TODO(stuartmorgan): position this 7px from the right (and remove the
497 padding override) once the CSS support is available */
498 -webkit-padding-start: 26px;
499 background-position: right; 500 background-position: right;
500 } 501 }
501 502
502 html[enable-background-mode=false] #background-mode-section { 503 html[enable-background-mode=false] #background-mode-section {
503 display: none; 504 display: none;
504 } 505 }
505 506
506 html[enable-cloud-print-proxy=false] #cloud-print-proxy-section { 507 html[enable-cloud-print-proxy=false] #cloud-print-proxy-section {
507 display: none; 508 display: none;
508 } 509 }
(...skipping 20 matching lines...) Expand all
529 } 530 }
530 531
531 .suboption { 532 .suboption {
532 -webkit-margin-start: 16px; 533 -webkit-margin-start: 16px;
533 } 534 }
534 535
535 html[os=mac] label > input[type=checkbox], 536 html[os=mac] label > input[type=checkbox],
536 html[os=mac] label > input[type=radio] { 537 html[os=mac] label > input[type=radio] {
537 margin-top: 2px; 538 margin-top: 2px;
538 } 539 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698