Commit 9dc8d5c6 by crushh

update: 列表多选禁用

parent cc570313
......@@ -81851,11 +81851,34 @@
margin: 0 auto;
border-radius: 18px;
}
.cell-disabled {
/**
*表格多选项禁用
*/
.cell-disabled{
pointer-events: none;
opacity: 0.8;
font-size: 0;
}
.font-size-zero{
font-size: 0;
}
\ No newline at end of file
}
.damolish .cell-disabled .el-checkbox.is-checked .el-checkbox__input:not(.is-disabled) .el-checkbox__inner{
background-color: #F7F8FA;
border-color:#C4C6CF;
}
.damolish .cell-disabled .el-checkbox .el-checkbox__input .el-checkbox__inner::after{
border-color:#C0C4CC;
}
@keyframes checkboxClick{
0% {
box-shadow: 0 0 0 3px rgba(47, 84, 237, 0.1);
background-color:#F7F8FA ;
}
100% {
box-shadow: 0 0 0 7px rgba(47, 84, 237, 0);
}
}
.damolish .cell-disabled .el-checkbox__input.is-checked:not(.is-disabled) .el-checkbox__inner {
animation: 0.5s checkboxClick;
}
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment