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:
authorGeoSot <geo.sotis@gmail.com>2021-07-22 18:13:13 +0300
committerGitHub <noreply@github.com>2021-07-22 18:13:13 +0300
commit41292a52570610dc312a775ae0491dc46f93a4fe (patch)
treece8185d87fd969dac7d7cf39b1f03c43452c5e4e /scss
parente85a6ed77c92ee43cf23b5c6ce479dbd0100be66 (diff)
Toasts: Change showing timings and classes to keep toast `display:none` by default (#33610)
Diffstat (limited to 'scss')
-rw-r--r--scss/_toasts.scss4
1 files changed, 2 insertions, 2 deletions
diff --git a/scss/_toasts.scss b/scss/_toasts.scss
index 717aae576e..0a2d6ec875 100644
--- a/scss/_toasts.scss
+++ b/scss/_toasts.scss
@@ -10,11 +10,11 @@
box-shadow: $toast-box-shadow;
@include border-radius($toast-border-radius);
- &:not(.showing):not(.show) {
+ &.showing {
opacity: 0;
}
- &.hide {
+ &:not(.show) {
display: none;
}
}