Chromium Code Reviews| 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; |