Ticket #34289: 34289.2.patch
File 34289.2.patch, 2.7 KB (added by , 9 years ago) |
---|
-
src/wp-admin/css/list-tables.css
988 988 } 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; 997 font-weight: 600; 995 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 { 998 1006 margin: 0; … … 1082 1090 } 1083 1091 1084 1092 /* Styling */ 1085 .inline-edit-row h4{1093 .inline-edit-row .inline-edit-legend { 1086 1094 text-transform: uppercase; 1087 1095 } 1088 1096 -
src/wp-admin/includes/class-wp-posts-list-table.php
1315 1315 echo $bulk ? " bulk-edit-row bulk-edit-row-$hclass bulk-edit-{$screen->post_type}" : " quick-edit-row quick-edit-row-$hclass inline-edit-{$screen->post_type}"; 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 1322 1323 if ( post_type_supports( $screen->post_type, 'title' ) ) : -
src/wp-admin/includes/class-wp-terms-list-table.php
549 549 <form method="get"><table style="display: none"><tbody id="inlineedit"> 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> 557 557 <span class="input-text-wrap"><input type="text" name="name" class="ptitle" value="" /></span>