Changeset 62097
- Timestamp:
- 03/24/2026 05:56:12 AM (4 days ago)
- Location:
- trunk/src/wp-admin
- Files:
-
- 2 edited
-
css/nav-menus.css (modified) (3 diffs)
-
includes/nav-menu.php (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/css/nav-menus.css
r61682 r62097 376 376 377 377 /* Add Menu Item Boxes */ 378 .postbox .howto input, 379 .customlinkdiv .menu-item-textbox, 380 .customlinkdiv .error-message { 378 .postbox .howto input { 381 379 width: 180px; 382 380 float: right; 383 }384 385 .customlinkdiv .error-message {386 clear: right;387 381 } 388 382 … … 478 472 } 479 473 480 .customlinkdiv label, 474 .customlinkdiv .menu-item-textbox { 475 width: 100%; 476 } 477 481 478 .nav-menus-php .howto span { 482 479 float: left; … … 877 874 } 878 875 876 .button-controls-customlinkdiv { 877 justify-content: flex-end; 878 } 879 879 880 /* =Media Queries 880 881 -------------------------------------------------------------- */ -
trunk/src/wp-admin/includes/nav-menu.php
r61454 r62097 364 364 <input type="hidden" value="custom" name="menu-item[<?php echo $_nav_menu_placeholder; ?>][menu-item-type]" /> 365 365 <p id="menu-item-url-wrap" class="wp-clearfix"> 366 <label class="howto"for="custom-menu-item-url"><?php _e( 'URL' ); ?></label>366 <label for="custom-menu-item-url"><?php _e( 'URL' ); ?></label> 367 367 <input id="custom-menu-item-url" name="menu-item[<?php echo $_nav_menu_placeholder; ?>][menu-item-url]" 368 368 type="text"<?php wp_nav_menu_disabled_check( $nav_menu_selected_id ); ?> … … 373 373 374 374 <p id="menu-item-name-wrap" class="wp-clearfix"> 375 <label class="howto"for="custom-menu-item-name"><?php _e( 'Link Text' ); ?></label>375 <label for="custom-menu-item-name"><?php _e( 'Link Text' ); ?></label> 376 376 <input id="custom-menu-item-name" name="menu-item[<?php echo $_nav_menu_placeholder; ?>][menu-item-title]" 377 377 type="text"<?php wp_nav_menu_disabled_check( $nav_menu_selected_id ); ?> … … 380 380 </p> 381 381 382 <p class="button-controls wp-clearfix">382 <p class="button-controls button-controls-customlinkdiv"> 383 383 <span class="add-to-menu"> 384 384 <input id="submit-customlinkdiv" name="add-custom-menu-item" … … 821 821 </div><!-- /.tabs-panel --> 822 822 823 <p class="button-controls wp-clearfix" data-items-type="<?php echo esc_attr( "posttype-{$post_type_name}" ); ?>">823 <p class="button-controls" data-items-type="<?php echo esc_attr( "posttype-{$post_type_name}" ); ?>"> 824 824 <span class="list-controls hide-if-no-js"> 825 825 <input type="checkbox"<?php wp_nav_menu_disabled_check( $nav_menu_selected_id ); ?> … … 1116 1116 </div><!-- /.tabs-panel --> 1117 1117 1118 <p class="button-controls wp-clearfix" data-items-type="<?php echo esc_attr( "taxonomy-{$taxonomy_name}" ); ?>">1118 <p class="button-controls" data-items-type="<?php echo esc_attr( "taxonomy-{$taxonomy_name}" ); ?>"> 1119 1119 <span class="list-controls hide-if-no-js"> 1120 1120 <input type="checkbox"<?php wp_nav_menu_disabled_check( $nav_menu_selected_id ); ?>
Note: See TracChangeset
for help on using the changeset viewer.