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
diff options
context:
space:
mode:
authorflavio-b <flaviobombonatti@gmail.com>2022-09-10 01:07:16 +0300
committerMark Otto <otto@github.com>2022-09-20 14:36:45 +0300
commit636bb496c93ead07809dc3414e31af3a609482df (patch)
tree6d346cea64169e86f59a1886f5c8363d9af0dd82
parentd0117a17d807df05dfd6f6ce72a0d63f081ca529 (diff)
Set toast z-index variable in the correct spot
The .toast-container tries to use the z-index CSS variable, which is defined under .toast. However, this variable is not accessible to the container. This change copies the variable to the spot where it can be used.
-rw-r--r--scss/_toasts.scss2
1 files changed, 2 insertions, 0 deletions
diff --git a/scss/_toasts.scss b/scss/_toasts.scss
index c34e49b241..2ce378d5bc 100644
--- a/scss/_toasts.scss
+++ b/scss/_toasts.scss
@@ -38,6 +38,8 @@
}
.toast-container {
+ --#{$prefix}toast-zindex: #{$zindex-toast};
+
position: absolute;
z-index: var(--#{$prefix}toast-zindex);
width: max-content;