Version 1
[yaffs-website] / vendor / twbs / bootstrap-sass / assets / stylesheets / bootstrap / mixins / _text-emphasis.scss
diff --git a/vendor/twbs/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss b/vendor/twbs/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss
new file mode 100644 (file)
index 0000000..3b446c4
--- /dev/null
@@ -0,0 +1,12 @@
+// Typography
+
+// [converter] $parent hack
+@mixin text-emphasis-variant($parent, $color) {
+  #{$parent} {
+    color: $color;
+  }
+  a#{$parent}:hover,
+  a#{$parent}:focus {
+    color: darken($color, 10%);
+  }
+}