List Tables: Ensure that sorting indicators have layout when cell widths are being calculated.

See #27743.

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


git-svn-id: http://core.svn.wordpress.org/trunk@34287 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Scott Taylor 2015-09-19 16:15:24 +00:00
parent 6dc9ffc090
commit 60fadd7bdc
5 changed files with 11 additions and 9 deletions

View File

@ -434,7 +434,8 @@ table.media .column-title .filename {
}
.sorting-indicator {
display: none;
display: block;
visibility: hidden;
width: 10px;
height: 4px;
margin-top: 8px;
@ -614,7 +615,7 @@ th.desc:hover span.sorting-indicator,
th.desc a:focus span.sorting-indicator,
th.asc:hover span.sorting-indicator,
th.asc a:focus span.sorting-indicator {
display: block;
visibility: visible;
}
/* Bulk Actions */

View File

@ -434,7 +434,8 @@ table.media .column-title .filename {
}
.sorting-indicator {
display: none;
display: block;
visibility: hidden;
width: 10px;
height: 4px;
margin-top: 8px;
@ -614,7 +615,7 @@ th.desc:hover span.sorting-indicator,
th.desc a:focus span.sorting-indicator,
th.asc:hover span.sorting-indicator,
th.asc a:focus span.sorting-indicator {
display: block;
visibility: visible;
}
/* Bulk Actions */

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-alpha-34322';
$wp_version = '4.4-alpha-34323';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.