Table drag handler was not properly positioned in RTL themes. Note by Steven Wittens, patch by myself.
parent
197d82fb8d
commit
80e26c14af
|
@ -91,3 +91,9 @@ input.password-confirm {
|
|||
margin-left: 10px;
|
||||
margin-right: 0;
|
||||
}
|
||||
|
||||
a.tabledrag-handle {
|
||||
float: right;
|
||||
margin: -0.4em -0.5em -0.4em 0;
|
||||
padding: 0.42em 0.5em 0.42em 1.5em;
|
||||
}
|
||||
|
|
|
@ -365,10 +365,10 @@ html.js .resizable-textarea textarea {
|
|||
*/
|
||||
a.tabledrag-handle {
|
||||
cursor: move;
|
||||
float: left;
|
||||
float: left; /* LTR */
|
||||
height: 1.7em;
|
||||
margin: -0.4em 0 -0.4em -0.5em;
|
||||
padding: 0.42em 1.5em 0.42em 0.5em;
|
||||
margin: -0.4em 0 -0.4em -0.5em; /* LTR */
|
||||
padding: 0.42em 1.5em 0.42em 0.5em; /* LTR */
|
||||
text-decoration: none;
|
||||
}
|
||||
a.tabledrag-handle:hover {
|
||||
|
|
Loading…
Reference in New Issue