diff options
author | Cesar G <prototech91@gmail.com> | 2013-10-12 00:03:34 -0700 |
---|---|---|
committer | Cesar G <prototech91@gmail.com> | 2013-12-06 00:56:31 -0800 |
commit | a25b1e6a402d62c6aeff73d7c1cf5ddde7c2f533 (patch) | |
tree | 2c94f9de472db5cad40b3df09cca97d9de869b36 | |
parent | 9c9c20ad55d909922a40fae5ba502b515b7679f4 (diff) | |
download | forums-a25b1e6a402d62c6aeff73d7c1cf5ddde7c2f533.tar forums-a25b1e6a402d62c6aeff73d7c1cf5ddde7c2f533.tar.gz forums-a25b1e6a402d62c6aeff73d7c1cf5ddde7c2f533.tar.bz2 forums-a25b1e6a402d62c6aeff73d7c1cf5ddde7c2f533.tar.xz forums-a25b1e6a402d62c6aeff73d7c1cf5ddde7c2f533.zip |
[ticket/11241] Fix the dropdown in RTL languages.
PHPBB3-11241
-rw-r--r-- | phpBB/styles/prosilver/theme/bidi.css | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/phpBB/styles/prosilver/theme/bidi.css b/phpBB/styles/prosilver/theme/bidi.css index b04e6576d3..d5e98d6197 100644 --- a/phpBB/styles/prosilver/theme/bidi.css +++ b/phpBB/styles/prosilver/theme/bidi.css @@ -90,6 +90,21 @@ text-align: left; } +/* Dropdown menu +---------------------------------------- */ +.rtl .dropdown-container.topic-tools { + float: right; +} + +.rtl .dropdown li { + text-align: right; +} + +.rtl .dropdown li li { + padding-left: 0; + padding-right: 10px; +} + /* Table styles ----------------------------------------*/ .rtl table.table1 thead th { |