Skip to:
Content

BuddyPress.org

Changeset 3111


Ignore:
Timestamp:
06/29/2010 09:55:44 AM (15 years ago)
Author:
johnjamesjacoby
Message:

Fixes #2465 and #2475, for real this time.

Location:
branches/1.2
Files:
10 edited

Legend:

Unmodified
Added
Removed
  • branches/1.2/bp-activity.php

    r3105 r3111  
    262262function bp_activity_screen_notification_settings() {
    263263    global $bp; ?>
    264     <table class="notification-settings" id="activity-notification-settings">
     264    <table class="notification-settings zebra" id="activity-notification-settings">
    265265        <thead>
    266266            <tr>
  • branches/1.2/bp-core/bp-core-templatetags.php

    r3097 r3111  
    763763    <h4><?php _e( 'My Profile' ) ?></h4>
    764764
    765     <table class="wp-profile-fields">
     765    <table class="wp-profile-fields zebra">
    766766        <?php if ( $ud->display_name ) { ?>
    767767        <tr id="wp_displayname">
  • branches/1.2/bp-friends.php

    r3069 r3111  
    142142function friends_screen_notification_settings() {
    143143    global $current_user; ?>
    144     <table class="notification-settings" id="friends-notification-settings">
     144    <table class="notification-settings zebra" id="friends-notification-settings">
    145145        <thead>
    146146            <tr>
  • branches/1.2/bp-groups.php

    r3082 r3111  
    961961function groups_screen_notification_settings() {
    962962    global $current_user; ?>
    963     <table class="notification-settings" id="groups-notification-settings">
     963    <table class="notification-settings zebra" id="groups-notification-settings">
    964964        <thead>
    965965            <tr>
  • branches/1.2/bp-messages.php

    r3069 r3111  
    236236function messages_screen_notification_settings() {
    237237    global $current_user; ?>
    238     <table class="notification-settings" id="messages-notification-settings">
     238    <table class="notification-settings zebra" id="messages-notification-settings">
    239239        <thead>
    240240            <tr>
  • branches/1.2/bp-themes/bp-default/_inc/global.js

    r3106 r3111  
    820820    /** Alternate Highlighting ******************************************/
    821821
     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
    822830    jq('div.message-box').each( function(i) {
    823831        if ( i % 2 == 1 )
    824832            jq(this).addClass('alt');
    825833    });
    826 
    827     jq('body#bp-default table tbody tr:nth-child(even)').addClass('alt');
    828834
    829835    /** Private Messaging ******************************************/
  • branches/1.2/bp-themes/bp-default/forums/forums-loop.php

    r3093 r3111  
    1515    <?php do_action( 'bp_before_directory_forums_list' ) ?>
    1616
    17     <table class="forum">
     17    <table class="forum zebra">
    1818        <thead>
    1919            <tr>
  • branches/1.2/bp-themes/bp-default/members/single/messages/messages-loop.php

    r2502 r3111  
    1818    <?php do_action( 'bp_before_member_messages_threads' ) ?>
    1919
    20     <table id="message-threads">
     20    <table id="message-threads" class="zebra">
    2121        <?php while ( bp_message_threads() ) : bp_message_thread(); ?>
    2222
  • branches/1.2/bp-themes/bp-default/members/single/messages/notices-loop.php

    r2397 r3111  
    1818    <?php do_action( 'bp_before_notices' ) ?>
    1919
    20     <table id="message-threads">
     20    <table id="message-threads" class="zebra">
    2121        <?php while ( bp_message_threads() ) : bp_message_thread(); ?>
    2222            <tr>
  • branches/1.2/bp-themes/bp-default/members/single/profile/profile-loop.php

    r2991 r3111  
    1616                    <?php endif; ?>
    1717
    18                     <table class="profile-fields">
     18                    <table class="profile-fields zebra">
    1919                        <?php while ( bp_profile_fields() ) : bp_the_profile_field(); ?>
    2020
Note: See TracChangeset for help on using the changeset viewer.