This repository has been archived on 2020-05-08. You can view files and clone it, but cannot push or open issues or pull requests.
understrap/src/sass/bootstrap4/mixins/_list-group.scss

22 lines
431 B
SCSS
Raw Normal View History

2017-12-01 07:06:28 +00:00
// 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%);
}
2017-12-01 07:06:28 +00:00
&.active {
2018-04-10 17:05:24 +00:00
color: $white;
background-color: $color;
border-color: $color;
}
2017-12-01 07:06:28 +00:00
}
}
}