Browse Source

Fixes #1599: Reduce mobile cut-off for navigation menu to 960px

Jeremy Stretch 7 years ago
parent
commit
8299c735b1
1 changed files with 8 additions and 1 deletions
  1. 8 1
      netbox/project-static/css/base.css

+ 8 - 1
netbox/project-static/css/base.css

@@ -42,8 +42,15 @@ footer p {
     }
     }
 }
 }
 
 
-/* Collapse the nav menu on displays less than 1200px wide */
+/* Hide the search bar in the navigation menu on displays less than 1200px wide */
 @media (max-width: 1199px) {
 @media (max-width: 1199px) {
+    #navbar_search {
+        display: none;
+    }
+}
+
+/* Collapse the nav menu on displays less than 960px wide */
+@media (max-width: 959px) {
     .navbar-header {
     .navbar-header {
         float: none;
         float: none;
     }
     }