Revert r18875. Sorting arrows should be displayed when the screen is too narrow. See #15993.

git-svn-id: http://svn.automattic.com/wordpress/trunk@19400 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
duck_
2011-11-22 17:11:06 +00:00
parent 5452769a3e
commit 0c58e7b1a9
3 changed files with 4 additions and 6 deletions

View File

@@ -2368,7 +2368,6 @@ table.fixed {
height: 4px;
margin-top: 8px;
margin-left: 7px;
position: absolute;
background-image: url(../images/sort.gif);
background-repeat: no-repeat;
}
@@ -2386,7 +2385,6 @@ th.sortable a,
th.sorted a {
display: block;
overflow: hidden;
position: relative;
padding: 7px 7px 8px;
}
@@ -2403,13 +2401,13 @@ th.sorted a span {
th.sorted.asc .sorting-indicator,
th.desc:hover span.sorting-indicator {
display: inline;
display: block;
background-position: 0 0;
}
th.sorted.desc .sorting-indicator,
th.asc:hover span.sorting-indicator {
display: inline;
display: block;
background-position: -7px 0;
}