aboutsummaryrefslogtreecommitdiff
path: root/scss
diff options
context:
space:
mode:
authorJohann-S <[email protected]>2018-12-06 13:53:01 +0100
committerJohann-S <[email protected]>2018-12-10 10:38:11 +0100
commit1f4d7903db37de5f7efad455c307583cedf53b27 (patch)
treed3aaa2e378f486526c61b9be1df326297a57cde3 /scss
parentfc15c4c4ce132e70eb67335dfe840c3f0a80dae4 (diff)
downloadbootstrap-1f4d7903db37de5f7efad455c307583cedf53b27.tar.xz
bootstrap-1f4d7903db37de5f7efad455c307583cedf53b27.zip
fix fade animation for toast
Diffstat (limited to '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 d6ba4ca14..c5fde797b 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;
}
}