diff options
author | Gábor Hojtsy <gabor@hojtsy.hu> | 2007-12-13 10:14:18 +0000 |
---|---|---|
committer | Gábor Hojtsy <gabor@hojtsy.hu> | 2007-12-13 10:14:18 +0000 |
commit | b0007cdd0925e8ce8e805414e1a132fd828ef1b9 (patch) | |
tree | fbb0724837e8466df5faa6ce7c3f52086112dcda /modules | |
parent | c6d841c0963ff151232c2ae23b997a5b36c680eb (diff) | |
download | brdo-b0007cdd0925e8ce8e805414e1a132fd828ef1b9.tar.gz brdo-b0007cdd0925e8ce8e805414e1a132fd828ef1b9.tar.bz2 |
#197641 by quicksketch and myself: fix drag and drop RTL issues (connector line facing and drag directions)
Diffstat (limited to 'modules')
-rw-r--r-- | modules/system/system-rtl.css | 3 | ||||
-rw-r--r-- | modules/system/system.css | 4 |
2 files changed, 5 insertions, 2 deletions
diff --git a/modules/system/system-rtl.css b/modules/system/system-rtl.css index 6a523f47f..baa14e8a6 100644 --- a/modules/system/system-rtl.css +++ b/modules/system/system-rtl.css @@ -102,3 +102,6 @@ div.indentation { padding: 0.42em 0.6em 0.42em 0; float: right; } +div.tree-child, div.tree-child-last { + background-position: -65px center; +} diff --git a/modules/system/system.css b/modules/system/system.css index 564f6f797..30e17aff7 100644 --- a/modules/system/system.css +++ b/modules/system/system.css @@ -52,10 +52,10 @@ div.indentation { float: left; /* LTR */ } div.tree-child { - background: url(../../misc/tree.png) no-repeat 11px center; + background: url(../../misc/tree.png) no-repeat 11px center; /* LTR */ } div.tree-child-last { - background: url(../../misc/tree-bottom.png) no-repeat 11px center; + background: url(../../misc/tree-bottom.png) no-repeat 11px center; /* LTR */ } div.tree-child-horizontal { background: url(../../misc/tree.png) no-repeat -11px center; |