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.
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;
|
|
|
|
|
2018-01-22 08:09:25 +00:00
|
|
|
&.list-group-item-action {
|
|
|
|
@include hover-focus {
|
|
|
|
color: $color;
|
|
|
|
background-color: darken($background, 5%);
|
|
|
|
}
|
2017-12-01 07:06:28 +00:00
|
|
|
|
2018-01-22 08:09:25 +00:00
|
|
|
&.active {
|
2018-04-10 17:05:24 +00:00
|
|
|
color: $white;
|
2018-01-22 08:09:25 +00:00
|
|
|
background-color: $color;
|
|
|
|
border-color: $color;
|
|
|
|
}
|
2017-12-01 07:06:28 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|