Fix keyboard accessibility for row actions in list tables. Restore the CSS part of [25592], accidentally reverted in [26072].
fixes #26145. Built from https://develop.svn.wordpress.org/trunk@26324 git-svn-id: http://core.svn.wordpress.org/trunk@26227 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
8d5b038aa1
commit
5f5c95a5b6
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -129,8 +129,6 @@ ul#adminmenu > li.current > a.current:after {
|
||||||
border-left-color: #eee;
|
border-left-color: #eee;
|
||||||
}
|
}
|
||||||
|
|
||||||
#the-comment-list .comment-item p.row-actions,
|
|
||||||
.plugins .row-actions-visible,
|
|
||||||
.row-actions {
|
.row-actions {
|
||||||
color: #ddd;
|
color: #ddd;
|
||||||
}
|
}
|
||||||
|
|
File diff suppressed because one or more lines are too long
|
@ -129,8 +129,6 @@ ul#adminmenu > li.current > a.current:after {
|
||||||
border-right-color: #eee;
|
border-right-color: #eee;
|
||||||
}
|
}
|
||||||
|
|
||||||
#the-comment-list .comment-item p.row-actions,
|
|
||||||
.plugins .row-actions-visible,
|
|
||||||
.row-actions {
|
.row-actions {
|
||||||
color: #ddd;
|
color: #ddd;
|
||||||
}
|
}
|
||||||
|
|
File diff suppressed because one or more lines are too long
|
@ -6670,7 +6670,7 @@ h2 .nav-tab {
|
||||||
list-style-type: disc;
|
list-style-type: disc;
|
||||||
}
|
}
|
||||||
|
|
||||||
.plugins .row-actions-visible {
|
.plugins .row-actions {
|
||||||
font-size: 13px;
|
font-size: 13px;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
}
|
}
|
||||||
|
@ -6701,12 +6701,12 @@ h2 .nav-tab {
|
||||||
}
|
}
|
||||||
|
|
||||||
.plugins .second,
|
.plugins .second,
|
||||||
.plugins .row-actions-visible {
|
.plugins .row-actions {
|
||||||
padding: 0 0 5px;
|
padding: 0 0 5px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.plugins .update .second,
|
.plugins .update .second,
|
||||||
.plugins .update .row-actions-visible {
|
.plugins .update .row-actions {
|
||||||
padding-bottom: 0;
|
padding-bottom: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -7776,15 +7776,14 @@ p.pagenav {
|
||||||
padding: 2px 0 0;
|
padding: 2px 0 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.mobile .row-actions {
|
|
||||||
visibility: visible;
|
|
||||||
}
|
|
||||||
|
|
||||||
tr:hover .row-actions,
|
tr:hover .row-actions,
|
||||||
|
.mobile .row-actions,
|
||||||
|
.row-actions.visible,
|
||||||
div.comment-item:hover .row-actions {
|
div.comment-item:hover .row-actions {
|
||||||
visibility: visible;
|
visibility: visible;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* deprecated */
|
||||||
.row-actions-visible {
|
.row-actions-visible {
|
||||||
padding: 2px 0 0;
|
padding: 2px 0 0;
|
||||||
}
|
}
|
||||||
|
|
File diff suppressed because one or more lines are too long
|
@ -6674,7 +6674,7 @@ h2 .nav-tab {
|
||||||
list-style-type: disc;
|
list-style-type: disc;
|
||||||
}
|
}
|
||||||
|
|
||||||
.plugins .row-actions-visible {
|
.plugins .row-actions {
|
||||||
font-size: 13px;
|
font-size: 13px;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
}
|
}
|
||||||
|
@ -6705,12 +6705,12 @@ h2 .nav-tab {
|
||||||
}
|
}
|
||||||
|
|
||||||
.plugins .second,
|
.plugins .second,
|
||||||
.plugins .row-actions-visible {
|
.plugins .row-actions {
|
||||||
padding: 0 0 5px;
|
padding: 0 0 5px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.plugins .update .second,
|
.plugins .update .second,
|
||||||
.plugins .update .row-actions-visible {
|
.plugins .update .row-actions {
|
||||||
padding-bottom: 0;
|
padding-bottom: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -7780,15 +7780,14 @@ p.pagenav {
|
||||||
padding: 2px 0 0;
|
padding: 2px 0 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.mobile .row-actions {
|
|
||||||
visibility: visible;
|
|
||||||
}
|
|
||||||
|
|
||||||
tr:hover .row-actions,
|
tr:hover .row-actions,
|
||||||
|
.mobile .row-actions,
|
||||||
|
.row-actions.visible,
|
||||||
div.comment-item:hover .row-actions {
|
div.comment-item:hover .row-actions {
|
||||||
visibility: visible;
|
visibility: visible;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* deprecated */
|
||||||
.row-actions-visible {
|
.row-actions-visible {
|
||||||
padding: 2px 0 0;
|
padding: 2px 0 0;
|
||||||
}
|
}
|
||||||
|
|
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue