程序员

Element-UI 样式修改 覆盖

2022-09-18  本文已影响0人  蜂子阁先生

例如要修改的样式为

.el-input.is-disabled .el-input__inner {
    background-color: #F5F7FA;
    border-color: #E4E7ED;
    color: #C0C4CC;
    cursor: not-allowed;
}
<style>
  /* 修改elementUI-switch组件 disabled样式 */
.el-input.is-disabled .el-input__inner {
    /* background-color: #143567 !important; */
    border-color: #E4E7ED;
    color: #000000;
    cursor: unset !important;
}
</style>
上一篇 下一篇

猜你喜欢

热点阅读