Changeset 3111
- Timestamp:
- 06/29/2010 09:55:44 AM (15 years ago)
- Location:
- branches/1.2
- Files:
-
- 10 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/1.2/bp-activity.php
r3105 r3111 262 262 function bp_activity_screen_notification_settings() { 263 263 global $bp; ?> 264 <table class="notification-settings " id="activity-notification-settings">264 <table class="notification-settings zebra" id="activity-notification-settings"> 265 265 <thead> 266 266 <tr> -
branches/1.2/bp-core/bp-core-templatetags.php
r3097 r3111 763 763 <h4><?php _e( 'My Profile' ) ?></h4> 764 764 765 <table class="wp-profile-fields ">765 <table class="wp-profile-fields zebra"> 766 766 <?php if ( $ud->display_name ) { ?> 767 767 <tr id="wp_displayname"> -
branches/1.2/bp-friends.php
r3069 r3111 142 142 function friends_screen_notification_settings() { 143 143 global $current_user; ?> 144 <table class="notification-settings " id="friends-notification-settings">144 <table class="notification-settings zebra" id="friends-notification-settings"> 145 145 <thead> 146 146 <tr> -
branches/1.2/bp-groups.php
r3082 r3111 961 961 function groups_screen_notification_settings() { 962 962 global $current_user; ?> 963 <table class="notification-settings " id="groups-notification-settings">963 <table class="notification-settings zebra" id="groups-notification-settings"> 964 964 <thead> 965 965 <tr> -
branches/1.2/bp-messages.php
r3069 r3111 236 236 function messages_screen_notification_settings() { 237 237 global $current_user; ?> 238 <table class="notification-settings " id="messages-notification-settings">238 <table class="notification-settings zebra" id="messages-notification-settings"> 239 239 <thead> 240 240 <tr> -
branches/1.2/bp-themes/bp-default/_inc/global.js
r3106 r3111 820 820 /** Alternate Highlighting ******************************************/ 821 821 822 jq('body#bp-default table.zebra tbody tr').mouseover( function() { 823 jq(this).addClass('over'); 824 }).mouseout( function() { 825 jq(this).removeClass('over'); 826 }); 827 828 jq('body#bp-default table.zebra tbody tr:odd').addClass('alt'); 829 822 830 jq('div.message-box').each( function(i) { 823 831 if ( i % 2 == 1 ) 824 832 jq(this).addClass('alt'); 825 833 }); 826 827 jq('body#bp-default table tbody tr:nth-child(even)').addClass('alt');828 834 829 835 /** Private Messaging ******************************************/ -
branches/1.2/bp-themes/bp-default/forums/forums-loop.php
r3093 r3111 15 15 <?php do_action( 'bp_before_directory_forums_list' ) ?> 16 16 17 <table class="forum ">17 <table class="forum zebra"> 18 18 <thead> 19 19 <tr> -
branches/1.2/bp-themes/bp-default/members/single/messages/messages-loop.php
r2502 r3111 18 18 <?php do_action( 'bp_before_member_messages_threads' ) ?> 19 19 20 <table id="message-threads" >20 <table id="message-threads" class="zebra"> 21 21 <?php while ( bp_message_threads() ) : bp_message_thread(); ?> 22 22 -
branches/1.2/bp-themes/bp-default/members/single/messages/notices-loop.php
r2397 r3111 18 18 <?php do_action( 'bp_before_notices' ) ?> 19 19 20 <table id="message-threads" >20 <table id="message-threads" class="zebra"> 21 21 <?php while ( bp_message_threads() ) : bp_message_thread(); ?> 22 22 <tr> -
branches/1.2/bp-themes/bp-default/members/single/profile/profile-loop.php
r2991 r3111 16 16 <?php endif; ?> 17 17 18 <table class="profile-fields ">18 <table class="profile-fields zebra"> 19 19 <?php while ( bp_profile_fields() ) : bp_the_profile_field(); ?> 20 20
Note: See TracChangeset
for help on using the changeset viewer.