mirror of https://github.com/ElemeFE/element
99 lines
1.8 KiB
SCSS
99 lines
1.8 KiB
SCSS
@import "mixins/mixins";
|
|
@import "common/var";
|
|
|
|
@include b(notification) {
|
|
display: flex;
|
|
width: $--notification-width;
|
|
padding: $--notification-padding;
|
|
border-radius: $--notification-radius;
|
|
box-sizing: border-box;
|
|
border: 1px solid $--notification-border-color;
|
|
position: fixed;
|
|
background-color: $--color-white;
|
|
box-shadow: $--notification-shadow;
|
|
transition: opacity .3s, transform .3s, left .3s, right .3s, top 0.4s, bottom .3s;
|
|
overflow: hidden;
|
|
|
|
&.right {
|
|
right: 16px;
|
|
}
|
|
|
|
&.left {
|
|
left: 16px;
|
|
}
|
|
|
|
@include e(group) {
|
|
margin-left: $--notification-group-margin;
|
|
}
|
|
|
|
@include e(title) {
|
|
font-weight: bold;
|
|
font-size: $--notification-title-font-size;
|
|
color: $--notification-title-color;
|
|
margin: 0;
|
|
}
|
|
|
|
@include e(content) {
|
|
font-size: $--notification-font-size;
|
|
line-height: 21px;
|
|
margin: 6px 0 0 0;
|
|
color: $--notification-color;
|
|
text-align: justify;
|
|
|
|
p {
|
|
margin: 0;
|
|
}
|
|
}
|
|
|
|
@include e(icon) {
|
|
height: $--notification-icon-size;
|
|
width: $--notification-icon-size;
|
|
font-size: $--notification-icon-size;
|
|
}
|
|
|
|
@include e(closeBtn) {
|
|
position: absolute;
|
|
top: 18px;
|
|
right: 15px;
|
|
cursor: pointer;
|
|
color: $--notification-close-color;
|
|
font-size: $--notification-close-font-size;
|
|
|
|
&:hover {
|
|
color: $--notification-close-hover-color;
|
|
}
|
|
}
|
|
|
|
.el-icon-success {
|
|
color: $--notification-success-color;
|
|
}
|
|
|
|
.el-icon-error {
|
|
color: $--notification-danger-color;
|
|
}
|
|
|
|
.el-icon-info {
|
|
color: $--notification-info-color;
|
|
}
|
|
|
|
.el-icon-warning {
|
|
color: $--notification-warning-color;
|
|
}
|
|
}
|
|
|
|
.el-notification-fade-enter {
|
|
&.right {
|
|
right: 0;
|
|
transform: translateX(100%);
|
|
}
|
|
|
|
&.left {
|
|
left: 0;
|
|
transform: translateX(-100%);
|
|
}
|
|
}
|
|
|
|
.el-notification-fade-leave-active {
|
|
opacity: 0;
|
|
}
|