Warning, /iDDS/monitor/data/scss/bootstrap/mixins/_list-group.scss is written in an unsupported language. File is not indexed.
0001 // List Groups
0002
0003 @mixin list-group-item-variant($state, $background, $color) {
0004 .list-group-item-#{$state} {
0005 color: $color;
0006 background-color: $background;
0007
0008 &.list-group-item-action {
0009 &:hover,
0010 &:focus {
0011 color: $color;
0012 background-color: shade-color($background, 10%);
0013 }
0014
0015 &.active {
0016 color: $white;
0017 background-color: $color;
0018 border-color: $color;
0019 }
0020 }
0021 }
0022 }