Changeset 35234
- Timestamp:
- 10/17/2015 12:44:12 AM (9 years ago)
- Location:
- trunk/src/wp-admin
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/css/list-tables.css
r35151 r35234 989 989 990 990 /* Positioning */ 991 .inline-edit-row h4 { 992 margin: .2em 0; 993 padding: 0; 991 992 /* Needs higher specificity for the padding */ 993 #the-list .inline-edit-row .inline-edit-legend { 994 margin: 0; 995 padding: 0.2em 0.5em 0; 994 996 line-height: 2.5; 995 } 997 font-weight: 600; 998 } 999 1000 #the-list #bulk-edit.inline-edit-row .inline-edit-legend { 1001 padding: 0.2em 0.5em; 1002 } 1003 996 1004 .inline-edit-row fieldset span.title, 997 1005 .inline-edit-row fieldset span.checkbox-title { … … 1083 1091 1084 1092 /* Styling */ 1085 .inline-edit-row h4{1093 .inline-edit-row .inline-edit-legend { 1086 1094 text-transform: uppercase; 1087 1095 } -
trunk/src/wp-admin/includes/class-wp-posts-list-table.php
r35223 r35234 1316 1316 ?>" style="display: none"><td colspan="<?php echo $this->get_column_count(); ?>" class="colspanchange"> 1317 1317 1318 <fieldset class="inline-edit-col-left"><div class="inline-edit-col"> 1319 <h4><?php echo $bulk ? __( 'Bulk Edit' ) : __( 'Quick Edit' ); ?></h4> 1318 <fieldset class="inline-edit-col-left"> 1319 <legend class="inline-edit-legend"><?php echo $bulk ? __( 'Bulk Edit' ) : __( 'Quick Edit' ); ?></legend> 1320 <div class="inline-edit-col"> 1320 1321 <?php 1321 1322 -
trunk/src/wp-admin/includes/class-wp-terms-list-table.php
r34383 r35234 550 550 <tr id="inline-edit" class="inline-edit-row" style="display: none"><td colspan="<?php echo $this->get_column_count(); ?>" class="colspanchange"> 551 551 552 <fieldset> <div class="inline-edit-col">553 < h4><?php _e( 'Quick Edit' ); ?></h4>554 552 <fieldset> 553 <legend class="inline-edit-legend"><?php _e( 'Quick Edit' ); ?></legend> 554 <div class="inline-edit-col"> 555 555 <label> 556 556 <span class="title"><?php _ex( 'Name', 'term name' ); ?></span>
Note: See TracChangeset
for help on using the changeset viewer.