去除a-table当鼠标移入时背景颜色的变化
table tbody tr:hover > td {
background: transparent !important;
}
.ant-table-wrapper .ant-table {
.ant-table-tbody > tr > td.ant-table-cell-row-hover {
background: transparent !important;
transition: none !important;
}
.ant-table-tbody > tr > td.ant-table-cell-row-hover:hover {
background: transparent !important;
transition: none !important;
}
}