1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-02-24 20:13:22 +01:00

Merge pull request #3037 from PayBas/ticket/13169

[ticket/13169] Fix RTL forms in responsive mode
This commit is contained in:
Joas Schilling 2014-10-15 18:56:11 +02:00
commit b343bf783a

View File

@ -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;
}
}
}