Sha256: 250e80ca52b45b2fd0c1aa8b994d14af2af3e26d62de7d972a27f323095ac07a
Contents?: true
Size: 795 Bytes
Versions: 111
Compression:
Stored size: 795 Bytes
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; } //creates styles for each color in core color dictionary @each $id, $color in $colors { &.fa-feature_bullet-#{$id} .fa-feature_bullet-circle { color: #{$color}; } } // inverse will reverse the white and colored element on the stacked icon &.fa-inverse { .fa-feature_bullet-circle { color: color('white'); } @each $id, $color in $colors { &.fa-feature_bullet-#{$id} .fa-feature_bullet-icon { color: #{$color}; } } } }
Version data entries
111 entries across 111 versions & 1 rubygems