diff options
| author | Cesar G <prototech91@gmail.com> | 2014-07-08 06:31:59 -0700 |
|---|---|---|
| committer | Cesar G <prototech91@gmail.com> | 2014-08-07 16:40:09 +0200 |
| commit | 42afa369a085461311b91065478fa37bfc9b65b5 (patch) | |
| tree | 991fb29a3ad1e283cc2b4764a09ae3f7c401aa82 | |
| parent | 778483d070792dc5a6765de2d839110202b16346 (diff) | |
| download | forums-42afa369a085461311b91065478fa37bfc9b65b5.tar forums-42afa369a085461311b91065478fa37bfc9b65b5.tar.gz forums-42afa369a085461311b91065478fa37bfc9b65b5.tar.bz2 forums-42afa369a085461311b91065478fa37bfc9b65b5.tar.xz forums-42afa369a085461311b91065478fa37bfc9b65b5.zip | |
[ticket/12809] Fix select button and dropdown list items in RTL.
PHPBB3-12809
| -rw-r--r-- | phpBB/styles/prosilver/theme/bidi.css | 30 |
1 files changed, 17 insertions, 13 deletions
diff --git a/phpBB/styles/prosilver/theme/bidi.css b/phpBB/styles/prosilver/theme/bidi.css index d3594cc5bd..0563588712 100644 --- a/phpBB/styles/prosilver/theme/bidi.css +++ b/phpBB/styles/prosilver/theme/bidi.css @@ -112,6 +112,15 @@ text-align: right; } +.rtl .dropdown-contents > li { + padding-left: 15px; + padding-right: 0; +} + +.rtl .dropdown-nonscroll > li { + padding-left: 0; +} + .rtl .dropdown li li { padding-left: 0; padding-right: 18px; @@ -601,8 +610,8 @@ li.breadcrumbs span:first-child > a { /* Rollover buttons Based on: http://wellstyled.com/css-nopreload-rollovers.html ----------------------------------------*/ -.rtl .icon-button.dropdown-select { - padding-left: 26px; +.rtl .dropdown-select { + padding-left: 24px; padding-right: 8px; } @@ -612,7 +621,12 @@ li.breadcrumbs span:first-child > a { margin-right: 2px; } -.dropdown-select:after { +.rtl .dropdown-select.icon-button:before { + margin-left: 4px; + margin-right: 0; +} + +.rtl .dropdown-select:after { border-left: 0; border-right-style: solid; border-right-width: 1px; @@ -915,16 +929,6 @@ li.breadcrumbs span:first-child > a { float: left; } -/* Jumpbox */ -.rtl fieldset.jumpbox { - text-align: left; -} - -.rtl fieldset.quickmod { - float: left; - text-align: left; -} - /* Posting page styles ----------------------------------------*/ |
