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

File diff suppressed because one or more lines are too long

View File

@ -2368,7 +2368,6 @@ table.fixed {
height: 4px; height: 4px;
margin-top: 8px; margin-top: 8px;
margin-left: 7px; margin-left: 7px;
position: absolute;
background-image: url(../images/sort.gif); background-image: url(../images/sort.gif);
background-repeat: no-repeat; background-repeat: no-repeat;
} }
@ -2386,7 +2385,6 @@ th.sortable a,
th.sorted a { th.sorted a {
display: block; display: block;
overflow: hidden; overflow: hidden;
position: relative;
padding: 7px 7px 8px; padding: 7px 7px 8px;
} }
@ -2403,13 +2401,13 @@ th.sorted a span {
th.sorted.asc .sorting-indicator, th.sorted.asc .sorting-indicator,
th.desc:hover span.sorting-indicator { th.desc:hover span.sorting-indicator {
display: inline; display: block;
background-position: 0 0; background-position: 0 0;
} }
th.sorted.desc .sorting-indicator, th.sorted.desc .sorting-indicator,
th.asc:hover span.sorting-indicator { th.asc:hover span.sorting-indicator {
display: inline; display: block;
background-position: -7px 0; 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 // Any rtl stylesheets that don't have a .dev version for ltr
$no_suffix = array( 'farbtastic' ); $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( 'ie', "/wp-admin/css/ie$suffix.css", array(), '20111119' );
$styles->add_data( 'ie', 'conditional', 'lte IE 7' ); $styles->add_data( 'ie', 'conditional', 'lte IE 7' );