56 lines
1.5 KiB
SCSS
Vendored
56 lines
1.5 KiB
SCSS
Vendored
.sidebar {
|
|
background-color: $card-bg;
|
|
.navbar-brand {
|
|
.logo-title {
|
|
color: $white;
|
|
}
|
|
}
|
|
.sidebar-header {
|
|
border-color: $border-color;
|
|
}
|
|
@include nav-item(false) {
|
|
color: $light;
|
|
}
|
|
@include nav-item() {
|
|
color: $body-color;
|
|
&.active,&[aria-expanded=true]{
|
|
@include sidebar-item-color-varients($white ,$primary);
|
|
}
|
|
&:hover:not(.active):not([aria-expanded=true]) {
|
|
@include sidebar-nav-item-hover($primary);
|
|
}
|
|
}
|
|
}
|
|
.sidebar-color {
|
|
.navbar-nav {
|
|
.nav-item{
|
|
.nav-link:not(.disabled){
|
|
&.active, &[aria-expanded=true]{
|
|
background-color: $white !important;
|
|
color: var(--bs-primary) !important;
|
|
box-shadow: unset !important;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
.sidebar-dark, .sidebar-white, .sidebar-transparent {
|
|
.navbar-nav {
|
|
.nav-item{
|
|
.nav-link:not(.disabled){
|
|
&.active, &[aria-expanded=true]{
|
|
background-color: var(--bs-primary) !important;
|
|
color: $white !important;
|
|
box-shadow: unset !important;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
.sidebar-dark, .sidebar-white, .sidebar-transparent{
|
|
.navbar-nav .nav-item .nav-link:not(.disabled):hover:not(.active):not([aria-expanded=true]) {
|
|
background-color: rgba(var(--bs-primary-rgb), 0.2) !important;
|
|
color: var(--bs-primary) !important;
|
|
}
|
|
}
|