summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGábor Hojtsy <gabor@hojtsy.hu>2007-12-03 08:40:38 +0000
committerGábor Hojtsy <gabor@hojtsy.hu>2007-12-03 08:40:38 +0000
commit80e26c14afef6991c11148f5411e98444afb7a43 (patch)
tree8d27c3b6a3253ef193d869c1047a556eda62002d
parent197d82fb8dae4e9a10655acdc572ef2ea3b87957 (diff)
downloadbrdo-80e26c14afef6991c11148f5411e98444afb7a43.tar.gz
brdo-80e26c14afef6991c11148f5411e98444afb7a43.tar.bz2
Table drag handler was not properly positioned in RTL themes. Note by Steven Wittens, patch by myself.
-rw-r--r--modules/system/system-rtl.css6
-rw-r--r--modules/system/system.css6
2 files changed, 9 insertions, 3 deletions
diff --git a/modules/system/system-rtl.css b/modules/system/system-rtl.css
index a9abc4988..a6fd42644 100644
--- a/modules/system/system-rtl.css
+++ b/modules/system/system-rtl.css
@@ -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;
+}
diff --git a/modules/system/system.css b/modules/system/system.css
index f4d56fc33..fb96adb47 100644
--- a/modules/system/system.css
+++ b/modules/system/system.css
@@ -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 {