Quick/Bulk Edit: Fix padding in term quick edit.
Fix missing padding on quick edit for taxonomy terms following accessibility changes in [53096]. Props afercia. Fixes #35483. Built from https://develop.svn.wordpress.org/trunk@53109 git-svn-id: http://core.svn.wordpress.org/trunk@52698 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
b79a708ab6
commit
bd9478d512
|
@ -656,6 +656,7 @@ class WP_Terms_List_Table extends WP_List_Table {
|
||||||
|
|
||||||
<tr id="inline-edit" class="inline-edit-row" style="display: none">
|
<tr id="inline-edit" class="inline-edit-row" style="display: none">
|
||||||
<td colspan="<?php echo $this->get_column_count(); ?>" class="colspanchange">
|
<td colspan="<?php echo $this->get_column_count(); ?>" class="colspanchange">
|
||||||
|
<div class="inline-edit-wrapper">
|
||||||
|
|
||||||
<fieldset>
|
<fieldset>
|
||||||
<legend class="inline-edit-legend"><?php _e( 'Quick Edit' ); ?></legend>
|
<legend class="inline-edit-legend"><?php _e( 'Quick Edit' ); ?></legend>
|
||||||
|
@ -708,6 +709,7 @@ class WP_Terms_List_Table extends WP_List_Table {
|
||||||
<p class="error"></p>
|
<p class="error"></p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
</td></tr>
|
</td></tr>
|
||||||
|
|
||||||
|
|
|
@ -16,7 +16,7 @@
|
||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @global string $wp_version
|
||||||
*/
|
*/
|
||||||
$wp_version = '6.0-alpha-53108';
|
$wp_version = '6.0-alpha-53109';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||||
|
|
Loading…
Reference in New Issue