diff options
author | gorhill <rhill@raymondhill.net> | 2015-01-13 12:54:13 -0500 |
---|---|---|
committer | gorhill <rhill@raymondhill.net> | 2015-01-13 12:54:13 -0500 |
commit | 35ee7b79f8b27f7ab6d204cfd2879bf6defb4a5e (patch) | |
tree | 603c9b5788c487964c5ae6b3160b73eab18628fd /src/css/devtool-log.css | |
parent | 31e2b1ac031f2f70a3f7e05841c9626c49d83ff2 (diff) | |
download | uBlock-35ee7b79f8b27f7ab6d204cfd2879bf6defb4a5e.zip uBlock-35ee7b79f8b27f7ab6d204cfd2879bf6defb4a5e.tar.gz uBlock-35ee7b79f8b27f7ab6d204cfd2879bf6defb4a5e.tar.bz2 |
this fixes #489
Diffstat (limited to 'src/css/devtool-log.css')
-rw-r--r-- | src/css/devtool-log.css | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/css/devtool-log.css b/src/css/devtool-log.css index 29482cf..1ae60b4 100644 --- a/src/css/devtool-log.css +++ b/src/css/devtool-log.css @@ -28,12 +28,18 @@ body { background-color: #eee; } #content { - margin-left: 4em; width: calc(100% - 4em); } +body[dir="ltr"] #content { + margin-left: 4em; + } +body[dir="rtl"] #content { + margin-right: 4em; + } #content table { border: 0; border-collapse: collapse; + direction: ltr; width: 100%; } #content table tr.blocked { |