Is there a way to highlight the boundary of a table row when hovering over it? Something like this:
https://i.sstatic.net/PbQSR.png
I attempted to use CSS with the following code:
.ant-table-tbody>tr.ant-table-row:hover>td, .ant-table-tbody>tr>td.ant-table-cell-row-hover{
background: #fafafa;
color: #091E42
}
.theme-dark .ant-table-tbody>tr.ant-table-row:hover>td, .ant-table-tbody>tr>td.ant-table-cell-row-hover{
background:#242424;
color: #fff;
border: 1px solid #CDD6E0 !important;
}
However, the highlighting appears between columns as well: https://i.sstatic.net/C3CVY.png
Any suggestions on how I can adjust the CSS for this?