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

See #27743.


git-svn-id: https://develop.svn.wordpress.org/trunk@34323 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Scott Taylor 2015-09-19 16:14:59 +00:00
parent 3cf5d40b9d
commit 1ca6eee748

View File

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