summaryrefslogtreecommitdiff
path: root/lib/tpl/dokuwiki/css
diff options
context:
space:
mode:
authorAnika Henke <anika@selfthinker.org>2012-10-26 00:09:31 +0100
committerAnika Henke <anika@selfthinker.org>2012-10-26 00:09:31 +0100
commitac628d80ed1fc2003b4f4ef6e6897d9c9235ae83 (patch)
tree532af0d2bdf041fcbcf2a4b0684e7fd2770d01ec /lib/tpl/dokuwiki/css
parent8f8cccb46310ea77689dace8d6dfb42bdc7d4080 (diff)
downloadrpg-ac628d80ed1fc2003b4f4ef6e6897d9c9235ae83.tar.gz
rpg-ac628d80ed1fc2003b4f4ef6e6897d9c9235ae83.tar.bz2
added cut off points for mobile devices as parameters to style.ini
Diffstat (limited to 'lib/tpl/dokuwiki/css')
-rw-r--r--lib/tpl/dokuwiki/css/mobile.css8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/tpl/dokuwiki/css/mobile.css b/lib/tpl/dokuwiki/css/mobile.css
index 501e53a54..88333c012 100644
--- a/lib/tpl/dokuwiki/css/mobile.css
+++ b/lib/tpl/dokuwiki/css/mobile.css
@@ -11,9 +11,9 @@
z-index: 0;
}
-/* up to 979px screen widths
+/* for screen widths in the tablet range
********************************************************************/
-@media only screen and (max-width: 979px) {
+@media only screen and (max-width: __tablet_width__) {
#screen__mode {
z-index: 1; /* for detecting media queries in JavaScript (see script.js) */
@@ -113,9 +113,9 @@
} /* /@media */
-/* up to 480px screen widths
+/* for screen widths in the smartphone range
********************************************************************/
-@media only screen and (max-width: 480px) {
+@media only screen and (max-width: __phone_width__) {
#screen__mode {
z-index: 2; /* for detecting media queries in JavaScript (see script.js) */