The indentation div used in drag and drop was also not RTL friendly positioned. Noted by Steven Wittens, fix by myself.

6.x
Gábor Hojtsy 2007-12-04 10:52:16 +00:00
parent 3fb6f14a5a
commit d29a48802e
2 changed files with 8 additions and 3 deletions

View File

@ -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;
}

View File

@ -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;