信息提示样式

This commit is contained in:
zhaofang
2022-10-18 16:28:18 +08:00
parent 677adb94c5
commit 852dcf080f
3 changed files with 29 additions and 2 deletions

View File

@@ -420,7 +420,6 @@
.u-message{ .u-message{
font-size: 14px; font-size: 14px;
color: rgba(0,0,0,0.65); color: rgba(0,0,0,0.65);
.text{ .text{
font-size: 14px; font-size: 14px;
color: #2C68FF; color: #2C68FF;
@@ -432,6 +431,13 @@
border-color: #fff; border-color: #fff;
background-color: #fff; background-color: #fff;
box-shadow: 0px 8px 20px 0px rgba(0,35,114,0.1); box-shadow: 0px 8px 20px 0px rgba(0,35,114,0.1);
justify-content: center;
}
.el-message--success{
.el-message__content{
color: #333333;
}
} }
// boe-index // boe-index
@media screen and (max-width: 1366px){ @media screen and (max-width: 1366px){

View File

@@ -60,6 +60,27 @@
} }
.el-button--primary:active{
background: #387DF7;
border-color: #387DF7;
color: #FFF;
}
.el-button--primary:hover{
background: #387DF7;
border-color: #387DF7;
color: #FFF;
}
.el-button--primary:focus{
background: #387DF7;
border-color: #387DF7;
color: #FFF;
}
.el-button--primary:visited{
background: #387DF7;
border-color: #387DF7;
color: #FFF;
}
} }
.el-message-box__btns button:nth-child(1) { .el-message-box__btns button:nth-child(1) {
color: #387DF7; color: #387DF7;

View File

@@ -461,7 +461,7 @@ export default {
}).catch(() => { }).catch(() => {
this.$message({ this.$message({
type: 'info', type: 'info',
message: '已取消删除' message: '已取消删除',
}); });
}); });
}, },