diff options
author | Vjacheslav Trushkin <cyberalien@gmail.com> | 2013-10-25 12:50:36 +0300 |
---|---|---|
committer | Vjacheslav Trushkin <cyberalien@gmail.com> | 2013-10-25 12:50:36 +0300 |
commit | 6dedac19292b4979a7b15aea02d7f1366b4902bc (patch) | |
tree | dc257711ac2b3790ad9e5f4ea8e366d360206af1 | |
parent | db9ca2fc63ce02031c1cfec2e617a891def62e34 (diff) | |
download | forums-6dedac19292b4979a7b15aea02d7f1366b4902bc.tar forums-6dedac19292b4979a7b15aea02d7f1366b4902bc.tar.gz forums-6dedac19292b4979a7b15aea02d7f1366b4902bc.tar.bz2 forums-6dedac19292b4979a7b15aea02d7f1366b4902bc.tar.xz forums-6dedac19292b4979a7b15aea02d7f1366b4902bc.zip |
[ticket/11956] Adjust few elements for tiny devices
Change min-width for tiny phones
Adjust form elements max-width for tiny phones
PHPBB3-11956
-rw-r--r-- | phpBB/styles/prosilver/theme/responsive.css | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/phpBB/styles/prosilver/theme/responsive.css b/phpBB/styles/prosilver/theme/responsive.css index cfe76149d8..d7af7519b7 100644 --- a/phpBB/styles/prosilver/theme/responsive.css +++ b/phpBB/styles/prosilver/theme/responsive.css @@ -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 ----------------------------------------*/ |