Hide nav menu item order arrows when JS is available and correct expanded nav menu item CSS bug.

git-svn-id: https://develop.svn.wordpress.org/trunk@18755 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Daryl Koopersmith 2011-09-22 22:33:27 +00:00
parent 1db2584cd2
commit 60c59fb4a7
4 changed files with 4 additions and 4 deletions

File diff suppressed because one or more lines are too long

View File

@ -5922,7 +5922,7 @@ a.rsswidget {
clear:both; clear:both;
line-height:1.5em; line-height:1.5em;
position:relative; position:relative;
margin-top: 13px; margin: 13px 0 0 0;
} }
.menu-item-handle { .menu-item-handle {

View File

@ -88,7 +88,7 @@ class Walker_Nav_Menu_Edit extends Walker_Nav_Menu {
<span class="item-title"><?php echo esc_html( $title ); ?></span> <span class="item-title"><?php echo esc_html( $title ); ?></span>
<span class="item-controls"> <span class="item-controls">
<span class="item-type"><?php echo esc_html( $item->type_label ); ?></span> <span class="item-type"><?php echo esc_html( $item->type_label ); ?></span>
<span class="item-order"> <span class="item-order hide-if-js">
<a href="<?php <a href="<?php
echo wp_nonce_url( echo wp_nonce_url(
add_query_arg( add_query_arg(

View File

@ -406,7 +406,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(), '20110922' ); $styles->add( 'wp-admin', "/wp-admin/css/wp-admin$suffix.css", array(), '20110922b' );
$styles->add( 'ie', "/wp-admin/css/ie$suffix.css", array(), '20110919' ); $styles->add( 'ie', "/wp-admin/css/ie$suffix.css", array(), '20110919' );
$styles->add_data( 'ie', 'conditional', 'lte IE 7' ); $styles->add_data( 'ie', 'conditional', 'lte IE 7' );