]> git.proxmox.com Git - extjs.git/blame - extjs/modern/theme-neptune/sass/src/Toast.scss
bump version to 7.0.0-4
[extjs.git] / extjs / modern / theme-neptune / sass / src / Toast.scss
CommitLineData
947f0963
TL
1/**
2 * @class Ext.Toast
3 */
4
5.#{$prefix}toast {
6 margin: $toast-margin;
7 @include border($toast-border-width $toast-border-style $toast-border-color);
8 @include box-shadow($toast-shadow);
9
10 .#{$prefix}toast-body-el {
11 color: $toast-color;
12 background-color: $toast-background-color;
13 @include font($toast-font-weight, $toast-font-size, $toast-line-height, $toast-font-family);
14 padding: $toast-padding;
15 }
16
17 .#{$prefix}big & {
18 .#{$prefix}toast-body-el {
19 @include font($toast-font-weight, $toast-font-size-big, $toast-line-height-big, $toast-font-family);
20 padding: $toast-padding-big;
21 }
22 }
23}