Make WordPress Core


Ignore:
Timestamp:
02/24/2008 02:07:51 AM (17 years ago)
Author:
ryan
Message:

Admin style tweaks from mt. fixes #5974

File:
1 edited

Legend:

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

    r6995 r6997  
    4343    $pad = str_repeat( '— ', $level );
    4444    if ( current_user_can( 'manage_categories' ) ) {
    45         $edit = "<a href='categories.php?action=edit&amp;cat_ID=$category->term_id'>". ( $name_override ? $name_override : $pad . ' ' . $category->name ) ."</a>";
     45        $edit = "<a class='row-title' href='categories.php?action=edit&amp;cat_ID=$category->term_id'>". ( $name_override ? $name_override : $pad . ' ' . $category->name ) ."</a>";
    4646        $default_cat_id = (int) get_option( 'default_category' );
    4747    } else {
     
    7171
    7272    if ( current_user_can( 'manage_categories' ) ) {
    73         $edit = "<a href='link-category.php?action=edit&amp;cat_ID=$category->term_id' class='edit'>". ( $name_override ? $name_override : $category->name ) ."</a>";
     73        $edit = "<a class='row-title' href='link-category.php?action=edit&amp;cat_ID=$category->term_id' class='edit'>". ( $name_override ? $name_override : $category->name ) ."</a>";
    7474        $default_cat_id = (int) get_option( 'default_link_category' );
    7575    } else {
     
    236236        $out .= '<tr id="tag-' . $tag->term_id . '"' . $class . '>';
    237237        $out .= '<th scope="row" class="check-column"> <input type="checkbox" name="delete_tags[]" value="' . $tag->term_id . '" /></th>';
    238         $out .= '<td><a href="edit-tags.php?action=edit&amp;tag_ID=' . $tag->term_id . '">' .
     238        $out .= '<td><strong><a class="row-title" href="edit-tags.php?action=edit&amp;tag_ID=' . $tag->term_id . '">' .
    239239            apply_filters( 'term_name', $tag->name ) . '</a></td>';
    240240
     
    300300    $posts_columns['tags'] = __('Tags');
    301301    if ( !in_array($_GET['post_status'], array('pending', 'draft', 'future')) )
    302         $posts_columns['comments'] = '<div style="text-align: center"><img alt="" src="images/comment-grey-bubble.png" /></div>';
     302        $posts_columns['comments'] = '<img class="comment-column" alt="Comments" src="images/comment-grey-bubble.png" /></div>';
    303303    $posts_columns['status'] = __('Status');
    304304    $posts_columns = apply_filters('manage_posts_columns', $posts_columns);
     
    404404            $title = __('(no title)');
    405405        ?>
    406         <td><strong><a href="page.php?action=edit&amp;post=<?php the_ID(); ?>"><?php echo $pad; echo $title ?></a></strong>
     406        <td><strong><a class="row-title" href="page.php?action=edit&amp;post=<?php the_ID(); ?>"><?php echo $pad; echo $title ?></a></strong>
    407407        <?php if ('private' == $page->post_status) _e(' &#8212; <strong>Private</strong>'); ?></td>
    408408        <?php
Note: See TracChangeset for help on using the changeset viewer.