diff options
author | Joas Schilling <nickvergessen@gmx.de> | 2014-10-15 18:56:11 +0200 |
---|---|---|
committer | Joas Schilling <nickvergessen@gmx.de> | 2014-10-15 18:56:11 +0200 |
commit | b343bf783ab020b085c3e35b50784414cfcaa695 (patch) | |
tree | 9a7ea5d3f8908045425fb4257b5d8d6f7e29da05 /phpBB/styles | |
parent | 8be701db0ad7508d1ed4c4df4d0b90fdf7efb359 (diff) | |
parent | 205be67622e984668ee3bedc4ec75ed2251ccaa7 (diff) | |
download | forums-b343bf783ab020b085c3e35b50784414cfcaa695.tar forums-b343bf783ab020b085c3e35b50784414cfcaa695.tar.gz forums-b343bf783ab020b085c3e35b50784414cfcaa695.tar.bz2 forums-b343bf783ab020b085c3e35b50784414cfcaa695.tar.xz forums-b343bf783ab020b085c3e35b50784414cfcaa695.zip |
Merge pull request #3037 from PayBas/ticket/13169
[ticket/13169] Fix RTL forms in responsive mode
Diffstat (limited to 'phpBB/styles')
-rw-r--r-- | phpBB/styles/prosilver/theme/bidi.css | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/phpBB/styles/prosilver/theme/bidi.css b/phpBB/styles/prosilver/theme/bidi.css index 65123af4e5..2d79a78ccb 100644 --- a/phpBB/styles/prosilver/theme/bidi.css +++ b/phpBB/styles/prosilver/theme/bidi.css @@ -1121,4 +1121,20 @@ li.breadcrumbs span:first-child > a { .rtl .has-profile .post-buttons { left: 20px; } + + /* Forms + ----------------------------------------*/ + .rtl fieldset dt, .rtl fieldset.fields1 dt, .rtl fieldset.fields2 dt { + float: none; + } + + .rtl fieldset dd, .rtl fieldset.fields1 dd, .rtl fieldset.fields2 dd { + margin-right: 20px; + } + + @media only screen and (max-width: 500px), only screen and (max-device-width: 500px) { + .captcha-panel dd.captcha { + margin-right: 0; + } + } } |