sync
[roojs1] / scss / bootstrap / mixins / _text-emphasis.scss
diff --git a/scss/bootstrap/mixins/_text-emphasis.scss b/scss/bootstrap/mixins/_text-emphasis.scss
new file mode 100644 (file)
index 0000000..1819fb0
--- /dev/null
@@ -0,0 +1,14 @@
+// stylelint-disable declaration-no-important
+
+// Typography
+
+@mixin text-emphasis-variant($parent, $color) {
+  #{$parent} {
+    color: $color !important;
+  }
+  a#{$parent} {
+    @include hover-focus {
+      color: darken($color, $emphasized-link-hover-darken-percentage) !important;
+    }
+  }
+}