修改ant-design-vue的table 表格鼠标滑动的行样式背景颜色
程序员文章站
2022-06-07 22:01:54
...
/*有固定行的ant-design-vue 表格滑动样式*/
.ant-table-fixed .ant-table-row-hover {
background: #eef1f6 !important;
}
.ant-table-fixed .ant-table-row-hover > td {
background: #eef1f6 !important;
}
/*没有固定行的表格个样式*/
.ant-table-tbody > tr:hover:not(.ant-table-expanded-row) > td {
background-color: #f1f6fd !important;
}
.ant-table-body .ant-table-row-hover {
background: #f1f6fd !important;
}
.ant-table-body .ant-table-row-hover > td {
background: #f1f6fd !important;
}
这一篇是教如何去获取样式