0
0
mirror of https://github.com/twbs/bootstrap.git synced 2024-12-03 15:24:19 +01:00
Bootstrap/scss/mixins/_list-group.scss

31 lines
572 B
SCSS
Raw Normal View History

2014-12-02 23:02:35 +01:00
// List Groups
@mixin list-group-item-variant($state, $background, $color) {
.list-group-item-#{state} {
color: $color;
background-color: $background;
}
2015-06-19 08:56:43 +02:00
a.list-group-item-#{state},
button.list-group-item-#{state} {
2014-12-02 23:02:35 +01:00
color: $color;
.list-group-item-heading {
color: inherit;
}
@include hover-focus {
2014-12-02 23:02:35 +01:00
color: $color;
background-color: darken($background, 5%);
}
&.active {
@include plain-hover-focus {
color: #fff;
background-color: $color;
border-color: $color;
}
2014-12-02 23:02:35 +01:00
}
}
}