rfid/themes/hugo-whisper-theme/assets/scss/bootstrap/mixins/_list-group.scss
2021-10-01 14:32:43 +02:00

21 lines
431 B
SCSS
Executable file

// List Groups
@mixin list-group-item-variant($state, $background, $color) {
.list-group-item-#{$state} {
color: $color;
background-color: $background;
&.list-group-item-action {
@include hover-focus {
color: $color;
background-color: darken($background, 5%);
}
&.active {
color: $white;
background-color: $color;
border-color: $color;
}
}
}
}