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:
Diffstat (limited to 'scss/_toasts.scss')
-rw-r--r--scss/_toasts.scss11
1 files changed, 10 insertions, 1 deletions
diff --git a/scss/_toasts.scss b/scss/_toasts.scss
index d6ba4ca141..c5fde797b9 100644
--- a/scss/_toasts.scss
+++ b/scss/_toasts.scss
@@ -1,5 +1,4 @@
.toast {
- display: none;
max-width: $toast-max-width;
overflow: hidden; // cheap rounded corners on nested items
font-size: $toast-font-size; // knock it down to 14px
@@ -9,13 +8,23 @@
border-radius: $toast-border-radius;
box-shadow: $toast-box-shadow;
backdrop-filter: blur(10px);
+ opacity: 0;
+ .toast {
margin-top: $toast-padding-x;
}
+ &.showing {
+ opacity: 1;
+ }
+
&.show {
display: block;
+ opacity: 1;
+ }
+
+ &.hide {
+ display: none;
}
}