Skip to content
Snippets Groups Projects
Commit 221cb665 authored by Anika Henke's avatar Anika Henke
Browse files

fixed pagetools being inaccessible on screens lacking necessary height, and...

fixed pagetools being inaccessible on screens lacking necessary height, and aligned them to content when on smaller screens
parent 04180aa9
No related branches found
No related tags found
No related merge requests found
......@@ -105,6 +105,15 @@
overflow: auto;
}
/* push pagetools closer to content */
#dokuwiki__pagetools {
top: 0;
}
.showSidebar #dokuwiki__pagetools {
top: 3.5em;
}
/* _edit */
.dokuwiki div.section_highlight {
margin: 0 -1em;
......@@ -299,5 +308,17 @@ body {
}
} /* /@media */
/* for screen heights smaller than the pagetools permit
********************************************************************/
@media only screen and (max-height: 400px) {
// 400px is only roughly the required value, this may be wrong under non-standard circumstances
#dokuwiki__pagetools div.tools {
position: static;
}
} /* /@media */
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment