el-button更改选中后的默认颜色
设置按钮颜色
·
先统一设置按钮颜色type="primary"
点击后将颜色改为橘色效果图:
修改样式代码如下:
.el-button--primary.is-active,
.el-button--primary:active {
background: rgb(230, 162, 60);
border-color: rgb(230, 162, 60);
color: #fff;
}
.el-button--primary:focus,
.el-button--primary:hover {
background: rgb(230, 162, 60);
border-color: rgb(230, 162, 60);
color: #fff;
}
更多推荐
已为社区贡献2条内容
所有评论(0)