From 6825c7226e776de7412637c908025bc886038d6e Mon Sep 17 00:00:00 2001 From: Aaron Jorbin Date: Fri, 4 Dec 2015 23:12:57 +0000 Subject: [PATCH] Make comment screen row actions focusable In [34504], tabbing through row actions on comments that lacked links was broken. This restores the desired behavior and ensures that the row actions can be seen by no-js users. Second Permanent Committer sign off was by WonderBoyMusic See #15520 Fixes #34791 Props afercia, azaozz git-svn-id: https://develop.svn.wordpress.org/trunk@35771 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-admin/css/list-tables.css | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/wp-admin/css/list-tables.css b/src/wp-admin/css/list-tables.css index 6c32b99c71..f13d9599f5 100644 --- a/src/wp-admin/css/list-tables.css +++ b/src/wp-admin/css/list-tables.css @@ -877,8 +877,9 @@ p.pagenav { .row-actions { color: #ddd; font-size: 13px; - visibility: hidden; padding: 2px 0 0; + position: relative; + left: -9999em; } /* ticket #34150 */ @@ -891,11 +892,12 @@ p.pagenav { color: #000; } +.no-js .row-actions, tr:hover .row-actions, .mobile .row-actions, .row-actions.visible, div.comment-item:hover .row-actions { - visibility: visible; + position: static; } /* deprecated */