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


Built from https://develop.svn.wordpress.org/trunk@35771


git-svn-id: http://core.svn.wordpress.org/trunk@35735 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Aaron Jorbin 2015-12-04 23:13:24 +00:00
parent 9ea3f9f676
commit c589ceb880
5 changed files with 11 additions and 7 deletions

View File

@ -877,8 +877,9 @@ p.pagenav {
.row-actions {
color: #ddd;
font-size: 13px;
visibility: hidden;
padding: 2px 0 0;
position: relative;
right: -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 */

View File

@ -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 */

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -4,7 +4,7 @@
*
* @global string $wp_version
*/
$wp_version = '4.4-RC1-35770';
$wp_version = '4.4-RC1-35771';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.