From: ghost_32 Date: Mon, 23 Aug 2021 07:18:29 +0000 (+0530) Subject: Fix `$dropdown-link-hover-color` variable color value in _variable.scss (#34779) X-Git-Tag: v5.1.1~37 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=6cf52ed5f79815369e4737f82d45fbb5eb59a459;p=thirdparty%2Fbootstrap.git Fix `$dropdown-link-hover-color` variable color value in _variable.scss (#34779) --- diff --git a/scss/_variables.scss b/scss/_variables.scss index 1700f99413..9262ca4957 100644 --- a/scss/_variables.scss +++ b/scss/_variables.scss @@ -1167,7 +1167,7 @@ $dropdown-divider-margin-y: $spacer * .5 !default; $dropdown-box-shadow: $box-shadow !default; $dropdown-link-color: $gray-900 !default; -$dropdown-link-hover-color: shade-color($gray-900, 10%) !default; +$dropdown-link-hover-color: shade-color($dropdown-link-color, 10%) !default; $dropdown-link-hover-bg: $gray-200 !default; $dropdown-link-active-color: $component-active-color !default;