From 91312486b2a07325491bab3507f469b681ac724c Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Wed, 8 Sep 2021 11:49:52 -0700 Subject: [PATCH] Deprecate the tooltip-arrow-bg color since we're using CSS variables to set tooltip colors --- scss/_tooltip.scss | 2 -- scss/_variables.scss | 4 +++- 2 files changed, 3 insertions(+), 3 deletions(-) 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