summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAngie Byron <webchick@24967.no-reply.drupal.org>2010-09-27 03:56:14 +0000
committerAngie Byron <webchick@24967.no-reply.drupal.org>2010-09-27 03:56:14 +0000
commita38dd53ef8e0f0d25d3bea09bf609b96e5e4b564 (patch)
treee76ed711857c5aefaf8f760aef79d8851edb0bbd
parent9ce07179a37f606891ee91e141ee38681d9190d0 (diff)
downloadbrdo-a38dd53ef8e0f0d25d3bea09bf609b96e5e4b564.tar.gz
brdo-a38dd53ef8e0f0d25d3bea09bf609b96e5e4b564.tar.bz2
#923424 by munzirtaha: Fix wrong usage of /* RTL */ in CSS files.
-rw-r--r--modules/image/image-rtl.css6
-rw-r--r--modules/image/image.css6
-rw-r--r--modules/system/system.base-rtl.css2
3 files changed, 7 insertions, 7 deletions
diff --git a/modules/image/image-rtl.css b/modules/image/image-rtl.css
index 59c46605d..a8d2cefd2 100644
--- a/modules/image/image-rtl.css
+++ b/modules/image/image-rtl.css
@@ -4,9 +4,9 @@
* Image upload widget.
*/
div.image-preview {
- float: right; /* RTL */
- padding: 0 0 10px 10px; /* RTL */
+ float: right;
+ padding: 0 0 10px 10px;
}
div.image-widget-data {
- float: right; /* RTL */
+ float: right;
}
diff --git a/modules/image/image.css b/modules/image/image.css
index 3f4cc5cd3..a3f6114cd 100644
--- a/modules/image/image.css
+++ b/modules/image/image.css
@@ -4,11 +4,11 @@
* Image upload widget.
*/
div.image-preview {
- float: left; /* RTL */
- padding: 0 10px 10px 0; /* RTL */
+ float: left; /* LTR */
+ padding: 0 10px 10px 0; /* LTR */
}
div.image-widget-data {
- float: left; /* RTL */
+ float: left; /* LTR */
}
div.image-widget-data input.text-field {
width: auto;
diff --git a/modules/system/system.base-rtl.css b/modules/system/system.base-rtl.css
index 5beac6d74..16b92de6f 100644
--- a/modules/system/system.base-rtl.css
+++ b/modules/system/system.base-rtl.css
@@ -50,6 +50,6 @@ div.tree-child-last {
background-position: -65px center;
}
.tabledrag-toggle-weight-wrapper {
- text-align: left; /* RTL */
+ text-align: left;
}