Ticket #3194: 3194-2.patch
| File 3194-2.patch, 3.1 KB (added by , 15 years ago) |
|---|
-
bp-default/_inc/css/default.css
814 814 ul.button-nav li.current a { 815 815 font-weight: bold; 816 816 } 817 a.rejected, a.rejected:hover { 818 color: #888888; 819 } 820 a.accepted { 821 } 817 822 818 819 823 /* > AJAX Loaders 820 824 -------------------------------------------------------------- */ 821 825 -
bp-default/_inc/global.js
744 744 button.fadeOut( 100, function() { 745 745 if ( jq(this).hasClass('accept') ) { 746 746 action_div.children('a.reject').hide(); 747 jq(this).html( BP_DTheme. accepted ).fadeIn(50);747 jq(this).html( BP_DTheme.friend_accepted ).fadeIn(50); 748 748 jq(this).addClass('accepted'); 749 /*Locate User's Profile URL and set this new link to it. This is dependant on using the default theme as of 1.3*/ 750 var friend_url = jq(this).parents('ul#friend-list li').find('a.member_link').attr('href'); 751 jq(this).attr('href',friend_url ); 749 752 } else { 750 753 action_div.children('a.accept').hide(); 751 754 jq(this).html( BP_DTheme.rejected ).fadeIn(50); 752 755 jq(this).addClass('rejected'); 756 jq(this).removeClass('button'); 757 jq(this).css({'text-decoration':'none','cursor':'default'}); 753 758 } 754 759 }); 755 760 } -
bp-default/functions.php
144 144 // Add words that we need to use in JS to the end of the page so they can be translated and still used. 145 145 $params = array( 146 146 'my_favs' => __( 'My Favorites', 'buddypress' ), 147 'friend_accepted' => __( 'Visit User', 'buddypress' ), 147 148 'accepted' => __( 'Accepted', 'buddypress' ), 148 149 'rejected' => __( 'Rejected', 'buddypress' ), 149 150 'show_all_comments' => __( 'Show all comments for this thread', 'buddypress' ), -
bp-default/members/single/friends/requests.php
21 21 <ul id="friend-list" class="item-list" role="main"> 22 22 <?php while ( bp_members() ) : bp_the_member(); ?> 23 23 24 <li id="friendship-<?php bp_friend_friendship_id() ?>" >24 <li id="friendship-<?php bp_friend_friendship_id() ?>" class="friendship_list_item"> 25 25 <div class="item-avatar"> 26 26 <a href="<?php bp_member_link() ?>"><?php bp_member_avatar() ?></a> 27 27 </div> 28 28 29 29 <div class="item"> 30 <div class="item-title"><a href="<?php bp_member_link() ?>"><?php bp_member_name() ?></a></div>30 <div class="item-title"><a class="member_link" href="<?php bp_member_link() ?>"><?php bp_member_name() ?></a></div> 31 31 <div class="item-meta"><span class="activity"><?php bp_member_last_active() ?></span></div> 32 32 </div> 33 33
![(please configure the [header_logo] section in trac.ini)](/chrome/site/your_project_logo.png)