2017-07-04 01:09:28 +02:00
|
|
|
.toast {
|
|
|
|
max-width: $toast-max-width;
|
|
|
|
overflow: hidden; // cheap rounded corners on nested items
|
|
|
|
font-size: $toast-font-size; // knock it down to 14px
|
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;
|
|
|
|
backdrop-filter: blur(10px);
|
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
|
|
|
|
}
|