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

github.com/twbs/bootstrap-rubygem.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'assets/stylesheets/bootstrap/mixins/_text-emphasis.scss')
-rw-r--r--assets/stylesheets/bootstrap/mixins/_text-emphasis.scss8
1 files changed, 4 insertions, 4 deletions
diff --git a/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss b/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss
index 3b446c4..0a6428e 100644
--- a/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss
+++ b/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss
@@ -1,12 +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%);
+ a#{$parent} {
+ @include hover-focus {
+ color: darken($color, 10%);
+ }
}
}