Make WordPress Core

Ticket #36967: 36967.patch

File 36967.patch, 2.1 KB (added by afercia, 10 years ago)
  • src/wp-admin/css/edit.css

     
    644644        max-width: 100%;
    645645}
    646646
    647 #poststuff .inside label.spam,
    648 #poststuff .inside label.deleted {
    649         color: red;
    650 }
    651 
    652 #poststuff .inside label.waiting {
    653         color: orange;
    654 }
    655 
    656 #poststuff .inside label.approved {
    657         color: green;
    658 }
    659 
    660647.ie8 #poststuff .inside #parent_id,
    661648.ie8 #poststuff .inside #page_template {
    662649        width: 250px;
  • src/wp-admin/edit-form-comment.php

     
    8282
    8383<fieldset class="misc-pub-section misc-pub-comment-status" id="comment-status-radio">
    8484<legend class="screen-reader-text"><?php _e( 'Comment status' ); ?></legend>
    85 <label class="approved"><input type="radio"<?php checked( $comment->comment_approved, '1' ); ?> name="comment_status" value="1" /><?php _ex( 'Approved', 'comment status' ); ?></label><br />
    86 <label class="waiting"><input type="radio"<?php checked( $comment->comment_approved, '0' ); ?> name="comment_status" value="0" /><?php _ex( 'Pending', 'comment status' ); ?></label><br />
    87 <label class="spam"><input type="radio"<?php checked( $comment->comment_approved, 'spam' ); ?> name="comment_status" value="spam" /><?php _ex( 'Spam', 'comment status' ); ?></label>
     85<label><input type="radio"<?php checked( $comment->comment_approved, '1' ); ?> name="comment_status" value="1" /><?php _ex( 'Approved', 'comment status' ); ?></label><br />
     86<label><input type="radio"<?php checked( $comment->comment_approved, '0' ); ?> name="comment_status" value="0" /><?php _ex( 'Pending', 'comment status' ); ?></label><br />
     87<label><input type="radio"<?php checked( $comment->comment_approved, 'spam' ); ?> name="comment_status" value="spam" /><?php _ex( 'Spam', 'comment status' ); ?></label>
    8888</fieldset>
    8989
    9090<div class="misc-pub-section curtime misc-pub-curtime">