2
0
mirror of https://github.com/tenrok/bootstrap.git synced 2026-06-11 18:02:28 +03:00

fixes #5087: add hover states to text emphasis classes for links

This commit is contained in:
Mark Otto
2012-09-17 23:19:52 -07:00
parent 239e6a7d21
commit 3b3def4898
2 changed files with 28 additions and 0 deletions
+12
View File
@@ -39,15 +39,27 @@ cite {
}
.text-warning {
color: @warningText;
&:hover {
color: darken(@warningText, 10%);
}
}
.text-error {
color: @errorText;
&:hover {
color: darken(@errorText, 10%);
}
}
.text-info {
color: @infoText;
&:hover {
color: darken(@infoText, 10%);
}
}
.text-success {
color: @successText;
&:hover {
color: darken(@successText, 10%);
}
}