diff options
Diffstat (limited to 'themes/hugo-whisper-theme/assets/scss/bootstrap/mixins/_text-emphasis.scss')
-rwxr-xr-x | themes/hugo-whisper-theme/assets/scss/bootstrap/mixins/_text-emphasis.scss | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/themes/hugo-whisper-theme/assets/scss/bootstrap/mixins/_text-emphasis.scss b/themes/hugo-whisper-theme/assets/scss/bootstrap/mixins/_text-emphasis.scss new file mode 100755 index 0000000..155d6ca --- /dev/null +++ b/themes/hugo-whisper-theme/assets/scss/bootstrap/mixins/_text-emphasis.scss @@ -0,0 +1,16 @@ +// stylelint-disable declaration-no-important + +// Typography + +@mixin text-emphasis-variant($parent, $color) { + #{$parent} { + color: $color !important; + } + @if $emphasized-link-hover-darken-percentage != 0 { + a#{$parent} { + @include hover-focus { + color: darken($color, $emphasized-link-hover-darken-percentage) !important; + } + } + } +} |