Make WordPress Core


Ignore:
Timestamp:
11/17/2008 06:01:00 PM (17 years ago)
Author:
azaozz
Message:

CSS fixes and improvements, also IE7 and some IE6 fixes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/includes/template.php

    r9716 r9733  
    709709    $posts_columns['tags'] = _c('Tags|media column header');
    710710    $posts_columns['parent'] = _c('Attached to|media column header');
    711     //$posts_columns['comments'] = '<div class="vers"><img alt="Comments" src="images/comment-grey-bubble.png" /></div>';
    712     $posts_columns['comments'] = __('Comments');
     711    $posts_columns['comments'] = '<div class="vers"><img alt="Comments" src="images/comment-grey-bubble.png" /></div>';
     712    //$posts_columns['comments'] = __('Comments');
    713713    $posts_columns['date'] = _c('Date|media column header');
    714714    $posts_columns = apply_filters('manage_media_columns', $posts_columns);
     
    832832    $hidden = (array) get_user_option( "manage-$type-columns-hidden" );
    833833    $styles = array();
    834     $styles['tag']['posts'] = 'width: 90px;';
    835     $styles['link-category']['links'] = 'width: 90px;';
    836     $styles['category']['posts'] = 'width: 90px;';
    837     $styles['link']['visible'] = 'text-align: center;';
     834//  $styles['tag']['posts'] = 'width: 90px;';
     835//  $styles['link-category']['links'] = 'width: 90px;';
     836//  $styles['category']['posts'] = 'width: 90px;';
     837//  $styles['link']['visible'] = 'text-align: center;';
    838838
    839839    foreach ( $columns as $column_key => $column_display_name ) {
     
    19781978                echo "<td $attributes><strong>"; comment_author(); echo '</strong><br />';
    19791979                if ( !empty($author_url) )
    1980                     echo "<a href='$author_url'>$author_url_display</a><br />";
     1980                    echo "<a title='$author_url' href='$author_url'>$author_url_display</a><br />";
    19811981                if ( current_user_can( 'edit_post', $post->ID ) ) {
    19821982                    if ( !empty($comment->comment_author_email) ) {
     
    20392039
    20402040    <div id="edithead" style="display:none;">
    2041         <div id="edittitle"><?php _e('Edit Comment'); ?></div>
    2042 
    20432041        <div class="inside">
    20442042        <label for="author"><?php _e('Name') ?></label>
Note: See TracChangeset for help on using the changeset viewer.