|
@@ -35,6 +35,13 @@ footer p {
|
|
|
margin: 20px 0;
|
|
|
}
|
|
|
|
|
|
+/* Hide the username in the navigation menu on displays less than 1400px wide */
|
|
|
+@media (max-width: 1399px) {
|
|
|
+ #navbar_user {
|
|
|
+ display: none;
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
/* Collapse the nav menu on displays less than 1200px wide */
|
|
|
@media (max-width: 1199px) {
|
|
|
.navbar-header {
|
|
@@ -72,12 +79,8 @@ footer p {
|
|
|
.collapse.in {
|
|
|
display:block !important;
|
|
|
}
|
|
|
-}
|
|
|
-
|
|
|
-/* Hide the nav search bar on displays less than 1600px wide */
|
|
|
-@media (max-width: 1599px) {
|
|
|
- #navbar_search {
|
|
|
- display: none;
|
|
|
+ #navbar_user {
|
|
|
+ display: inline;
|
|
|
}
|
|
|
}
|
|
|
|