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

Unified Diff: chrome/browser/resources/incognito_tab.html

Issue 238005: Invert the new incognito tab Spyman orientation and location for RTL.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 3 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 | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/incognito_tab.html
===================================================================
--- chrome/browser/resources/incognito_tab.html (revision 26890)
+++ chrome/browser/resources/incognito_tab.html (working copy)
@@ -6,10 +6,15 @@
body {
margin:10px 8px 10px 8px;
}
-.icon {
+html[dir="ltr"] .icon {
float:right;
- margin:0px 6px 0px 3px;
+ margin:0 6px 0 3px;
+ -webkit-transform: scale(-1, 1);
arv (Not doing code reviews) 2009/09/25 03:15:30 Isn't the flipping supposed to be done in rtl?
Evan Stade 2009/09/25 03:57:34 This part is a change to LTR. See the screenshots,
}
+html[dir="rtl"] .icon {
+ float:left;
+ margin:0 3px 0 6px;
+}
.content {
-webkit-border-radius: 5px 5px;
background-color:#eee;
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698