aboutsummaryrefslogtreecommitdiff
path: root/less/type.less
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2013-02-05 19:39:49 -0800
committerMark Otto <[email protected]>2013-02-05 19:39:49 -0800
commit15c7e73abd8d97f0139d177d05c94e26faa17dd2 (patch)
tree5d9a2317d17b669fe4a9ce6863ea59f0ddeea430 /less/type.less
parentcb0fed66933d179b5bc3669a1df7df00b5688cbe (diff)
parentc55329085ebc6d05d91412251331c0613ea2250b (diff)
downloadbootstrap-15c7e73abd8d97f0139d177d05c94e26faa17dd2.tar.xz
bootstrap-15c7e73abd8d97f0139d177d05c94e26faa17dd2.zip
Merge branch '2.3.0-wip' of https://github.com/patrickhlauke/bootstrap into patrickhlauke-2.3.0-wip
Conflicts: docs/assets/css/bootstrap.css less/navbar.less
Diffstat (limited to 'less/type.less')
-rw-r--r--less/type.less15
1 files changed, 10 insertions, 5 deletions
diff --git a/less/type.less b/less/type.less
index 7eabfd9ad..337138ac8 100644
--- a/less/type.less
+++ b/less/type.less
@@ -29,19 +29,24 @@ cite { font-style: normal; }
// Utility classes
.muted { color: @grayLight; }
-a.muted:hover { color: darken(@grayLight, 10%); }
+a.muted:hover,
+a.muted:focus { color: darken(@grayLight, 10%); }
.text-warning { color: @warningText; }
-a.text-warning:hover { color: darken(@warningText, 10%); }
+a.text-warning:hover,
+a.text-warning:focus { color: darken(@warningText, 10%); }
.text-error { color: @errorText; }
-a.text-error:hover { color: darken(@errorText, 10%); }
+a.text-error:hover,
+a.text-error:focus { color: darken(@errorText, 10%); }
.text-info { color: @infoText; }
-a.text-info:hover { color: darken(@infoText, 10%); }
+a.text-info:hover,
+a.text-info:focus { color: darken(@infoText, 10%); }
.text-success { color: @successText; }
-a.text-success:hover { color: darken(@successText, 10%); }
+a.text-success:hover,
+a.text-success:focus { color: darken(@successText, 10%); }
.text-left { text-align: left; }
.text-right { text-align: right; }