diff options
author | Anika Henke <anika@selfthinker.org> | 2012-06-29 15:29:23 +0100 |
---|---|---|
committer | Anika Henke <anika@selfthinker.org> | 2012-06-29 15:29:23 +0100 |
commit | d14f4018ba7db0f68e767c52d4dc7faba789bf4a (patch) | |
tree | 9bdeb9a0098b036ce40d686c1beb18f9e51f597b | |
parent | df06cef4cd3b8d95638f384cb74facc7a3bd6386 (diff) | |
download | rpg-d14f4018ba7db0f68e767c52d4dc7faba789bf4a.tar.gz rpg-d14f4018ba7db0f68e767c52d4dc7faba789bf4a.tar.bz2 |
improved media queries for mobile and tablet modes
-rw-r--r-- | lib/tpl/dokuwiki/css/mobile.css | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/tpl/dokuwiki/css/mobile.css b/lib/tpl/dokuwiki/css/mobile.css index b57b60e9b..5edb88cb2 100644 --- a/lib/tpl/dokuwiki/css/mobile.css +++ b/lib/tpl/dokuwiki/css/mobile.css @@ -7,7 +7,7 @@ /* up to 768px screen widths ********************************************************************/ -@media only screen and (max-width: 768px), only screen and (max-device-width: 960px) { +@media only screen and (max-width: 768px), only screen and (max-device-width: 1024px) { /* structure */ #dokuwiki__aside { @@ -94,7 +94,7 @@ /* up to 480px screen widths ********************************************************************/ -@media only screen and (max-width: 480px), only screen and (max-device-width: 960px) { +@media only screen and (max-width: 480px), only screen and (max-device-width: 768px) { /*____________ structure ____________*/ |