Child Rows - the expand icon is hidden when mouse is over row
Child Rows - the expand icon is hidden when mouse is over row

Link to test case: https://datatables.net/release-datatables/examples/api/row_details.html
Debugger code (debug.datatables.net):
Error messages shown:
Description of problem:
Hello
I do the same as the example for parent/child rows. But when I mouse over a row, the expand (+) icon is hidden. Do you know why?
After I expand the row, it show the minus icon. When I mouse over the row with minus icon, the icon is not hidden.
Thank you
This discussion has been closed.
Answers
sorry, i found out that because I used
.table-hover tr:hover td {
background: #f4f9fc;
}
Is there a way that I can change the background and use the child row?
Thanks
I think you will want to use the CSS :not() selector, something like this:
Kevin
thank you