1
0
mirror of https://github.com/netbox-community/netbox.git synced 2024-05-10 07:54:54 +00:00

Fixes #1157: Hide nav menu search bar on small displays

This commit is contained in:
Jeremy Stretch
2017-05-17 16:00:46 -04:00
parent 01becd21de
commit f1cbc7da33
2 changed files with 10 additions and 3 deletions

View File

@@ -74,6 +74,13 @@ footer p {
}
}
/* Hide the nav search bar on displays less than 1600px wide */
@media (max-width: 1599px) {
#navbar_search {
display: none;
}
}
/* Forms */
label {
font-weight: normal;