1
0
mirror of https://github.com/privacyguides/privacyguides.org.git synced 2025-07-25 04:41:13 +00:00
Files
privacyguides.org/_sass/bootstrap/mixins/_list-group.scss

22 lines
433 B
SCSS
Raw Normal View History

2020-04-28 16:09:22 -05:00
// List Groups
@mixin list-group-item-variant($state, $background, $color) {
.list-group-item-#{$state} {
color: $color;
background-color: $background;
&.list-group-item-action {
2020-04-28 16:14:23 -05:00
@include hover-focus() {
2020-04-28 16:09:22 -05:00
color: $color;
background-color: darken($background, 5%);
}
&.active {
color: $white;
background-color: $color;
border-color: $color;
}
}
}
}