mirror of
https://github.com/netbox-community/netbox.git
synced 2024-05-10 07:54:54 +00:00
39 lines
722 B
SCSS
39 lines
722 B
SCSS
![]() |
// Navbar styling
|
||
|
.navbar-vertical.navbar-expand-lg {
|
||
|
.navbar-collapse {
|
||
|
.dropdown-menu {
|
||
|
.dropdown-item {
|
||
|
a {
|
||
|
color: inherit;
|
||
|
}
|
||
|
.btn-group {
|
||
|
visibility: hidden;
|
||
|
}
|
||
|
|
||
|
// Adjust hover color & style for menu items
|
||
|
&:hover {
|
||
|
background-color: $gray-700;
|
||
|
a {
|
||
|
text-decoration: none;
|
||
|
}
|
||
|
.btn-group {
|
||
|
visibility: visible;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
// Style active menu item
|
||
|
&.active {
|
||
|
background-color: $gray-700;
|
||
|
a {
|
||
|
color: white;
|
||
|
}
|
||
|
.btn-group {
|
||
|
visibility: visible;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|