mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-22 13:32:54 +08:00
52 lines
1.1 KiB
SCSS
52 lines
1.1 KiB
SCSS
@import "../../globals.md";
|
|
@import "./toast";
|
|
|
|
// Material Design Toast
|
|
// --------------------------------------------------
|
|
|
|
$toast-md-text-align: left !default;
|
|
$toast-md-background: #333 !default;
|
|
$toast-md-group-margin-bottom: 8px !default;
|
|
|
|
$toast-md-title-color: #fff !default;
|
|
$toast-md-title-font-size: 1.5rem !default;
|
|
$toast-md-title-padding: 19px 16px 17px !default;
|
|
|
|
|
|
ion-toast {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
z-index: $z-index-overlay;
|
|
display: block;
|
|
|
|
width: $toast-width;
|
|
height: $toast-width;
|
|
}
|
|
|
|
.toast-wrapper {
|
|
position: absolute;
|
|
right: 0;
|
|
bottom: 0;
|
|
left: 0;
|
|
z-index: $z-index-overlay-wrapper;
|
|
display: block;
|
|
|
|
margin: auto;
|
|
|
|
width: $toast-width;
|
|
max-width: $toast-max-width;
|
|
|
|
background: $toast-md-background;
|
|
|
|
transform: translate3d(0, 100%, 0);
|
|
}
|
|
|
|
.toast-message {
|
|
padding: $toast-md-title-padding;
|
|
|
|
font-size: $toast-md-title-font-size;
|
|
|
|
color: $toast-md-title-color;
|
|
}
|