2014-12-03 06:02:35 +08:00
|
|
|
// List Groups
|
|
|
|
|
|
|
|
@mixin list-group-item-variant($state, $background, $color) {
|
2015-08-23 12:46:46 +08:00
|
|
|
.list-group-item-#{$state} {
|
2014-12-03 06:02:35 +08:00
|
|
|
color: $color;
|
|
|
|
background-color: $background;
|
|
|
|
|
2018-01-18 07:36:57 +08:00
|
|
|
&.list-group-item-action {
|
2018-09-18 07:10:07 +08:00
|
|
|
&:hover,
|
|
|
|
&:focus {
|
2018-01-18 07:36:57 +08:00
|
|
|
color: $color;
|
2020-10-13 15:58:06 +08:00
|
|
|
background-color: shade-color($background, 10%);
|
2018-01-18 07:36:57 +08:00
|
|
|
}
|
2014-12-03 06:02:35 +08:00
|
|
|
|
2018-01-18 07:36:57 +08:00
|
|
|
&.active {
|
2018-03-13 01:19:37 +08:00
|
|
|
color: $white;
|
2018-01-18 07:36:57 +08:00
|
|
|
background-color: $color;
|
|
|
|
border-color: $color;
|
|
|
|
}
|
2014-12-03 06:02:35 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|