mirror of
https://gitlab.com/Shinobi-Systems/ShinobiCE.git
synced 2025-03-09 15:40:15 +00:00
24 lines
512 B
SCSS
24 lines
512 B
SCSS
@mixin dropdown-colors($brand-color, $dropdown-header-color, $dropdown-color, $background-color ) {
|
|
background-color: $brand-color;
|
|
|
|
&:before{
|
|
color: $brand-color;
|
|
}
|
|
|
|
.dropdown-header:not([href]):not([tabindex]){
|
|
color: $dropdown-header-color;
|
|
}
|
|
|
|
.dropdown-item{
|
|
color: $dropdown-color;
|
|
|
|
&:hover,
|
|
&:focus{
|
|
background-color: $background-color;
|
|
}
|
|
}
|
|
|
|
.dropdown-divider{
|
|
background-color: $background-color;
|
|
}
|
|
}
|