美文网首页
重写elment样式技巧

重写elment样式技巧

作者: 用技术改变世界 | 来源:发表于2021-02-25 10:09 被阅读0次

1、重写element禁用样式

.el-button.disabled.is-disabled,

.el-button.disabled.is-disabled:focus,

.el-button.disabled.is-disabled:hover {

    color: #cecece !important;

    background: none !important;

    border: 1px solid #cecece !important;

}

    <el-button v-for="(resource, index) in resources" class="disabled" type="toolbar" :disabled="resource.resourceID==='STEP_SHARE_LOCK_SUBMIT'" :key="index" @click="callMethod(resource)">

                        <i class="iconfont"></i> {{ resource.resourceTitle }}</el-button

                    >

相关文章

网友评论

      本文标题:重写elment样式技巧

      本文链接:https://www.haomeiwen.com/subject/mryyfltx.html