当前位置: 首页 > 工具软件 > Glossy Button > 使用案例 >

更改element button 按钮颜色

舒赞
2023-12-01

在全局的index.scss里面改

//显示时按钮样式
.el-button--inblack{ //需要更改的按钮类型
  background: #060606 !important;
  border-color: #060606 !important;
  color: #fff !important;

//移入时按钮样式
  &:hover {
        &:not(.is-disabled) {
          background: #706e6e !important;
          border-color: #706e6e !important;
          color: #FFF !important;
        }
    }
}
//禁用时按钮样式
.el-button--inblack.is-disabled {
  background: #706e6e !important;
  border-color: #706e6e !important;
  color: #FFF !important;
}
 类似资料: