diff options
author | Michael Miday <midaym@gmail.com> | 2015-10-02 05:08:02 +0200 |
---|---|---|
committer | Michael Miday <midaym@gmail.com> | 2015-10-09 06:40:08 +0200 |
commit | bb9bfec624429b4263aad30efb6c32e619f82883 (patch) | |
tree | 9bcc12b6459c9cfa86f02331494023b2cf3c0065 | |
parent | 6a17cc556001fbf127e2d6a3d613517928a46e0a (diff) | |
download | forums-bb9bfec624429b4263aad30efb6c32e619f82883.tar forums-bb9bfec624429b4263aad30efb6c32e619f82883.tar.gz forums-bb9bfec624429b4263aad30efb6c32e619f82883.tar.bz2 forums-bb9bfec624429b4263aad30efb6c32e619f82883.tar.xz forums-bb9bfec624429b4263aad30efb6c32e619f82883.zip |
[ticket/14175]Remove max-device width
PHPBB3-14175
-rw-r--r-- | phpBB/styles/prosilver/theme/responsive.css | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/phpBB/styles/prosilver/theme/responsive.css b/phpBB/styles/prosilver/theme/responsive.css index ccf6f8d1f0..e9a4ea3473 100644 --- a/phpBB/styles/prosilver/theme/responsive.css +++ b/phpBB/styles/prosilver/theme/responsive.css @@ -1,7 +1,7 @@ /* Responsive Design ---------------------------------------- */ -@media only screen and (max-width: 320px), only screen and (max-device-width: 320px) { +@media only screen and (max-width: 320px) { select, .inputbox { max-width: 240px; } @@ -9,19 +9,19 @@ /* Notifications list ----------------------------------------*/ -@media only screen and (max-width: 350px), only screen and (max-device-width: 350px) { +@media only screen and (max-width: 350px) { .dropdown-extended .dropdown-contents { width: auto; } } -@media only screen and (max-width: 430px), only screen and (max-device-width: 430px) { +@media only screen and (max-width: 430px) { .section-viewtopic .search-box .inputbox { width: 110px; } } -@media only screen and (max-width: 500px), only screen and (max-device-width: 500px) { +@media only screen and (max-width: 500px) { dd label { white-space: normal; } @@ -94,7 +94,7 @@ } } -@media only screen and (max-width: 550px), only screen and (max-device-width: 550px) { +@media only screen and (max-width: 550px) { ul.topiclist.forums dt { margin-right: 0; } @@ -108,7 +108,7 @@ } } -@media only screen and (max-width: 700px), only screen and (max-device-width: 700px) { +@media only screen and (max-width: 700px) { .responsive-hide { display: none !important; } .responsive-show { display: block !important; } .responsive-show-inline { display: inline !important; } @@ -549,7 +549,7 @@ } } -@media only screen and (max-width: 850px), only screen and (max-device-width: 850px) { +@media only screen and (max-width: 850px) { .postprofile { width: 28%; } .postbody { width: 70%; } } |