Make WordPress Core

Ticket #9777: 9777.2.diff

File 9777.2.diff, 2.5 KB (added by cklosows, 13 years ago)

Removing modifications to minified CSS

  • wp-admin/css/colors-classic.dev.css

     
    729729table.widefat span.spam a,
    730730#dashboard_recent_comments .delete a,
    731731#dashboard_recent_comments .trash a,
    732 #dashboard_recent_comments .spam a {
     732#dashboard_recent_comments .spam a,
     733#edittag .delete a {
    733734        color: #bc0b0b;
    734735}
    735736
     
    842843table.widefat .spam a:hover,
    843844#dashboard_recent_comments .delete a:hover,
    844845#dashboard_recent_comments .trash a:hover
    845 #dashboard_recent_comments .spam a:hover {
     846#dashboard_recent_comments .spam a:hover,
     847#edittag .delete a:hover {
    846848        color: #f00;
    847849}
    848850
  • wp-admin/css/colors-fresh.dev.css

     
    710710table.widefat span.spam a,
    711711#dashboard_recent_comments .delete a,
    712712#dashboard_recent_comments .trash a,
    713 #dashboard_recent_comments .spam a {
     713#dashboard_recent_comments .spam a,
     714#edittag .delete a {
    714715        color: #bc0b0b;
    715716}
    716717
     
    888889table.widefat .spam a:hover,
    889890#dashboard_recent_comments .delete a:hover,
    890891#dashboard_recent_comments .trash a:hover
    891 #dashboard_recent_comments .spam a:hover {
     892#dashboard_recent_comments .spam a:hover,
     893#edittag .delete a:hover {
    892894        color: #f00;
    893895}
    894896
  • wp-admin/edit-tag-form.php

     
    8787
    8888do_action($taxonomy . '_edit_form', $tag, $taxonomy);
    8989
    90 submit_button( __('Update') );
     90submit_button( __('Update'), 'primary', NULL, false, NULL );
    9191?>
     92<span class="delete">
     93        <a class="delete-tag" href="<?php echo wp_nonce_url( "edit-tags.php?action=delete&taxonomy=$taxonomy&tag_ID=$tag->term_id", 'delete-tag_' . $tag->term_id ) ?>"'><?php _e( 'Delete' ); ?></a>
     94</span>
    9295</form>
    9396</div>
  • wp-admin/edit-tags.php

     
    8787
    8888        wp_delete_term( $tag_ID, $taxonomy );
    8989
     90        $location = remove_query_arg( array( 'tag_ID', 'action', '_wpnonce' ) );
    9091        $location = add_query_arg( 'message', 2, $location );
     92
    9193        wp_redirect( $location );
    9294        exit;
    9395