2017-07-03 19:09:28 -04:00
|
|
|
.toast {
|
|
|
|
max-width: $toast-max-width;
|
2019-02-07 17:32:05 -05:00
|
|
|
@include font-size($toast-font-size);
|
2019-01-20 16:38:29 -05:00
|
|
|
color: $toast-color;
|
2017-07-03 19:09:28 -04: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 07:53:01 -05:00
|
|
|
opacity: 0;
|
2018-12-19 06:43:51 -05:00
|
|
|
@include border-radius($toast-border-radius);
|
2017-07-03 19:09:28 -04:00
|
|
|
|
2018-12-12 08:23:10 -05:00
|
|
|
&:not(:last-child) {
|
|
|
|
margin-bottom: $toast-padding-x;
|
2017-07-03 19:09:28 -04:00
|
|
|
}
|
|
|
|
|
2018-12-06 07:53:01 -05:00
|
|
|
&.showing {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
|
2018-09-19 01:00:22 -04:00
|
|
|
&.show {
|
|
|
|
display: block;
|
2018-12-06 07:53:01 -05:00
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.hide {
|
|
|
|
display: none;
|
2018-09-19 01:00:22 -04:00
|
|
|
}
|
2018-08-23 12:31:25 -04:00
|
|
|
}
|
|
|
|
|
2017-07-03 19:09:28 -04: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 07:29:01 -04:00
|
|
|
@include border-top-radius(subtract($toast-border-radius, $toast-border-width));
|
2017-07-03 19:09:28 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.toast-body {
|
|
|
|
padding: $toast-padding-x; // apply to both vertical and horizontal
|
|
|
|
}
|