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

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: 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | chrome/browser/resources/options/options_page.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 be6c6b1ceb175b0936f0bc7743d16cb371ef6158..ad5af87359f5ecb3e0bb0579f7b51865be051b7f 100644
--- a/chrome/browser/resources/options/options_page.css
+++ b/chrome/browser/resources/options/options_page.css
@@ -192,23 +192,25 @@ html[hide-menu=true] #mainview {
}
.subpage-sheet-container {
- padding: 8px;
- -webkit-padding-start: 60px;
+ -webkit-margin-start: 60px;
+ -webkit-padding-start: 0;
stuartmorgan 2011/01/18 22:48:04 I think this has to be after padding..
box-sizing: border-box;
height: 100%;
+ padding: 8px;
position: absolute;
- top: 0;
+ /* We set both left and right for the sake of RTL. */
left: 0;
+ right: 0;
+ top: 0;
+ width: 688px;
}
#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') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698