Changeset 8451

Show
Ignore:
Timestamp:
07/25/08 04:34:41 (3 months ago)
Author:
iammattthomas
Message:

de-squish 'in response to' column

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • branches/crazyhorse/wp-admin/edit-comments.php

    r8450 r8451  
    203203    <th scope="col" class="comment-column"><?php _e('Comment') ?></th> 
    204204    <th scope="col" class="author-column"><?php _e('Author') ?></th> 
    205     <th scope="col"><?php _e('Comment Submitted') ?></th> 
    206     <th scope="col"><?php _e('In Response To This Post') ?></th> 
     205    <th scope="col" class="date-column"><?php _e('Comment Submitted') ?></th> 
     206    <th scope="col" class="response-column"><?php _e('In Response To This Post') ?></th> 
    207207  </tr> 
    208208</thead> 
  • branches/crazyhorse/wp-admin/includes/template.php

    r8450 r8451  
    810810        <?php endif; //current_user_can?>     
    811811    </td> 
    812     <td><?php comment_date(__('Y/m/d \a\t g:ia')); ?></td> 
     812    <td class="date-column"><?php comment_date(__('Y/m/d \a\t g:ia')); ?></td> 
    813813<?php if ( 'single' !== $mode ) : ?> 
    814     <td
     814    <td class="response-column"
    815815    "<?php echo $post_link ?>" <?php echo sprintf('(%s comments)', $post->comment_count); ?><br/> 
    816816    <?php echo get_the_time(__('Y/m/d \a\t g:ia')); ?> 
  • branches/crazyhorse/wp-admin/wp-admin.css

    r8450 r8451  
    512512 
    513513.author-column { 
     514    width: 20%; 
     515} 
     516 
     517.response-column { 
    514518    width: 20%; 
    515519}