You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Aug 14, 2019. It is now read-only.
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.
The text was updated successfully, but these errors were encountered:
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.
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
andfocusout
to switch the off-screen CSS relative position tostatic
. Not sure how to implement a similar behavior in React.The text was updated successfully, but these errors were encountered: