Row actions not revealed when using a keyboard to navigate content
The row actions should get visible when using a keyboard to navigate content and focus gets into the row actions region.
Currently on WordPress this is achieved using jQuery focusin and focusout to switch the off-screen CSS relative position to static. Not sure how to implement a similar behavior in React.
Can this be done in CSS rather than in JS? Given that we're controlling CSS behaviour, moving it there would be better. I assume there must be a good reason for not just using :focus
The current behaviour seems to be that whenever the cell has focus, row actions are shown, right?
Can't be done with just CSS because when tabbing backwards (Shift+Tab) there's no CSS selector that allows to target an ancestor of the focused row actions links.