Sha256: 91ad4d63d89e1522d7f9a35ab48fb1ec19d6e0efb51779c1b60c32ce06b96927

Contents?: true

Size: 454 Bytes

Versions: 3

Compression:

Stored size: 454 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
chulapa-jekyll-1.1.0 _sass/bootstrap/mixins/_list-group.scss
chulapa-jekyll-1.0.1 _sass/bootstrap/mixins/_list-group.scss
chulapa-jekyll-1.0.0 _sass/bootstrap/mixins/_list-group.scss