Make WordPress Core

Ticket #13220: nav_menu_tweaks.diff

File nav_menu_tweaks.diff, 1.5 KB (added by ptahdunbar, 14 years ago)

changes "text" to "label" for the custom links metabox. corrects the alignment for list-controls links

  • wp-admin/includes/nav-menu.php

     
    443443
    444444                        <p id="menu-item-name-wrap">
    445445                                <label class="howto" for="custom-menu-item-name">
    446                                         <span><?php _e('Text'); ?></span>
     446                                        <span><?php _e('Label'); ?></span>
    447447                                        <input id="custom-menu-item-name" name="menu-item[<?php echo $_nav_menu_placeholder; ?>][menu-item-title]" type="text" class="regular-text menu-item-textbox input-with-default-title" title="<?php esc_attr_e('Menu Item'); ?>" />
    448448                                </label>
    449449                        </p>
     
    626626
    627627
    628628                <p class="button-controls">
    629                         <span class="lists-controls">
     629                        <span class="list-controls">
    630630                                <a href="<?php
    631631                                        echo add_query_arg(
    632632                                                array(
     
    794794                </div><!-- /.tabs-panel -->
    795795
    796796                <p class="button-controls">
    797                         <span class="lists-controls">
     797                        <span class="list-controls">
    798798                                <a href="<?php
    799799                                        echo add_query_arg(
    800800                                                array(
  • wp-admin/css/nav-menu.dev.css

     
    147147#cancel-save:hover { background-color: #FF0000; color: #fff; }
    148148
    149149/* Button Secondary Actions */
    150 .list-controls { float: left; }
     150.list-controls { float: left; margin-top: 5px; }
    151151.add-to-menu {
    152152        float: right;
    153153}