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;
|
|
|
|
}
|
|
|
|
|
2015-08-23 00:46:46 -04:00
|
|
|
a.list-group-item-#{$state},
|
|
|
|
button.list-group-item-#{$state} {
|
2014-12-02 17:02:35 -05:00
|
|
|
color: $color;
|
|
|
|
|
2015-01-01 04:05:01 -05:00
|
|
|
@include hover-focus {
|
2014-12-02 17:02:35 -05:00
|
|
|
color: $color;
|
|
|
|
background-color: darken($background, 5%);
|
|
|
|
}
|
|
|
|
|
2015-01-01 04:05:01 -05:00
|
|
|
&.active {
|
2016-12-28 16:52:31 -05:00
|
|
|
color: #fff;
|
|
|
|
background-color: $color;
|
|
|
|
border-color: $color;
|
2014-12-02 17:02:35 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|