1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-02-24 03:54:10 +01:00

[ticket/11956] Adjust few elements for tiny devices

Change min-width for tiny phones
Adjust form elements max-width for tiny phones

PHPBB3-11956
This commit is contained in:
Vjacheslav Trushkin 2013-10-25 12:50:36 +03:00
parent db9ca2fc63
commit 6dedac1929

View File

@ -17,7 +17,7 @@ body {
}
#wrap {
min-width: 320px;
min-width: 300px;
padding: 0;
}
@ -343,6 +343,19 @@ fieldset.quick-login label[for="autologin"] {
min-width: 50%;
}
@media only screen and (max-width: 500px), only screen and (max-device-width: 500px)
{
select, .inputbox {
max-width: 260px;
}
}
@media only screen and (max-width: 320px), only screen and (max-device-width: 320px)
{
select, .inputbox {
max-width: 240px;
}
}
/* User profile
----------------------------------------*/