mirror of
https://github.com/mdbootstrap/mdb-ui-kit.git
synced 2024-11-14 05:37:01 +03:00
f45e39bc1c
fixes #855
62 lines
1.1 KiB
SCSS
62 lines
1.1 KiB
SCSS
// Support for SnackbarJS plugin
|
|
// https://github.com/FezVrasta/snackbarjs
|
|
|
|
// scss-lint:disable IdSelector
|
|
|
|
#snackbar-container {
|
|
position: fixed;
|
|
bottom: 0;
|
|
left: 0;
|
|
z-index: 99999;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
width: 100%;
|
|
}
|
|
|
|
.snackbar {
|
|
display: inline-block;
|
|
min-width: $bmd-snackbar-min-width-sm;
|
|
max-height: 0;
|
|
opacity: 0;
|
|
transition: transform .25s cubic-bezier(0,0,.2,1), opacity 0s .25s, max-height .25s;
|
|
transform: translateY(100%);
|
|
|
|
&.toast .snackbar-content {
|
|
border-radius: 10rem;
|
|
}
|
|
}
|
|
|
|
.snackbar-content {
|
|
display: block;
|
|
padding: $bmd-snackbar-padding;
|
|
margin-top: 3px;
|
|
font-size: .9rem;
|
|
color: $bmd-snackbar-color;
|
|
background-color: $bmd-snackbar-bg;
|
|
border-radius: 2px;
|
|
|
|
.btn {
|
|
margin-bottom: 0;
|
|
}
|
|
}
|
|
|
|
.snackbar.snackbar-opened {
|
|
max-height: 100px;
|
|
opacity: 1;
|
|
transition: transform .25s cubic-bezier(0,0,.2,1), opacity 0s 0s, max-height .25s;
|
|
transform: translateY(0%);
|
|
}
|
|
|
|
@include media-breakpoint-up(sm) {
|
|
#snackbar-container {
|
|
right: 1rem;
|
|
left: 1rem;
|
|
width: 100%;
|
|
}
|
|
|
|
.snackbar {
|
|
min-width: $bmd-snackbar-min-width;
|
|
}
|
|
}
|