Skip to:
Content

bbPress.org

Changeset 6253


Ignore:
Timestamp:
01/17/2017 07:26:55 AM (10 years ago)
Author:
johnjamesjacoby
Message:

Theme Compat: Improved Twenty Seventeen support:

  • Add supplemental bbpress-wrapper class to #bbpress-forums div elements
  • Remove box-shadow styling form bbPress's entry-content section links
  • Provides middle-of-the-road targeting of bbPress template content, for complex styling relationships where ID's may be too powerful and classes may not have existed previously
Location:
trunk/src
Files:
26 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/includes/common/shortcodes.php

    r6250 r6253  
    371371         * Supports 'forum_id' attribute to display the topic form for a particular
    372372         * forum. This currently has styling issues from not being wrapped in
    373          * <div id="bbpress-forums"></div> which will need to be sorted out later.
     373         * <div id="bbpress-forums" class="bbpress-wrapper"></div> which will need to be sorted out later.
    374374         *
    375375         * @since 2.0.0 bbPress (r3031)
  • trunk/src/includes/extend/buddypress/functions.php

    r6240 r6253  
    213213?>
    214214
    215         <div id="bbpress-forums">
     215        <div id="bbpress-forums" class="bbpress-wrapper">
    216216
    217217                <?php bbp_get_template_part( 'user', 'topics-created' ); ?>
     
    232232?>
    233233
    234         <div id="bbpress-forums">
     234        <div id="bbpress-forums" class="bbpress-wrapper">
    235235
    236236                <?php bbp_get_template_part( 'user', 'replies-created' ); ?>
     
    251251?>
    252252
    253         <div id="bbpress-forums">
     253        <div id="bbpress-forums" class="bbpress-wrapper">
    254254
    255255                <?php bbp_get_template_part( 'user', 'favorites' ); ?>
     
    270270?>
    271271
    272         <div id="bbpress-forums">
     272        <div id="bbpress-forums" class="bbpress-wrapper">
    273273
    274274                <?php bbp_get_template_part( 'user', 'subscriptions' ); ?>
  • trunk/src/includes/extend/buddypress/groups.php

    r6250 r6253  
    842842                bbp_set_query_name( 'bbp_single_forum' ); ?>
    843843
    844                 <div id="bbpress-forums">
     844                <div id="bbpress-forums" class="bbpress-wrapper">
    845845
    846846                        <?php switch ( $forum_action ) :
  • trunk/src/templates/default/bbpress/content-archive-forum.php

    r5770 r6253  
    1010?>
    1111
    12 <div id="bbpress-forums">
     12<div id="bbpress-forums" class="bbpress-wrapper">
    1313
    1414        <?php if ( bbp_allow_search() ) : ?>
  • trunk/src/templates/default/bbpress/content-archive-topic.php

    r5770 r6253  
    1010?>
    1111
    12 <div id="bbpress-forums">
     12<div id="bbpress-forums" class="bbpress-wrapper">
    1313
    1414        <?php if ( bbp_allow_search() ) : ?>
  • trunk/src/templates/default/bbpress/content-search.php

    r5134 r6253  
    1010?>
    1111
    12 <div id="bbpress-forums">
     12<div id="bbpress-forums" class="bbpress-wrapper">
    1313
    1414        <?php bbp_breadcrumb(); ?>
  • trunk/src/templates/default/bbpress/content-single-forum.php

    r5829 r6253  
    1010?>
    1111
    12 <div id="bbpress-forums">
     12<div id="bbpress-forums" class="bbpress-wrapper">
    1313
    1414        <?php bbp_breadcrumb(); ?>
  • trunk/src/templates/default/bbpress/content-single-reply.php

    r5770 r6253  
    1010?>
    1111
    12 <div id="bbpress-forums">
     12<div id="bbpress-forums" class="bbpress-wrapper">
    1313
    1414        <?php bbp_breadcrumb(); ?>
  • trunk/src/templates/default/bbpress/content-single-topic.php

    r5770 r6253  
    1010?>
    1111
    12 <div id="bbpress-forums">
     12<div id="bbpress-forums" class="bbpress-wrapper">
    1313
    1414        <?php bbp_breadcrumb(); ?>
  • trunk/src/templates/default/bbpress/content-single-user.php

    r5854 r6253  
    1010?>
    1111
    12 <div id="bbpress-forums">
     12<div id="bbpress-forums" class="bbpress-wrapper">
    1313
    1414        <?php do_action( 'bbp_template_notices' ); ?>
  • trunk/src/templates/default/bbpress/content-single-view.php

    r5770 r6253  
    1010?>
    1111
    12 <div id="bbpress-forums">
     12<div id="bbpress-forums" class="bbpress-wrapper">
    1313
    1414        <?php bbp_breadcrumb(); ?>
  • trunk/src/templates/default/bbpress/content-topic-tag-edit.php

    r5770 r6253  
    1010?>
    1111
    12 <div id="bbpress-forums">
     12<div id="bbpress-forums" class="bbpress-wrapper">
    1313
    1414        <?php bbp_breadcrumb(); ?>
  • trunk/src/templates/default/bbpress/form-forum.php

    r6056 r6253  
    1010if ( bbp_is_forum_edit() ) : ?>
    1111
    12 <div id="bbpress-forums">
     12<div id="bbpress-forums" class="bbpress-wrapper">
    1313
    1414        <?php bbp_breadcrumb(); ?>
  • trunk/src/templates/default/bbpress/form-protected.php

    r5770 r6253  
    1010?>
    1111
    12 <div id="bbpress-forums">
     12<div id="bbpress-forums" class="bbpress-wrapper">
    1313        <fieldset class="bbp-form" id="bbp-protected">
    1414                <Legend><?php esc_html_e( 'Protected', 'bbpress' ); ?></legend>
  • trunk/src/templates/default/bbpress/form-reply-move.php

    r6141 r6253  
    1010?>
    1111
    12 <div id="bbpress-forums">
     12<div id="bbpress-forums" class="bbpress-wrapper">
    1313
    1414        <?php bbp_breadcrumb(); ?>
  • trunk/src/templates/default/bbpress/form-reply.php

    r6032 r6253  
    1010if ( bbp_is_reply_edit() ) : ?>
    1111
    12 <div id="bbpress-forums">
     12<div id="bbpress-forums" class="bbpress-wrapper">
    1313
    1414        <?php bbp_breadcrumb(); ?>
  • trunk/src/templates/default/bbpress/form-topic-merge.php

    r6141 r6253  
    1010?>
    1111
    12 <div id="bbpress-forums">
     12<div id="bbpress-forums" class="bbpress-wrapper">
    1313
    1414        <?php bbp_breadcrumb(); ?>
  • trunk/src/templates/default/bbpress/form-topic-split.php

    r6141 r6253  
    1010?>
    1111
    12 <div id="bbpress-forums">
     12<div id="bbpress-forums" class="bbpress-wrapper">
    1313
    1414        <?php bbp_breadcrumb(); ?>
  • trunk/src/templates/default/bbpress/form-topic.php

    r6032 r6253  
    1010if ( ! bbp_is_single_forum() ) : ?>
    1111
    12 <div id="bbpress-forums">
     12<div id="bbpress-forums" class="bbpress-wrapper">
    1313
    1414        <?php bbp_breadcrumb(); ?>
  • trunk/src/templates/default/css/bbpress.css

    r6093 r6253  
    88/* =bbPress Style
    99-------------------------------------------------------------- */
     10
     11.entry-content .bbpress-wrapper a {
     12        -webkit-box-shadow: none;
     13        box-shadow: none;
     14}
    1015
    1116#bbpress-forums hr {
  • trunk/src/templates/default/extras/page-forum-statistics.php

    r5770 r6253  
    2222                                <?php get_the_content() ? the_content() : wpautop( esc_html__( 'Here are the statistics and popular topics of our forums.', 'bbpress' ) ); ?>
    2323
    24                                 <div id="bbpress-forums">
     24                                <div id="bbpress-forums" class="bbpress-wrapper">
    2525
    2626                                        <?php bbp_get_template_part( 'content', 'statistics' ); ?>
  • trunk/src/templates/default/extras/page-topic-tags.php

    r5770 r6253  
    2222                                <?php get_the_content() ? the_content() : wpautop( esc_html__( 'This is a collection of tags that are currently popular on our forums.', 'bbpress' ) ); ?>
    2323
    24                                 <div id="bbpress-forums">
     24                                <div id="bbpress-forums" class="bbpress-wrapper">
    2525
    2626                                        <?php bbp_breadcrumb(); ?>
  • trunk/src/templates/default/extras/page-topics-no-replies.php

    r5770 r6253  
    2222                                <?php the_content(); ?>
    2323
    24                                 <div id="bbpress-forums">
     24                                <div id="bbpress-forums" class="bbpress-wrapper">
    2525
    2626                                        <?php bbp_breadcrumb(); ?>
  • trunk/src/templates/default/extras/page-user-login.php

    r5770 r6253  
    2626                                <?php the_content(); ?>
    2727
    28                                 <div id="bbpress-forums">
     28                                <div id="bbpress-forums" class="bbpress-wrapper">
    2929
    3030                                        <?php bbp_breadcrumb(); ?>
  • trunk/src/templates/default/extras/page-user-lost-pass.php

    r5770 r6253  
    2626                                <?php the_content(); ?>
    2727
    28                                 <div id="bbpress-forums">
     28                                <div id="bbpress-forums" class="bbpress-wrapper">
    2929
    3030                                        <?php bbp_breadcrumb(); ?>
  • trunk/src/templates/default/extras/page-user-register.php

    r5770 r6253  
    2626                                <?php the_content(); ?>
    2727
    28                                 <div id="bbpress-forums">
     28                                <div id="bbpress-forums" class="bbpress-wrapper">
    2929
    3030                                        <?php bbp_breadcrumb(); ?>
Note: See TracChangeset for help on using the changeset viewer.