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:
parent
9ea3f9f676
commit
c589ceb880
|
@ -877,8 +877,9 @@ p.pagenav {
|
||||||
.row-actions {
|
.row-actions {
|
||||||
color: #ddd;
|
color: #ddd;
|
||||||
font-size: 13px;
|
font-size: 13px;
|
||||||
visibility: hidden;
|
|
||||||
padding: 2px 0 0;
|
padding: 2px 0 0;
|
||||||
|
position: relative;
|
||||||
|
right: -9999em;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* ticket #34150 */
|
/* ticket #34150 */
|
||||||
|
@ -891,11 +892,12 @@ p.pagenav {
|
||||||
color: #000;
|
color: #000;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.no-js .row-actions,
|
||||||
tr:hover .row-actions,
|
tr:hover .row-actions,
|
||||||
.mobile .row-actions,
|
.mobile .row-actions,
|
||||||
.row-actions.visible,
|
.row-actions.visible,
|
||||||
div.comment-item:hover .row-actions {
|
div.comment-item:hover .row-actions {
|
||||||
visibility: visible;
|
position: static;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* deprecated */
|
/* deprecated */
|
||||||
|
|
|
@ -877,8 +877,9 @@ p.pagenav {
|
||||||
.row-actions {
|
.row-actions {
|
||||||
color: #ddd;
|
color: #ddd;
|
||||||
font-size: 13px;
|
font-size: 13px;
|
||||||
visibility: hidden;
|
|
||||||
padding: 2px 0 0;
|
padding: 2px 0 0;
|
||||||
|
position: relative;
|
||||||
|
left: -9999em;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* ticket #34150 */
|
/* ticket #34150 */
|
||||||
|
@ -891,11 +892,12 @@ p.pagenav {
|
||||||
color: #000;
|
color: #000;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.no-js .row-actions,
|
||||||
tr:hover .row-actions,
|
tr:hover .row-actions,
|
||||||
.mobile .row-actions,
|
.mobile .row-actions,
|
||||||
.row-actions.visible,
|
.row-actions.visible,
|
||||||
div.comment-item:hover .row-actions {
|
div.comment-item:hover .row-actions {
|
||||||
visibility: visible;
|
position: static;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* deprecated */
|
/* deprecated */
|
||||||
|
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -4,7 +4,7 @@
|
||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @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.
|
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||||
|
|
Loading…
Reference in New Issue