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

25 lines
509 B
SCSS
Raw Normal View History

2014-12-02 23:02:35 +01:00
// List Groups
// scss-docs-start list-group-mixin
2014-12-02 23:02:35 +01:00
@mixin list-group-item-variant($state, $background, $color) {
.list-group-item-#{$state} {
2014-12-02 23:02:35 +01:00
color: $color;
background-color: $background;
&.list-group-item-action {
&:hover,
&:focus {
color: $color;
2020-10-13 09:58:06 +02:00
background-color: shade-color($background, 10%);
}
2014-12-02 23:02:35 +01:00
&.active {
color: $white;
background-color: $color;
border-color: $color;
}
2014-12-02 23:02:35 +01:00
}
}
}
// scss-docs-end list-group-mixin