Skip to:
Content

BuddyPress.org

Changeset 2621


Ignore:
Timestamp:
02/08/2010 12:12:04 PM (17 years ago)
Author:
apeatling
Message:

Fixes #1811

Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/bp-core/bp-core-adminbar.php

    r2591 r2621  
    198198
    199199                        echo '<li>';
    200                         echo bp_core_fetch_avatar( array( 'item_id' => $author->user_id, 'email' => $author->user_email, 'width' => 25, 'height' => 25 ) ) ;
    201                         echo '<a href="' . bp_core_get_user_domain( $author->user_id, $author->user_nicename, $author->user_login ) . '">' . $author->display_name . '</a>';
    202                         echo '</a>';
     200                        echo '<a href="' . bp_core_get_user_domain( $author->user_id, $author->user_nicename, $author->user_login ) . '">';
     201                        echo bp_core_fetch_avatar( array( 'item_id' => $author->user_id, 'email' => $author->user_email, 'width' => 15, 'height' => 15 ) ) ;
     202                        echo ' ' . $author->display_name . '</a>';
    203203                        echo '<div class="admin-bar-clear"></div>';
    204204                        echo '</li>';
  • trunk/bp-themes/bp-default/_inc/css/adminbar.css

    r2610 r2621  
    7474        font-weight: bold;
    7575        font-size: 11px;
    76         padding: 3px 8px;
     76        padding: 5px 8px;
    7777        margin: 0;
    7878        text-decoration: none;
    7979        color: #fff;
    8080}
     81        body#bp-default #admin-bar-logo { padding: 2px 8px; }
    8182
    8283/*******************/
     
    202203}
    203204
    204 #wp-admin-bar ul.author-list li {
    205         padding: 10px;
    206         height: 30px;
    207 }
     205#wp-admin-bar ul.author-list li a { height: 17px; }
    208206
    209207#wp-admin-bar ul li#bp-adminbar-notifications-menu a span {
Note: See TracChangeset for help on using the changeset viewer.