Sha256: 044f0b87ea18c5c0d39b1517dfb9fefacb1639f6dfb0012712a847e9e5e9e86c

Contents?: true

Size: 1.02 KB

Versions: 10

Compression:

Stored size: 1.02 KB

Contents

// this module provides styling for the font-awesome-rails gem's stacked icon helpers: https://github.com/bokmann/font-awesome-rails#helpers

.fa-feature_bullet {

  .fa-feature_bullet-icon {
    color: color('white');
    text-shadow: none;
  }

  .fa-feature_bullet-circle {
    @extend %text-shadow;
  }

  &.fa-feature_bullet-primary .fa-feature_bullet-circle {
    color: color('primary');
  }

  &.fa-feature_bullet-secondary .fa-feature_bullet-circle {
    color: color('secondary');
  }

  &.fa-feature_bullet-accent .fa-feature_bullet-circle {
    color: color('accent');
  }

  // inverse will reverse the white and colored element on the stacked icon
  &.fa-inverse {
    .fa-feature_bullet-circle {
      color: color('white');
    }

    &.fa-feature_bullet-primary .fa-feature_bullet-icon {
      color: color('primary');
    }

    &.fa-feature_bullet-secondary .fa-feature_bullet-icon {
      color: color('secondary');
    }

    &.fa-feature_bullet-accent .fa-feature_bullet-icon {
      color: color('accent');
    }
  }
}

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
forever_style_guide-2.0.1 app/assets/stylesheets/forever_style_guide/modules/_fa-feature_bullet.scss
forever_style_guide-2.0.0 app/assets/stylesheets/forever_style_guide/modules/_fa-feature_bullet.scss
forever_style_guide-1.2.11 app/assets/stylesheets/forever_style_guide/modules/_fa-feature_bullet.scss
forever_style_guide-1.2.10 app/assets/stylesheets/forever_style_guide/modules/_fa-feature_bullet.scss
forever_style_guide-1.2.9 app/assets/stylesheets/forever_style_guide/modules/_fa-feature_bullet.scss
forever_style_guide-1.2.8 app/assets/stylesheets/forever_style_guide/modules/_fa-feature_bullet.scss
forever_style_guide-1.2.7 app/assets/stylesheets/forever_style_guide/modules/_fa-feature_bullet.scss
forever_style_guide-1.2.5 app/assets/stylesheets/forever_style_guide/modules/_fa-feature_bullet.scss
forever_style_guide-1.2.4 app/assets/stylesheets/forever_style_guide/modules/_fa-feature_bullet.scss
forever_style_guide-1.2.3 app/assets/stylesheets/forever_style_guide/modules/_fa-feature_bullet.scss