diff --git a/docs/assets/css/bootstrap.css b/docs/assets/css/bootstrap.css index 27e532f583..4c3cc20ac1 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 da26f8ab94..afe339bc7a 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 47e564e83d..b8a7fb23cc 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 ac373af069..fe36556363 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 3ad356fc8b..2b82998dc3 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 // -------------------------