0
0
mirror of https://github.com/twbs/bootstrap.git synced 2024-12-01 13:24:25 +01:00
Bootstrap/scss/_toasts.scss

52 lines
1.2 KiB
SCSS
Raw Normal View History

2017-07-04 01:09:28 +02:00
.toast {
2020-11-29 15:22:15 +01:00
width: $toast-max-width;
max-width: 100%;
@include font-size($toast-font-size);
color: $toast-color;
2020-11-29 15:22:15 +01:00
pointer-events: auto;
2017-07-04 01:09:28 +02: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 12:43:51 +01:00
@include border-radius($toast-border-radius);
2017-07-04 01:09:28 +02:00
2020-11-29 15:22:15 +01:00
&:not(.showing):not(.show) {
opacity: 0;
2017-07-04 01:09:28 +02:00
}
2020-11-29 15:22:15 +01:00
&.hide {
display: none;
2018-12-06 13:53:01 +01:00
}
2020-11-29 15:22:15 +01:00
}
2018-12-06 13:53:01 +01:00
2020-11-29 15:22:15 +01:00
.toast-container {
width: max-content;
max-width: 100%;
pointer-events: none;
2018-12-06 13:53:01 +01:00
2020-11-29 15:22:15 +01:00
> :not(:last-child) {
margin-bottom: $toast-spacing;
}
}
2017-07-04 01:09:28 +02: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 / -2;
margin-left: $toast-padding-x;
}
2017-07-04 01:09:28 +02:00
}
.toast-body {
padding: $toast-padding-x; // apply to both vertical and horizontal
word-wrap: break-word;
2017-07-04 01:09:28 +02:00
}