2014-12-02 17:02:35 -05:00
|
|
|
// List Groups
|
|
|
|
|
|
|
|
@mixin list-group-item-variant($state, $background, $color) {
|
2015-08-23 00:46:46 -04:00
|
|
|
.list-group-item-#{$state} {
|
2014-12-02 17:02:35 -05:00
|
|
|
color: $color;
|
|
|
|
background-color: $background;
|
|
|
|
|
2018-01-17 18:36:57 -05:00
|
|
|
&.list-group-item-action {
|
|
|
|
@include hover-focus {
|
|
|
|
color: $color;
|
|
|
|
background-color: darken($background, 5%);
|
|
|
|
}
|
2014-12-02 17:02:35 -05:00
|
|
|
|
2018-01-17 18:36:57 -05:00
|
|
|
&.active {
|
2018-03-12 13:19:37 -04:00
|
|
|
color: $white;
|
2018-01-17 18:36:57 -05:00
|
|
|
background-color: $color;
|
|
|
|
border-color: $color;
|
|
|
|
}
|
2014-12-02 17:02:35 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|