Table/rows display a border when clicked.
Even after carefully searching using Chrome dev tools, I cannot find the CSS styles that are the culprits.
Any pointers on how to disable/override?
Thank you
How on earth did I miss this issue...
This is a focus outline. You can disable it via see if you want:
:focus {
outline: 0;
}
But you should define an alternate focus style if you do this- in order not to harm accessibility.
Most helpful comment
How on earth did I miss this issue...
This is a focus outline. You can disable it via see if you want:
But you should define an alternate focus style if you do this- in order not to harm accessibility.