2017-07-04 01:09:28 +02:00
|
|
|
.toast {
|
2020-06-03 15:27:50 +02:00
|
|
|
// Prevents from shrinking in IE11, when in a flex container
|
|
|
|
// See https://github.com/twbs/bootstrap/issues/28341
|
|
|
|
flex-basis: $toast-max-width;
|
2017-07-04 01:09:28 +02:00
|
|
|
max-width: $toast-max-width;
|
|
|
|
overflow: hidden; // cheap rounded corners on nested items
|
2019-02-07 23:32:05 +01:00
|
|
|
@include font-size($toast-font-size);
|
2019-01-20 22:38:29 +01:00
|
|
|
color: $toast-color;
|
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-06 13:53:01 +01:00
|
|
|
opacity: 0;
|
2018-12-19 12:43:51 +01:00
|
|
|
@include border-radius($toast-border-radius);
|
2017-07-04 01:09:28 +02:00
|
|
|
|
2018-12-12 14:23:10 +01:00
|
|
|
&:not(:last-child) {
|
|
|
|
margin-bottom: $toast-padding-x;
|
2017-07-04 01:09:28 +02:00
|
|
|
}
|
|
|
|
|
2018-12-06 13:53:01 +01:00
|
|
|
&.showing {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
|
2018-09-19 07:00:22 +02:00
|
|
|
&.show {
|
|
|
|
display: block;
|
2018-12-06 13:53:01 +01:00
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.hide {
|
|
|
|
display: none;
|
2018-09-19 07:00:22 +02:00
|
|
|
}
|
2018-08-23 18:31:25 +02:00
|
|
|
}
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
|
|
|
.toast-body {
|
|
|
|
padding: $toast-padding-x; // apply to both vertical and horizontal
|
|
|
|
}
|