All Downloads are FREE. Search and download functionalities are using the official Maven repository.

package.scss.mixins._list-group.scss Maven / Gradle / Ivy

Go to download

Orange Boosted with Bootstrap is a Bootstrap based, Orange branded accessible and ergonomic components library.

The newest version!
@include deprecate("`list-group-item-variant()`", "v5.3.0", "v6.0.0");

// List Groups

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

    &.list-group-item-action {
      // Boosted mod: no &:focus
      &:hover {
        color: $color;
        background-color: if($color == $white, shade-color($background, 10%), tint-color($background, 10%)); // Boosted mod
      }

      // Boosted mod: no variant for active state
    }
  }
}
// scss-docs-end list-group-mixin




© 2015 - 2024 Weber Informatics LLC | Privacy Policy