element饿了么ui表格选中后高亮颜色修改
element
A Vue.js 2.0 UI Toolkit for Web
项目地址:https://gitcode.com/gh_mirrors/eleme/element
免费下载资源
·
element表格单选选中状态下背景色太浅,为了让选中的数据更突出一些,只能自定义颜色去覆盖默认的颜色,我的表格是斑马纹的,可能非斑马的还不适用
.el-table--striped .el-table__body tr.el-table__row--striped.current-row td,
.el-table__body tr.current-row>td {
background-color: #ffec8b;
}
如果觉得鼠标滑过高亮显示的颜色也太淡,也可以替换一下
.el-table--enable-row-hover .el-table__body tr:hover>td{
background-color: #9FB6CD;
}
饿了么版本2.4.11,发现上面的代码不管用了,下面的是新的
.el-table--striped .el-table__body tr.el-table__row--striped.current-row td,
.el-table__body tr.current-row > td {
background-color: #a0cfff;
}
.el-table--striped .el-table__body tr.hover-row.el-table__row--striped > td,
.el-table__body tr.hover-row > td {
background-color: #d9ecff !important;
}
GitHub 加速计划 / eleme / element
54.06 K
14.63 K
下载
A Vue.js 2.0 UI Toolkit for Web
最近提交(Master分支:3 个月前 )
c345bb45
7 个月前
a07f3a59
* Update transition.md
* Update table.md
* Update transition.md
* Update table.md
* Update transition.md
* Update table.md
* Update table.md
* Update transition.md
* Update popover.md 7 个月前
更多推荐
已为社区贡献4条内容
所有评论(0)