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

Unified 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/resources/options/options_page.css
diff --git a/chrome/browser/resources/options/options_page.css b/chrome/browser/resources/options/options_page.css
index e2efea1c7bd23e5d957b8a46793157c128cc1c23..d0eb1fd0060d012b9a1839701d24f910305bffc3 100644
--- a/chrome/browser/resources/options/options_page.css
+++ b/chrome/browser/resources/options/options_page.css
@@ -206,22 +206,24 @@ html[hide-menu=true] #mainview {
.subpage-sheet-container {
padding: 8px;
- -webkit-padding-start: 60px;
+ -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.
+ -webkit-margin-start: 60px;
box-sizing: border-box;
height: 100%;
position: absolute;
- top: 0;
+ /* We set both left and right for the sake of RTL. */
left: 0;
+ right: 0;
+ top: 0;
+ 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)
}
#subpage-sheet-container-1 {
- width: 748px;
z-index: 5;
}
#subpage-sheet-container-2 {
- left: 60px;
- width: 688px;
+ -webkit-padding-start: 60px;
z-index: 10;
}
« 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