首页 前端知识 vue3 Element Plus按钮点击之后颜色不会还原的解决方案

vue3 Element Plus按钮点击之后颜色不会还原的解决方案

2024-02-06 15:02:35 前端知识 前端哥 397 333 我要收藏

思路:Element Plus提供了样式变量,我的解决思路就是修改其样式变量。

1.新建外部样式 xxx.css

2.

加入内容:

.el-button--primary {
    --el-button-bg-color: #409eff;
    --el-button-hover-bg-color: #409eff;
}
.el-button--primary:hover {
    --el-button-hover-bg-color: #79bbff;
}

.el-button--warning.is-plain {
    --el-button-bg-color: #fdf6ec;
    --el-button-hover-text-color: #e6a23c;
    --el-button-hover-bg-color: #fdf6ec;
}
.el-button--warning.is-plain:hover {
    --el-button-hover-text-color: #fff;
    --el-button-hover-bg-color: #e6a23c;
}
.el-button--danger.is-plain {
    --el-button-bg-color: #fef0f0;
    --el-button-hover-text-color: #f56c6c;
    --el-button-hover-bg-color: #fef0f0;
}
.el-button--danger.is-plain:hover {
    --el-button-hover-text-color: #fff;
    --el-button-hover-bg-color: #f56c6c;
}
然后将xxx.css 引入到页面中。
注:如果全局引入页面的按钮不起作用,需要的单个页面中引入。
以上内容只修改部分按钮的点击效果,如需修改多个按钮,依次添加。

 

转载请注明出处或者链接地址:https://www.qianduange.cn//article/1427.html
标签
评论
会员中心 联系我 留言建议 回顶部
复制成功!