diff options
author | Gábor Hojtsy <gabor@hojtsy.hu> | 2007-12-04 10:52:16 +0000 |
---|---|---|
committer | Gábor Hojtsy <gabor@hojtsy.hu> | 2007-12-04 10:52:16 +0000 |
commit | d29a48802eb1ffe194ba1dedc3e05142969d111f (patch) | |
tree | 16e9f92100a1d8a075f33f963835484c6a6e820f | |
parent | 3fb6f14a5a89ee3b57c9d78404eda43e6421eb81 (diff) | |
download | brdo-d29a48802eb1ffe194ba1dedc3e05142969d111f.tar.gz brdo-d29a48802eb1ffe194ba1dedc3e05142969d111f.tar.bz2 |
The indentation div used in drag and drop was also not RTL friendly positioned. Noted by Steven Wittens, fix by myself.
-rw-r--r-- | modules/system/system-rtl.css | 5 | ||||
-rw-r--r-- | modules/system/system.css | 6 |
2 files changed, 8 insertions, 3 deletions
diff --git a/modules/system/system-rtl.css b/modules/system/system-rtl.css index a6fd42644..6a523f47f 100644 --- a/modules/system/system-rtl.css +++ b/modules/system/system-rtl.css @@ -97,3 +97,8 @@ a.tabledrag-handle { margin: -0.4em -0.5em -0.4em 0; padding: 0.42em 0.5em 0.42em 1.5em; } +div.indentation { + margin: -0.4em -0.4em -0.4em 0.2em; + padding: 0.42em 0.6em 0.42em 0; + float: right; +} diff --git a/modules/system/system.css b/modules/system/system.css index fb96adb47..564f6f797 100644 --- a/modules/system/system.css +++ b/modules/system/system.css @@ -47,9 +47,9 @@ thead th { div.indentation { width: 20px; height: 1.7em; - margin: -0.4em 0.2em -0.4em -0.4em; - padding: 0.42em 0 0.42em 0.6em; - float: left; + margin: -0.4em 0.2em -0.4em -0.4em; /* LTR */ + padding: 0.42em 0 0.42em 0.6em; /* LTR */ + float: left; /* LTR */ } div.tree-child { background: url(../../misc/tree.png) no-repeat 11px center; |