7a76ac4226
* Update now-ui frontend lib to latest instead of the beta * Update to bootstrap 4 lib * Fix flights and profile pages
25 lines
512 B
SCSS
Executable File
25 lines
512 B
SCSS
Executable File
@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;
|
|
}
|
|
}
|