修改antd中table hover颜色
2022-03-16 本文已影响0人
_静夜听雨_
项目中用到,记录一下更改 antd 中 table 行 hover颜色
.ant-table-tbody > tr:hover:not(.ant-table-expanded-row) > td {
background-color: #ccc;
}
.ant-table-body .ant-table-row-hover{
background: #ccc;
}
.ant-table-body .ant-table-row-hover>td{
background: #ccc;
}