Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/scss
diff options
context:
space:
mode:
authorMark Otto <markdotto@gmail.com>2021-09-08 21:49:52 +0300
committerMark Otto <otto@github.com>2022-03-09 01:53:53 +0300
commit91312486b2a07325491bab3507f469b681ac724c (patch)
treeef05874f33004a244ace36b2d7fd57f94ada89ca /scss
parenta68e1af2d5f4f8d5c10d1c1005cc6734adfcced6 (diff)
Deprecate the tooltip-arrow-bg color since we're using CSS variables to set tooltip colors
Diffstat (limited to 'scss')
-rw-r--r--scss/_tooltip.scss2
-rw-r--r--scss/_variables.scss4
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