The indentation div used in drag and drop was also not RTL friendly positioned. Noted by Steven Wittens, fix by myself.
parent
3fb6f14a5a
commit
d29a48802e
|
@ -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;
|
||||
}
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue