naive-ui/styles/Alert.scss
2019-10-24 18:04:31 +08:00

74 lines
1.9 KiB
SCSS

@import './mixins/mixins.scss';
@import './themes/vars.scss';
@mixin alert-type-mixin ($type) {
@include m($type + '-type') {
background-color: map-get($--alert-background-color, $type);
box-shadow: inset 0 0 0 1.2px map-get($--alert-border-color, $type);
@include e(icon) {
@include b(icon) {
path {
fill: map-get($--alert-icon-color, $type);
}
}
}
@include b(alert-body) {
@include e(title) {
color: map-get($--alert-title-text-color, $type);
}
@include e(content) {
color: map-get($--alert-content-text-color, $type);
}
}
}
}
@include themes-mixin {
@include b(alert) {
@include once {
border-radius: 6px;
position: relative;
transition: background-color .3s $default-cubic-bezier;
@include e(icon) {
position: absolute;
left: 15px;
top: 15px;
align-items: center;
justify-content: center;
width: 19px;
height: 19px;
@include b(icon) {
transition: color .3s $default-cubic-bezier;
margin-left: -2px;
margin-top: -2px;
font-size: 23px;
}
}
@include b(alert-body) {
padding: 15px 19px 15px 47px;
@include e(title) {
transition: color .3s $default-cubic-bezier;
font-size: 16px;
line-height: 19px;
margin-bottom: 9px;
font-weight: 700;
}
@include e(content) {
transition: color .3s $default-cubic-bezier;
font-size: 14px;
}
}
@include m(no-icon) {
@include b(alert-body) {
padding-left: 19px;
}
}
}
@include alert-type-mixin('default');
@include alert-type-mixin('success');
@include alert-type-mixin('info');
@include alert-type-mixin('error');
@include alert-type-mixin('warning');
}
}