Prevent sorting arrows improperly wrapping on narrow columns in .widefat, props SergeyBiryukov, #15993
git-svn-id: https://develop.svn.wordpress.org/trunk@18875 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
fee1fe1b36
commit
188a2b973f
File diff suppressed because one or more lines are too long
@ -2311,6 +2311,7 @@ table.fixed {
|
||||
height: 4px;
|
||||
margin-top: 8px;
|
||||
margin-left: 7px;
|
||||
position: absolute;
|
||||
background-image: url(../images/sort.gif);
|
||||
background-repeat: no-repeat;
|
||||
}
|
||||
@ -2328,6 +2329,7 @@ th.sortable a,
|
||||
th.sorted a {
|
||||
display: block;
|
||||
overflow: hidden;
|
||||
position: relative;
|
||||
padding: 7px 7px 8px;
|
||||
}
|
||||
|
||||
@ -2344,13 +2346,13 @@ th.sorted a span {
|
||||
|
||||
th.sorted.asc .sorting-indicator,
|
||||
th.desc:hover span.sorting-indicator {
|
||||
display: block;
|
||||
display: inline;
|
||||
background-position: 0 0;
|
||||
}
|
||||
|
||||
th.sorted.desc .sorting-indicator,
|
||||
th.asc:hover span.sorting-indicator {
|
||||
display: block;
|
||||
display: inline;
|
||||
background-position: -7px 0;
|
||||
}
|
||||
|
||||
|
@ -431,7 +431,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(), '20111003' );
|
||||
$styles->add( 'wp-admin', "/wp-admin/css/wp-admin$suffix.css", array(), '20111003a' );
|
||||
|
||||
$styles->add( 'ie', "/wp-admin/css/ie$suffix.css", array(), '20110919' );
|
||||
$styles->add_data( 'ie', 'conditional', 'lte IE 7' );
|
||||
|
Loading…
Reference in New Issue
Block a user