Changeset 31272
- Timestamp:
- 01/23/2015 06:17:25 PM (10 years ago)
- Location:
- trunk/src/wp-admin
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/css/nav-menus.css
r30695 r31272 100 100 float: left; 101 101 margin-top: 1px; 102 }103 104 .menu-edit p {105 margin: .3em 0 .6em;106 102 } 107 103 … … 217 213 } 218 214 219 .widefat td.menu-location-menus { 220 padding-bottom: 5px; 215 .widefat .menu-locations tr + tr td { 216 padding-top: 0; 217 } 218 219 .widefat .menu-locations td { 220 vertical-align: middle; 221 } 222 223 .menu-location-title label { 224 font-weight: bold; 221 225 } 222 226 -
trunk/src/wp-admin/nav-menus.php
r31200 r31272 582 582 <tbody class="menu-locations"> 583 583 <?php foreach ( $locations as $_location => $_name ) { ?> 584 <tr id="menu-locations-row">585 <td class="menu-location-title">< strong><?php echo $_name; ?></strong></td>584 <tr class="menu-locations-row"> 585 <td class="menu-location-title"><label for="locations-<?php echo $_location; ?>"><?php echo $_name; ?></label></td> 586 586 <td class="menu-location-menus"> 587 587 <select name="menu-locations[<?php echo $_location; ?>]" id="locations-<?php echo $_location; ?>"> … … 598 598 <span class="locations-edit-menu-link"> 599 599 <a href="<?php echo esc_url( add_query_arg( array( 'action' => 'edit', 'menu' => $menu_locations[$_location] ), admin_url( 'nav-menus.php' ) ) ); ?>"> 600 < ?php _ex( 'Edit', 'menu' ); ?>600 <span aria-hidden="true"><?php _ex( 'Edit', 'menu' ); ?></span><span class="screen-reader-text"><?php _e( 'Edit selected menu' ); ?></span> 601 601 </a> 602 602 </span> … … 607 607 </a> 608 608 </span> 609 </div><!-- #locations-row-links -->609 </div><!-- .locations-row-links --> 610 610 </td><!-- .menu-location-menus --> 611 </tr><!-- #menu-locations-row -->611 </tr><!-- .menu-locations-row --> 612 612 <?php } // foreach ?> 613 613 </tbody>
Note: See TracChangeset
for help on using the changeset viewer.