2
0
mirror of https://github.com/tenrok/bootstrap.git synced 2026-06-08 17:22:31 +03:00

Fixes #10399: Add hover styles to text emphasis classes

This commit is contained in:
Mark Otto
2013-09-04 13:56:32 -07:00
parent c0f6d722b0
commit 1c4bdb053b
4 changed files with 55 additions and 8 deletions
+20
View File
@@ -416,22 +416,42 @@ cite {
color: #428bca;
}
.text-primary:hover {
color: #3071a9;
}
.text-warning {
color: #c09853;
}
.text-warning:hover {
color: #a47e3c;
}
.text-danger {
color: #b94a48;
}
.text-danger:hover {
color: #953b39;
}
.text-success {
color: #468847;
}
.text-success:hover {
color: #356635;
}
.text-info {
color: #3a87ad;
}
.text-info:hover {
color: #2d6987;
}
.text-left {
text-align: left;
}
+1 -1
View File
File diff suppressed because one or more lines are too long