2020-05-19 16:53:54 +00:00
|
|
|
.toast {
|
2022-11-04 15:49:41 +00:00
|
|
|
// scss-docs-start toast-css-vars
|
|
|
|
--#{$prefix}toast-zindex: #{$zindex-toast};
|
|
|
|
--#{$prefix}toast-padding-x: #{$toast-padding-x};
|
|
|
|
--#{$prefix}toast-padding-y: #{$toast-padding-y};
|
|
|
|
--#{$prefix}toast-spacing: #{$toast-spacing};
|
|
|
|
--#{$prefix}toast-max-width: #{$toast-max-width};
|
|
|
|
@include rfs($toast-font-size, --#{$prefix}toast-font-size);
|
|
|
|
--#{$prefix}toast-color: #{$toast-color};
|
|
|
|
--#{$prefix}toast-bg: #{$toast-background-color};
|
|
|
|
--#{$prefix}toast-border-width: #{$toast-border-width};
|
|
|
|
--#{$prefix}toast-border-color: #{$toast-border-color};
|
|
|
|
--#{$prefix}toast-border-radius: #{$toast-border-radius};
|
|
|
|
--#{$prefix}toast-box-shadow: #{$toast-box-shadow};
|
|
|
|
--#{$prefix}toast-header-color: #{$toast-header-color};
|
|
|
|
--#{$prefix}toast-header-bg: #{$toast-header-background-color};
|
|
|
|
--#{$prefix}toast-header-border-color: #{$toast-header-border-color};
|
|
|
|
// scss-docs-end toast-css-vars
|
|
|
|
|
|
|
|
width: var(--#{$prefix}toast-max-width);
|
2021-07-07 11:12:38 +00:00
|
|
|
max-width: 100%;
|
2022-11-04 15:49:41 +00:00
|
|
|
@include font-size(var(--#{$prefix}toast-font-size));
|
|
|
|
color: var(--#{$prefix}toast-color);
|
2021-07-07 11:12:38 +00:00
|
|
|
pointer-events: auto;
|
2022-11-04 15:49:41 +00:00
|
|
|
background-color: var(--#{$prefix}toast-bg);
|
2020-05-19 16:53:54 +00:00
|
|
|
background-clip: padding-box;
|
2022-11-04 15:49:41 +00:00
|
|
|
border: var(--#{$prefix}toast-border-width) solid var(--#{$prefix}toast-border-color);
|
|
|
|
box-shadow: var(--#{$prefix}toast-box-shadow);
|
|
|
|
@include border-radius(var(--#{$prefix}toast-border-radius));
|
2020-05-19 16:53:54 +00:00
|
|
|
|
2022-11-04 15:49:41 +00:00
|
|
|
&.showing {
|
2021-07-07 11:12:38 +00:00
|
|
|
opacity: 0;
|
2020-05-19 16:53:54 +00:00
|
|
|
}
|
|
|
|
|
2022-11-04 15:49:41 +00:00
|
|
|
&:not(.show) {
|
2021-07-07 11:12:38 +00:00
|
|
|
display: none;
|
2020-05-19 16:53:54 +00:00
|
|
|
}
|
2021-07-07 11:12:38 +00:00
|
|
|
}
|
2020-05-19 16:53:54 +00:00
|
|
|
|
2021-07-07 11:12:38 +00:00
|
|
|
.toast-container {
|
2022-11-04 15:49:41 +00:00
|
|
|
--#{$prefix}toast-zindex: #{$zindex-toast};
|
|
|
|
|
|
|
|
position: absolute;
|
|
|
|
z-index: var(--#{$prefix}toast-zindex);
|
2021-07-07 11:12:38 +00:00
|
|
|
width: max-content;
|
|
|
|
max-width: 100%;
|
|
|
|
pointer-events: none;
|
2020-05-19 16:53:54 +00:00
|
|
|
|
2021-07-07 11:12:38 +00:00
|
|
|
> :not(:last-child) {
|
2022-11-04 15:49:41 +00:00
|
|
|
margin-bottom: var(--#{$prefix}toast-spacing);
|
2020-05-19 16:53:54 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.toast-header {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
2022-11-04 15:49:41 +00:00
|
|
|
padding: var(--#{$prefix}toast-padding-y) var(--#{$prefix}toast-padding-x);
|
|
|
|
color: var(--#{$prefix}toast-header-color);
|
|
|
|
background-color: var(--#{$prefix}toast-header-bg);
|
2020-05-19 16:53:54 +00:00
|
|
|
background-clip: padding-box;
|
2022-11-04 15:49:41 +00:00
|
|
|
border-bottom: var(--#{$prefix}toast-border-width) solid var(--#{$prefix}toast-header-border-color);
|
|
|
|
@include border-top-radius(calc(var(--#{$prefix}toast-border-radius) - var(--#{$prefix}toast-border-width)));
|
2021-07-07 11:12:38 +00:00
|
|
|
|
|
|
|
.btn-close {
|
2022-11-04 15:49:41 +00:00
|
|
|
margin-right: calc(-.5 * var(--#{$prefix}toast-padding-x)); // stylelint-disable-line function-disallowed-list
|
|
|
|
margin-left: var(--#{$prefix}toast-padding-x);
|
2021-07-07 11:12:38 +00:00
|
|
|
}
|
2020-05-19 16:53:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.toast-body {
|
2022-11-04 15:49:41 +00:00
|
|
|
padding: var(--#{$prefix}toast-padding-x);
|
2021-07-07 11:12:38 +00:00
|
|
|
word-wrap: break-word;
|
2020-05-19 16:53:54 +00:00
|
|
|
}
|