赞
踩
1.表格内容区域
.el-table__body-wrapper {
background-color: var(--panelBgColor);
}
2.表头右侧滚动条上面的区域
.el-table .el-table__cell.gutter {
background: var(--tableHeadBg);
}
3.表格行斑马纹样式
// el-table添加
:row-class-name="tableRowClassName"
// methods添加
tableRowClassName ({ row, rowIndex }) {
if (rowIndex % 2 == 0) {
return "even";
} else {
return "odd";
}
},
.el-table__body-wrapper .even {
}
.el-table__body-wrapper .odd {
}
4.去掉表头底部边框线(在深色主题下使用,浅色系一般不用)
.el-table td.el-table__cell, .el-table th.el-table__cell.is-leaf {
border: none !important;
}
5.隐藏表格底部线(在深色主题下使用,浅色系一般不用)
.el-table td.el-table__cell, .el-table th.el-table__cell.is-leaf {
border: none !important;
}
6.表格内容区域的每一行
.el-table td.el-table__cell {
border-bottom: 1px solid var(--progressBar);
}
7.鼠标移入某行改变颜色
.el-table--enable-row-hover .el-table__body tr:hover > td {
background-color: var(--detail_active_bg) !important;
}
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。