Restore bottom padding in plugin rows. fixes #15547.
git-svn-id: https://develop.svn.wordpress.org/trunk@16745 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
d7ddf41809
commit
2c44ffcc57
File diff suppressed because one or more lines are too long
@ -3785,10 +3785,8 @@ input.button-highlighted,
|
|||||||
padding-right: 12px;
|
padding-right: 12px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.plugins .second td,
|
.plugins .second, .plugins .row-actions-visible {
|
||||||
.plugins .second th {
|
padding: 0 0 5px;
|
||||||
border-top: 0 none;
|
|
||||||
padding: 0 7px 5px;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.plugins-php .widefat tfoot th,
|
.plugins-php .widefat tfoot th,
|
||||||
|
@ -390,7 +390,7 @@ class WP_Plugins_List_Table extends WP_List_Table {
|
|||||||
$checkbox_id = md5($plugin_data['Name']) . "_checkbox";
|
$checkbox_id = md5($plugin_data['Name']) . "_checkbox";
|
||||||
$checkbox = in_array( $status, array( 'mustuse', 'dropins' ) ) ? '' : "<input type='checkbox' name='checked[]' value='" . esc_attr( $plugin_file ) . "' id='" . $checkbox_id . "' /><label class='screen-reader-text' for='" . $checkbox_id . "' >" . __('Select') . " " . $plugin_data['Name'] . "</label>";
|
$checkbox = in_array( $status, array( 'mustuse', 'dropins' ) ) ? '' : "<input type='checkbox' name='checked[]' value='" . esc_attr( $plugin_file ) . "' id='" . $checkbox_id . "' /><label class='screen-reader-text' for='" . $checkbox_id . "' >" . __('Select') . " " . $plugin_data['Name'] . "</label>";
|
||||||
if ( 'dropins' != $context ) {
|
if ( 'dropins' != $context ) {
|
||||||
$description = '<p>' . $plugin_data['Description'] . '</p>';
|
$description = '<p>' . ( $plugin_data['Description'] ? $plugin_data['Description'] : ' ' ) . '</p>';
|
||||||
$plugin_name = $plugin_data['Name'];
|
$plugin_name = $plugin_data['Name'];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -485,7 +485,7 @@ function wp_default_styles( &$styles ) {
|
|||||||
// Any rtl stylesheets that don't have a .dev version for ltr
|
// Any rtl stylesheets that don't have a .dev version for ltr
|
||||||
$no_suffix = array( 'farbtastic' );
|
$no_suffix = array( 'farbtastic' );
|
||||||
|
|
||||||
$styles->add( 'wp-admin', "/wp-admin/css/wp-admin$suffix.css", array(), '20101202' );
|
$styles->add( 'wp-admin', "/wp-admin/css/wp-admin$suffix.css", array(), '20101206' );
|
||||||
|
|
||||||
$styles->add( 'ie', "/wp-admin/css/ie$suffix.css", array(), '20101102' );
|
$styles->add( 'ie', "/wp-admin/css/ie$suffix.css", array(), '20101102' );
|
||||||
$styles->add_data( 'ie', 'conditional', 'lte IE 7' );
|
$styles->add_data( 'ie', 'conditional', 'lte IE 7' );
|
||||||
|
Loading…
Reference in New Issue
Block a user