Changeset 4287
- Timestamp:
- 04/24/2011 09:34:40 PM (14 years ago)
- Location:
- trunk
- Files:
-
- 12 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/bp-activity/bp-activity-screens.php
r4263 r4287 141 141 $reply = 'yes'; ?> 142 142 143 <table class="notification-settings zebra" id="activity-notification-settings">143 <table class="notification-settings" id="activity-notification-settings"> 144 144 <thead> 145 145 <tr> -
trunk/bp-core/deprecated/1.3.php
r4137 r4287 243 243 <h4><?php _e( 'My Profile' ) ?></h4> 244 244 245 <table class="wp-profile-fields zebra">245 <table class="wp-profile-fields"> 246 246 247 247 <?php if ( $ud->display_name ) : ?> -
trunk/bp-friends/bp-friends-screens.php
r3917 r4287 63 63 ?> 64 64 65 <table class="notification-settings zebra" id="friends-notification-settings">65 <table class="notification-settings" id="friends-notification-settings"> 66 66 <thead> 67 67 <tr> -
trunk/bp-groups/bp-groups-screens.php
r4219 r4287 791 791 ?> 792 792 793 <table class="notification-settings zebra" id="groups-notification-settings">793 <table class="notification-settings" id="groups-notification-settings"> 794 794 <thead> 795 795 <tr> -
trunk/bp-messages/bp-messages-screens.php
r3870 r4287 112 112 ?> 113 113 114 <table class="notification-settings zebra" id="messages-notification-settings">114 <table class="notification-settings" id="messages-notification-settings"> 115 115 <thead> 116 116 <tr> -
trunk/bp-themes/bp-default/_inc/global.js
r4285 r4287 854 854 }); 855 855 856 /** Alternate Highlighting ******************************************/857 858 jq('body#bp-default table.zebra tbody tr').mouseover( function() {859 jq(this).addClass('over');860 }).mouseout( function() {861 jq(this).removeClass('over');862 });863 864 jq('body#bp-default table.zebra tbody tr:odd').addClass('alt');865 866 jq('div.message-box').each( function(i) {867 if ( i % 2 == 1 )868 jq(this).addClass('alt');869 });870 871 856 /** Private Messaging ******************************************/ 872 857 … … 906 891 jq("div.new-message").hide().slideDown( 200, function() { 907 892 jq('div.new-message').removeClass('new-message'); 908 });909 910 jq('div.message-box').each( function(i) {911 jq(this).removeClass('alt');912 if ( i % 2 != 1 )913 jq(this).addClass('alt');914 893 }); 915 894 } -
trunk/bp-themes/bp-default/forums/forums-loop.php
r4009 r4287 34 34 <?php do_action( 'bp_before_directory_forums_list' ); ?> 35 35 36 <table class="forum zebra">36 <table class="forum"> 37 37 <thead> 38 38 <tr> -
trunk/bp-themes/bp-default/members/single/messages/messages-loop.php
r4136 r4287 18 18 <?php do_action( 'bp_before_member_messages_threads' ) ?> 19 19 20 <table id="message-threads" class=" zebramessages-notices">20 <table id="message-threads" class="messages-notices"> 21 21 <?php while ( bp_message_threads() ) : bp_message_thread(); ?> 22 22 23 <tr id="m-<?php bp_message_thread_id() ?>" <?php if ( bp_message_thread_has_unread() ) : ?> class="unread"<?php else: ?> class="read"<?php endif; ?>>23 <tr id="m-<?php bp_message_thread_id() ?>" class="<?php bp_message_css_class(); ?><?php if ( bp_message_thread_has_unread() ) : ?> unread"<?php else: ?> read"<?php endif; ?>> 24 24 <td width="1%" class="thread-count"> 25 25 <span class="unread-count"><?php bp_message_thread_unread_count() ?></span> -
trunk/bp-themes/bp-default/members/single/messages/notices-loop.php
r3771 r4287 18 18 <?php do_action( 'bp_before_notices' ) ?> 19 19 20 <table id="message-threads" class=" zebramessages-notices">20 <table id="message-threads" class="messages-notices"> 21 21 <?php while ( bp_message_threads() ) : bp_message_thread(); ?> 22 <tr id="notice-<?php bp_message_notice_id() ?>" >22 <tr id="notice-<?php bp_message_notice_id() ?>" class="<?php bp_message_css_class(); ?>"> 23 23 <td width="1%"> 24 24 </td> -
trunk/bp-themes/bp-default/members/single/messages/single.php
r3771 r4287 18 18 <?php while ( bp_thread_messages() ) : bp_thread_the_message(); ?> 19 19 20 <div class="message-box ">20 <div class="message-box <?php bp_the_thread_message_alt_class(); ?>"> 21 21 22 22 <div class="message-metadata"> -
trunk/bp-themes/bp-default/members/single/profile/profile-loop.php
r3806 r4287 14 14 <?php endif; ?> 15 15 16 <table class="profile-fields zebra">16 <table class="profile-fields"> 17 17 <?php while ( bp_profile_fields() ) : bp_the_profile_field(); ?> 18 18 -
trunk/bp-themes/bp-default/members/single/profile/profile-wp.php
r4016 r4287 8 8 <h4><?php bp_is_my_profile() ? _e( 'My Profile' ) : printf( __( "%s's Profile", 'buddypress' ), bp_get_displayed_user_fullname() ); ?></h4> 9 9 10 <table class="wp-profile-fields zebra">10 <table class="wp-profile-fields"> 11 11 12 12 <?php if ( $ud->display_name ) : ?>
Note: See TracChangeset
for help on using the changeset viewer.