diff options
author | Angie Byron <webchick@24967.no-reply.drupal.org> | 2010-09-27 03:56:14 +0000 |
---|---|---|
committer | Angie Byron <webchick@24967.no-reply.drupal.org> | 2010-09-27 03:56:14 +0000 |
commit | a38dd53ef8e0f0d25d3bea09bf609b96e5e4b564 (patch) | |
tree | e76ed711857c5aefaf8f760aef79d8851edb0bbd | |
parent | 9ce07179a37f606891ee91e141ee38681d9190d0 (diff) | |
download | brdo-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.css | 6 | ||||
-rw-r--r-- | modules/image/image.css | 6 | ||||
-rw-r--r-- | modules/system/system.base-rtl.css | 2 |
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; } |