mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-16 02:11:48 +08:00
121 lines
2.3 KiB
SCSS
121 lines
2.3 KiB
SCSS
|
@import "mixins/mixins";
|
||
|
@import "common/var";
|
||
|
|
||
|
@include b(message) {
|
||
|
min-width: $--message-min-width;
|
||
|
box-sizing: border-box;
|
||
|
border-radius: $--border-radius-base;
|
||
|
border-width: $--border-width-base;
|
||
|
border-style: $--border-style-base;
|
||
|
border-color: $--border-color-lighter;
|
||
|
position: fixed;
|
||
|
left: 50%;
|
||
|
top: 20px;
|
||
|
transform: translateX(-50%);
|
||
|
background-color: $--message-background-color;
|
||
|
transition: opacity 0.3s, transform .4s, top 0.4s;
|
||
|
overflow: hidden;
|
||
|
padding: $--message-padding;
|
||
|
display: flex;
|
||
|
align-items: center;
|
||
|
|
||
|
@include when(center) {
|
||
|
justify-content: center;
|
||
|
}
|
||
|
|
||
|
@include when(closable) {
|
||
|
.el-message__content {
|
||
|
padding-right: 16px;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
p {
|
||
|
margin: 0;
|
||
|
}
|
||
|
|
||
|
@include m(info) {
|
||
|
.el-message__content {
|
||
|
color: $--message-info-font-color;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
@include m(success) {
|
||
|
background-color: $--color-success-lighter;
|
||
|
border-color: $--color-success-light;
|
||
|
|
||
|
.el-message__content {
|
||
|
color: $--message-success-font-color;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
@include m(warning) {
|
||
|
background-color: $--color-warning-lighter;
|
||
|
border-color: $--color-warning-light;
|
||
|
|
||
|
.el-message__content {
|
||
|
color: $--message-warning-font-color;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
@include m(error) {
|
||
|
background-color: $--color-danger-lighter;
|
||
|
border-color: $--color-danger-light;
|
||
|
|
||
|
.el-message__content {
|
||
|
color: $--message-danger-font-color;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
@include e(icon) {
|
||
|
margin-right: 10px;
|
||
|
}
|
||
|
|
||
|
@include e(content) {
|
||
|
padding: 0;
|
||
|
font-size: 14px;
|
||
|
line-height: 1;
|
||
|
&:focus {
|
||
|
outline-width: 0;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
@include e(closeBtn) {
|
||
|
position: absolute;
|
||
|
top: 50%;
|
||
|
right: 15px;
|
||
|
transform: translateY(-50%);
|
||
|
cursor: pointer;
|
||
|
color: $--message-close-icon-color;
|
||
|
font-size: $--message-close-size;
|
||
|
|
||
|
&:focus {
|
||
|
outline-width: 0;
|
||
|
}
|
||
|
&:hover {
|
||
|
color: $--message-close-hover-color;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
& .el-icon-success {
|
||
|
color: $--message-success-font-color;
|
||
|
}
|
||
|
|
||
|
& .el-icon-error {
|
||
|
color: $--message-danger-font-color;
|
||
|
}
|
||
|
|
||
|
& .el-icon-info {
|
||
|
color: $--message-info-font-color;
|
||
|
}
|
||
|
|
||
|
& .el-icon-warning {
|
||
|
color: $--message-warning-font-color;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.el-message-fade-enter,
|
||
|
.el-message-fade-leave-active {
|
||
|
opacity: 0;
|
||
|
transform: translate(-50%, -100%);
|
||
|
}
|