twbs--bootstrap/scss/_toasts.scss

52 lines
1.1 KiB
SCSS
Raw Normal View History

2017-07-03 23:09:28 +00:00
.toast {
2020-11-29 14:22:15 +00:00
width: $toast-max-width;
max-width: 100%;
@include font-size($toast-font-size);
color: $toast-color;
2020-11-29 14:22:15 +00:00
pointer-events: auto;
2017-07-03 23:09:28 +00:00
background-color: $toast-background-color;
background-clip: padding-box;
border: $toast-border-width solid $toast-border-color;
box-shadow: $toast-box-shadow;
2018-12-19 11:43:51 +00:00
@include border-radius($toast-border-radius);
2017-07-03 23:09:28 +00:00
&.showing {
2020-11-29 14:22:15 +00:00
opacity: 0;
2017-07-03 23:09:28 +00:00
}
&:not(.show) {
2020-11-29 14:22:15 +00:00
display: none;
2018-12-06 12:53:01 +00:00
}
2020-11-29 14:22:15 +00:00
}
2018-12-06 12:53:01 +00:00
2020-11-29 14:22:15 +00:00
.toast-container {
width: max-content;
max-width: 100%;
pointer-events: none;
2018-12-06 12:53:01 +00:00
2020-11-29 14:22:15 +00:00
> :not(:last-child) {
margin-bottom: $toast-spacing;
}
}
2017-07-03 23:09:28 +00:00
.toast-header {
display: flex;
align-items: center;
padding: $toast-padding-y $toast-padding-x;
color: $toast-header-color;
background-color: $toast-header-background-color;
background-clip: padding-box;
border-bottom: $toast-border-width solid $toast-header-border-color;
@include border-top-radius(subtract($toast-border-radius, $toast-border-width));
.btn-close {
margin-right: $toast-padding-x * -.5;
margin-left: $toast-padding-x;
}
2017-07-03 23:09:28 +00:00
}
.toast-body {
padding: $toast-padding-x; // apply to both vertical and horizontal
word-wrap: break-word;
2017-07-03 23:09:28 +00:00
}