修改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;
}

posted @ 2024-11-26 10:24  码弄  阅读(3)  评论(0编辑  收藏  举报