diff options
Diffstat (limited to 'css/html-reset-rtl.css')
-rwxr-xr-x | css/html-reset-rtl.css | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/css/html-reset-rtl.css b/css/html-reset-rtl.css new file mode 100755 index 0000000..0260d5e --- /dev/null +++ b/css/html-reset-rtl.css @@ -0,0 +1,37 @@ +/** + * @file + * RTL companion for the html-reset.css file. + */ + + +/* + * Lists + * + * We need to standardize the list item indentation. + */ +ul, +ol { + padding-left: 0; + padding-right: 2em; +} + +.block ul, +.item-list ul /* Drupal overrides */ { + padding: 0 2em 0 0; +} + +dd { + margin: 0 2em 0 0; +} + +/* + * Tables + * + * Drupal provides table styling which is only useful for its admin section + * forms, so we override this default CSS. (We set it back in forms.css.) + */ +th, +thead th, +tbody th { + text-align: right; +} |