jbxl-workflow
Version:
流程图
42 lines (41 loc) • 1.18 kB
CSS
.full-width-message {
width: 100% ;
height: 32px;
margin: 0 ;
/*left: 0 !important;*/
right: 0 ;
padding: 0 ;
position: fixed ;
bottom: 16px ;
/*
Element Plus 的 Message 组件默认样式是:
- 使用 top 属性将消息定位在顶部 - 通过 transform 做位置调整
所以才会写这个top: auto的样式,目的就是覆盖掉elmessage本来的样式
*/
top: auto ;
z-index: 1999 ;
border: none ;
background: none ;
}
.top-full-width-message {
z-index: 9999999 ;
}
.el-select-dropdown__item.is-disabled {
/*width: 100% !important;*/
background-color: transparent ;
/*height: 32px !important;*/
/*flex: 1;*/
}
.el-radio__input.is-disabled {
background: transparent ;
}
.el-radio.is-disabled {
background: transparent ;
}
.el-select-dropdown__item.is-disabled .is-disabled {
background-color: transparent ;
}
/* 确保消息内容也是100%宽度 */
.full-width-message .el-message__content {
width: 100%;
}