aboutsummaryrefslogtreecommitdiff
path: root/less
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2012-08-31 14:02:18 -0700
committerMark Otto <[email protected]>2012-08-31 14:02:18 -0700
commitbeb0b640967e69e50d1f813a99e8998e27787fdb (patch)
treef69819c32fce000fcbca705cb4e261b7697182c7 /less
parentafd931262cfa1ba377eaa9f9174de1f5779f5445 (diff)
downloadbootstrap-beb0b640967e69e50d1f813a99e8998e27787fdb.tar.xz
bootstrap-beb0b640967e69e50d1f813a99e8998e27787fdb.zip
fixes #4889: btn-link disabled styles
Diffstat (limited to 'less')
-rw-r--r--less/buttons.less7
1 files changed, 6 insertions, 1 deletions
diff --git a/less/buttons.less b/less/buttons.less
index 08ece791c..c80986ea7 100644
--- a/less/buttons.less
+++ b/less/buttons.less
@@ -208,7 +208,8 @@ input[type="submit"].btn {
// Make a button look and behave like a link
.btn-link,
-.btn-link:active {
+.btn-link:active,
+.btn-link[disabled] {
background-color: transparent;
background-image: none;
.box-shadow(none);
@@ -224,3 +225,7 @@ input[type="submit"].btn {
text-decoration: underline;
background-color: transparent;
}
+.btn-link[disabled]:hover {
+ color: @grayDark;
+ text-decoration: none;
+}