Commit 9c9a2f3e authored by Mark Otto's avatar Mark Otto

Merge pull request #12247 from twbs/text-emphasis-variant

refactoring: add & use .text-emphasis-variant() mixin
parents b1721f42 689e75e4
......@@ -577,6 +577,15 @@
}
}
// Typography
// -------------------------
.text-emphasis-variant(@color) {
color: @color;
&:hover {
color: darken(@color, 10%);
}
}
// Navbar vertical align
// -------------------------
// Vertically center elements in the navbar.
......
......@@ -92,34 +92,19 @@ cite { font-style: normal; }
color: @text-muted;
}
.text-primary {
color: @brand-primary;
&:hover {
color: darken(@brand-primary, 10%);
}
.text-emphasis-variant(@brand-primary);
}
.text-success {
color: @state-success-text;
&:hover {
color: darken(@state-success-text, 10%);
}
.text-emphasis-variant(@state-success-text);
}
.text-info {
color: @state-info-text;
&:hover {
color: darken(@state-info-text, 10%);
}
.text-emphasis-variant(@state-info-text);
}
.text-warning {
color: @state-warning-text;
&:hover {
color: darken(@state-warning-text, 10%);
}
.text-emphasis-variant(@state-warning-text);
}
.text-danger {
color: @state-danger-text;
&:hover {
color: darken(@state-danger-text, 10%);
}
.text-emphasis-variant(@state-danger-text);
}
// Contextual backgrounds
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment