From: Mark Otto Date: Wed, 8 Sep 2021 18:49:52 +0000 (-0700) Subject: Deprecate the tooltip-arrow-bg color since we're using CSS variables to set tooltip... X-Git-Tag: v5.2.0-beta1~176 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=91312486b2a07325491bab3507f469b681ac724c;p=thirdparty%2Fbootstrap.git Deprecate the tooltip-arrow-bg color since we're using CSS variables to set tooltip colors --- diff --git a/scss/_tooltip.scss b/scss/_tooltip.scss index fb4e9d1c31..7fbf706952 100644 --- a/scss/_tooltip.scss +++ b/scss/_tooltip.scss @@ -15,8 +15,6 @@ --#{$variable-prefix}tooltip-arrow-height: #{$tooltip-arrow-height}; // scss-docs-end tooltip-css-vars - $tooltip-arrow-color: null; - position: absolute; z-index: var(--#{$variable-prefix}tooltip-zindex); display: block; diff --git a/scss/_variables.scss b/scss/_variables.scss index 11b5cffacb..6eda4ee449 100644 --- a/scss/_variables.scss +++ b/scss/_variables.scss @@ -1294,7 +1294,9 @@ $tooltip-margin: 0 !default; $tooltip-arrow-width: .8rem !default; $tooltip-arrow-height: .4rem !default; -$tooltip-arrow-color: $tooltip-bg !default; +// fusv-disable +$tooltip-arrow-color: null !default; // Deprecated in v5.2.0 for CSS variables +// fusv-enable // scss-docs-end tooltip-variables // Form tooltips must come after regular tooltips