Merge "Invalid ApplicationExceptionTest"
[portal.git] / portal-FE-common / src / styles / bootstrap / mixins / _list-group.scss
1 // List Groups
2
3 @mixin list-group-item-variant($state, $background, $color) {
4   .list-group-item-#{$state} {
5     color: $color;
6     background-color: $background;
7   }
8
9   a.list-group-item-#{$state},
10   button.list-group-item-#{$state} {
11     color: $color;
12
13     @include hover-focus {
14       color: $color;
15       background-color: darken($background, 5%);
16     }
17
18     &.active {
19       color: #fff;
20       background-color: $color;
21       border-color: $color;
22     }
23   }
24 }