Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/cowboysmall-tools/hugo-devresume-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'static/assets/scss/bootstrap/scss/mixins/_text-emphasis.scss')
-rwxr-xr-xstatic/assets/scss/bootstrap/scss/mixins/_text-emphasis.scss16
1 files changed, 16 insertions, 0 deletions
diff --git a/static/assets/scss/bootstrap/scss/mixins/_text-emphasis.scss b/static/assets/scss/bootstrap/scss/mixins/_text-emphasis.scss
new file mode 100755
index 0000000..155d6ca
--- /dev/null
+++ b/static/assets/scss/bootstrap/scss/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;
+ }
+ }
+ }
+}