2017-07-04 01:09:28 +02:00
|
|
|
.toast {
|
|
|
|
max-width: $toast-max-width;
|
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;
|
2020-07-31 13:29:01 +02:00
|
|
|
@include border-top-radius(subtract($toast-border-radius, $toast-border-width));
|
2020-09-14 04:47:05 +02:00
|
|
|
|
|
|
|
.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
|
|
|
|
}
|