Sha256: 9a4c965107368bfa6ba9e25559c73ffe64e38a07fe9b69be871d83567a41632c

Contents?: true

Size: 452 Bytes

Versions: 3

Compression:

Stored size: 452 Bytes

Contents

// List Groups

@mixin list-group-item-variant($state, $background, $color) {
  .list-group-item-#{$state} {
    color: $color;
    background-color: $background;

    &.list-group-item-action {
      @include hover-focus {
        color: $color;
        background-color: darken($background, 5%);
      }

      &.active {
        color: $white;
        background-color: $color;
        border-color: $color;
      }
    }
  }
}

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
mancalledmountain-theme-0.1.2 _sass/vendors/bootstrap/mixins/_list-group.scss
mancalledmountain-theme-0.1.1 _sass/vendors/bootstrap/mixins/_list-group.scss
mancalledmountain-theme-0.1.0 _sass/vendors/bootstrap/mixins/_list-group.scss