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

git-svn-id: https://develop.svn.wordpress.org/trunk@19400 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Jon Cave 2011-11-22 17:11:06 +00:00
parent 700f2b4099
commit 045df49a8c
3 changed files with 4 additions and 6 deletions

File diff suppressed because one or more lines are too long

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;
}

View File

@ -433,7 +433,7 @@ function wp_default_styles( &$styles ) {
// Any rtl stylesheets that don't have a .dev version for ltr
$no_suffix = array( 'farbtastic' );
$styles->add( 'wp-admin', "/wp-admin/css/wp-admin$suffix.css", array(), '20111122b' );
$styles->add( 'wp-admin', "/wp-admin/css/wp-admin$suffix.css", array(), '20111122c' );
$styles->add( 'ie', "/wp-admin/css/ie$suffix.css", array(), '20111119' );
$styles->add_data( 'ie', 'conditional', 'lte IE 7' );