Style improvements for small screens

- hide side nav
- hide search box
- make content full height
This commit is contained in:
Marcus Weseloh 2020-11-14 16:13:10 +01:00
parent 5ccc7543ae
commit a03362a155

View file

@ -61,7 +61,8 @@ span.permalink a {
display: none;
}
#nav-tree
#nav-tree,
#side-nav
{
background: #333;
}
@ -74,11 +75,33 @@ span.permalink a {
background: #666;
}
#side-nav {
width: 350px;
}
.ui-resizable-e {
background: #ddd;
}
#nav-sync {
display: none;
}
@media (max-width: 767px) {
#side-nav {
display: none !important;
}
#doc-content {
margin-left: 0 !important;
height: auto !important;
width: auto !important;
}
#MSearchBox {
display: none !important;
}
}
#nav-tree,
div.header,
.ui-resizable-e,