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:
Sergey Biryukov 2013-11-22 08:20:10 +00:00
parent 8d5b038aa1
commit 5f5c95a5b6
11 changed files with 19 additions and 25 deletions

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

View File

@ -129,8 +129,6 @@ ul#adminmenu > li.current > a.current:after {
border-left-color: #eee;
}
#the-comment-list .comment-item p.row-actions,
.plugins .row-actions-visible,
.row-actions {
color: #ddd;
}

File diff suppressed because one or more lines are too long

View File

@ -129,8 +129,6 @@ ul#adminmenu > li.current > a.current:after {
border-right-color: #eee;
}
#the-comment-list .comment-item p.row-actions,
.plugins .row-actions-visible,
.row-actions {
color: #ddd;
}

File diff suppressed because one or more lines are too long

View File

@ -6670,7 +6670,7 @@ h2 .nav-tab {
list-style-type: disc;
}
.plugins .row-actions-visible {
.plugins .row-actions {
font-size: 13px;
padding: 0;
}
@ -6701,12 +6701,12 @@ h2 .nav-tab {
}
.plugins .second,
.plugins .row-actions-visible {
.plugins .row-actions {
padding: 0 0 5px;
}
.plugins .update .second,
.plugins .update .row-actions-visible {
.plugins .update .row-actions {
padding-bottom: 0;
}
@ -7776,15 +7776,14 @@ p.pagenav {
padding: 2px 0 0;
}
.mobile .row-actions {
visibility: visible;
}
tr:hover .row-actions,
.mobile .row-actions,
.row-actions.visible,
div.comment-item:hover .row-actions {
visibility: visible;
}
/* deprecated */
.row-actions-visible {
padding: 2px 0 0;
}

File diff suppressed because one or more lines are too long

View File

@ -6674,7 +6674,7 @@ h2 .nav-tab {
list-style-type: disc;
}
.plugins .row-actions-visible {
.plugins .row-actions {
font-size: 13px;
padding: 0;
}
@ -6705,12 +6705,12 @@ h2 .nav-tab {
}
.plugins .second,
.plugins .row-actions-visible {
.plugins .row-actions {
padding: 0 0 5px;
}
.plugins .update .second,
.plugins .update .row-actions-visible {
.plugins .update .row-actions {
padding-bottom: 0;
}
@ -7780,15 +7780,14 @@ p.pagenav {
padding: 2px 0 0;
}
.mobile .row-actions {
visibility: visible;
}
tr:hover .row-actions,
.mobile .row-actions,
.row-actions.visible,
div.comment-item:hover .row-actions {
visibility: visible;
}
/* deprecated */
.row-actions-visible {
padding: 2px 0 0;
}

File diff suppressed because one or more lines are too long