aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2013-03-31 17:27:22 -0700
committerMark Otto <[email protected]>2013-03-31 17:27:22 -0700
commitd6f37f3c568ed70a7e20fdaa5429501d5af406a7 (patch)
tree3cf8a347963a30b409da92a82b6715f0c80f9ef8
parent376bd20b3a8714546c87676a6cc87ed1f85e7c90 (diff)
downloadbootstrap-d6f37f3c568ed70a7e20fdaa5429501d5af406a7.tar.xz
bootstrap-d6f37f3c568ed70a7e20fdaa5429501d5af406a7.zip
@link-color-hover to @link-hover-color
-rw-r--r--docs/assets/css/bootstrap.css4
-rw-r--r--less/buttons.less2
-rw-r--r--less/navs.less4
-rw-r--r--less/scaffolding.less2
-rw-r--r--less/variables.less2
5 files changed, 7 insertions, 7 deletions
diff --git a/docs/assets/css/bootstrap.css b/docs/assets/css/bootstrap.css
index 27e532f58..4c3cc20ac 100644
--- a/docs/assets/css/bootstrap.css
+++ b/docs/assets/css/bootstrap.css
@@ -3350,8 +3350,8 @@ button.close {
margin-top: 8px;
}
.nav .dropdown-toggle:hover .caret {
- border-top-color: @link-color-hover;
- border-bottom-color: @link-color-hover;
+ border-top-color: @link-hover-color;
+ border-bottom-color: @link-hover-color;
}
// Active dropdown links
diff --git a/less/buttons.less b/less/buttons.less
index da26f8ab9..afe339bc7 100644
--- a/less/buttons.less
+++ b/less/buttons.less
@@ -159,7 +159,7 @@ fieldset[disabled] .btn-link {
}
.btn-link:hover,
.btn-link:focus {
- color: @link-color-hover;
+ color: @link-hover-color;
text-decoration: underline;
background-color: transparent;
}
diff --git a/less/navs.less b/less/navs.less
index 47e564e83..b8a7fb23c 100644
--- a/less/navs.less
+++ b/less/navs.less
@@ -207,8 +207,8 @@
margin-top: 8px;
}
.nav .dropdown-toggle:hover .caret {
- border-top-color: @link-color-hover;
- border-bottom-color: @link-color-hover;
+ border-top-color: @link-hover-color;
+ border-bottom-color: @link-hover-color;
}
// Active dropdown links
diff --git a/less/scaffolding.less b/less/scaffolding.less
index ac373af06..fe3655636 100644
--- a/less/scaffolding.less
+++ b/less/scaffolding.less
@@ -57,7 +57,7 @@ a {
}
a:hover,
a:focus {
- color: @link-color-hover;
+ color: @link-hover-color;
text-decoration: underline;
}
a:focus {
diff --git a/less/variables.less b/less/variables.less
index 3ad356fc8..2b82998dc 100644
--- a/less/variables.less
+++ b/less/variables.less
@@ -35,7 +35,7 @@
// -------------------------
@link-color: @brand-primary;
-@link-color-hover: darken(@link-color, 15%);
+@link-hover-color: darken(@link-color, 15%);
// Typography
// -------------------------