diff options
author | Angie Byron <webchick@24967.no-reply.drupal.org> | 2009-03-30 05:28:41 +0000 |
---|---|---|
committer | Angie Byron <webchick@24967.no-reply.drupal.org> | 2009-03-30 05:28:41 +0000 |
commit | 2302a608be609977a1a33c71c7984512a10c65be (patch) | |
tree | 636786f1c94fe686e1f1048703e4bae86b813b29 /modules | |
parent | 243ecdaf523d7f93d0c82f2c5eba8f9412291d94 (diff) | |
download | brdo-2302a608be609977a1a33c71c7984512a10c65be.tar.gz brdo-2302a608be609977a1a33c71c7984512a10c65be.tar.bz2 |
#402044 by yched: Make Field CSS RTL compatible.
Diffstat (limited to 'modules')
-rw-r--r-- | modules/field/theme/field-rtl.css | 11 | ||||
-rw-r--r-- | modules/field/theme/field.css | 6 |
2 files changed, 14 insertions, 3 deletions
diff --git a/modules/field/theme/field-rtl.css b/modules/field/theme/field-rtl.css new file mode 100644 index 000000000..cba6fa302 --- /dev/null +++ b/modules/field/theme/field-rtl.css @@ -0,0 +1,11 @@ +/* $Id$ */ + +form .field-multiple-table th.field-label { + padding-right: 0; +} +form .field-multiple-table td.field-multiple-drag { + padding-left: 0; +} +form .field-multiple-table td.field-multiple-drag a.tabledrag-handle{ + padding-left: .5em; +} diff --git a/modules/field/theme/field.css b/modules/field/theme/field.css index 167da2296..17bf18915 100644 --- a/modules/field/theme/field.css +++ b/modules/field/theme/field.css @@ -18,14 +18,14 @@ form .field-multiple-table { margin: 0; } form .field-multiple-table th.field-label { - padding-left: 0; + padding-left: 0; /*LTR*/ } form .field-multiple-table td.field-multiple-drag { width: 30px; - padding-right: 0; + padding-right: 0; /*LTR*/ } form .field-multiple-table td.field-multiple-drag a.tabledrag-handle{ - padding-right: .5em; + padding-right: .5em; /*LTR*/ } form .field-add-more-submit { |