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