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:
parent
5452769a3e
commit
0c58e7b1a9
File diff suppressed because one or more lines are too long
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
|
@ -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' );
|
||||
|
|
Loading…
Reference in New Issue