修改el-input、textarea、el-checkbox的禁用状态下的颜色
//checkBox自定义禁用样式
.el-checkbox__input.is-disabled + .el-checkbox__label {
color: #808080 !important;
}
.el-checkbox__input.is-disabled.is-checked + .el-checkbox__label {
color: #1890ff !important;
}
.el-checkbox__input.is-disabled.is-checked .el-checkbox__inner {
background-color: #1890ff !important;
border-color: #1890ff !important;
}
//输入框 还有 textarea 禁用状态下颜色改变
.el-input.is-disabled .el-input__inner,.el-textarea.is-disabled .el-textarea__inner{
color: #606266 !important;
}
最简单的教养,就是适当地回避别人的难堪。