Table drag handler was not properly positioned in RTL themes. Note by Steven Wittens, patch by myself.

6.x
Gábor Hojtsy 2007-12-03 08:40:38 +00:00
parent 197d82fb8d
commit 80e26c14af
2 changed files with 9 additions and 3 deletions

View File

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

View File

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