Commit f404bdd1 authored by noamsml@chromium.org's avatar noamsml@chromium.org

Fix RTL issues with the chrome://devices page

1. Make the chrome://devices issue run right to left for RTL languages
2. Make the chrome://devices page show icons correctly when displayed right to left
3. Remove unnecessary comment about needing i18n

BUG=386020

Review URL: https://codereview.chromium.org/339403004

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@278328 0039d316-1c4b-4281-b951-d872f2087c98
parent 53b71ecb
...@@ -26,6 +26,10 @@ header { ...@@ -26,6 +26,10 @@ header {
overflow: hidden; overflow: hidden;
} }
html[dir='rtl'] .device {
background-position: right top;
}
.device .device-info { .device .device-info {
-webkit-padding-start: 40px; -webkit-padding-start: 40px;
float: left; float: left;
......
<!-- TODO(noamsml): i18n before submitting -->
<!DOCTYPE HTML> <!DOCTYPE HTML>
<html> <html i18n-values="dir:textdirection">
<head> <head>
<meta charset="utf-8"> <meta charset="utf-8">
<title i18n-content="devicesTitle"></title> <title i18n-content="devicesTitle"></title>
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment