diff options
-rw-r--r-- | chrome/browser/resources/downloads.html | 7 | ||||
-rw-r--r-- | chrome/browser/resources/history.html | 13 |
2 files changed, 20 insertions, 0 deletions
diff --git a/chrome/browser/resources/downloads.html b/chrome/browser/resources/downloads.html index 9fa94f1..8808524 100644 --- a/chrome/browser/resources/downloads.html +++ b/chrome/browser/resources/downloads.html @@ -23,6 +23,13 @@ body { margin-top:22px; margin-left:12px; } +html[dir='rtl'] .logo { + float:right; +} +html[dir='rtl'] .form { + float:right; + margin-right:12px; +} #downloads-summary { margin-top:12px; border-top:1px solid #9cc2ef; diff --git a/chrome/browser/resources/history.html b/chrome/browser/resources/history.html index 73a2946..282be4c 100644 --- a/chrome/browser/resources/history.html +++ b/chrome/browser/resources/history.html @@ -825,6 +825,13 @@ body { margin-top:22px; margin-left:12px; } +html[dir='rtl'] .logo { + float:right; +} +html[dir='rtl'] .form { + float:right; + margin-right:12px; +} #results-summary { margin-top:12px; border-top:1px solid #9cc2ef; @@ -845,6 +852,9 @@ body { width:200px; float:right; } +html[dir='rtl'] .delete-day { + float:left; +} .gap { margin-left:18px; width:15px; @@ -866,6 +876,9 @@ table.results { margin-right:5px; padding-top:1px; } +html[dir='rtl'] .time { + float:right; +} .entry .title { max-width:600px; overflow: hidden; |