You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
509 B

  1. // List Groups
  2. // scss-docs-start list-group-mixin
  3. @mixin list-group-item-variant($state, $background, $color) {
  4. .list-group-item-#{$state} {
  5. color: $color;
  6. background-color: $background;
  7. &.list-group-item-action {
  8. &:hover,
  9. &:focus {
  10. color: $color;
  11. background-color: shade-color($background, 10%);
  12. }
  13. &.active {
  14. color: $white;
  15. background-color: $color;
  16. border-color: $color;
  17. }
  18. }
  19. }
  20. }
  21. // scss-docs-end list-group-mixin