Ticket #3112: clearing-floats-in-posts.patch
File clearing-floats-in-posts.patch, 4.6 KB (added by , 14 years ago) |
---|
-
bp-themes/bp-default/_inc/css/default.css
2180 2180 color: #555; 2181 2181 } 2182 2182 2183 .edit-entry { 2184 clear:both; 2185 } 2183 2186 2184 2187 /* > WordPress Blog Comment Styles 2185 2188 -------------------------------------------------------------- */ … … 2438 2441 2439 2442 #footer-widget-area ul.item-list li img.avatar { 2440 2443 margin-left: 15px; /* border is 4px */ 2441 } 2442 No newline at end of file 2444 } 2445 2446 /** Clearing rules for float containers **/ 2447 .clearfix:after { 2448 display:block; 2449 content:"."; 2450 height:0; 2451 visibility:hidden; 2452 clear:both; 2453 } 2454 .clearfix {display:inline-block;}/* for IEMac & IE6/7 trigger*/ 2455 .clearfix {display:block;} /* resets to block for all browsers */ 2456 /** end clearfix rule set **/ 2457 No newline at end of file -
bp-themes/bp-default/archive.php
34 34 35 35 <p class="date"><?php echo get_the_date() ?> <em><?php _e( 'in', 'buddypress' ) ?> <?php the_category(', ') ?> <?php printf( __( 'by %s', 'buddypress' ), bp_core_get_userlink( $post->post_author ) ) ?></em></p> 36 36 37 <div class="entry ">37 <div class="entry clearfix"> 38 38 <?php the_content( __( 'Read the rest of this entry →', 'buddypress' ) ); ?> 39 39 </div> 40 40 -
bp-themes/bp-default/index.php
25 25 26 26 <p class="date"><?php echo get_the_date() ?> <em><?php _e( 'in', 'buddypress' ) ?> <?php the_category(', ') ?> <?php printf( __( 'by %s', 'buddypress' ), bp_core_get_userlink( $post->post_author ) ) ?></em></p> 27 27 28 <div class="entry ">28 <div class="entry clearfix"> 29 29 <?php the_content( __( 'Read the rest of this entry →', 'buddypress' ) ); ?> 30 30 </div> 31 31 -
bp-themes/bp-default/onecolumn-page.php
24 24 25 25 <div id="post-<?php the_ID(); ?>" <?php post_class(); ?>> 26 26 27 <div class="entry ">27 <div class="entry clearfix"> 28 28 29 29 <?php the_content( __( '<p class="serif">Read the rest of this page →</p>', 'buddypress' ) ); ?> 30 30 31 31 <?php wp_link_pages( array( 'before' => __( '<p><strong>Pages:</strong> ', 'buddypress' ), 'after' => '</p>', 'next_or_number' => 'number')); ?> 32 <?php edit_post_link( __( 'Edit this entry.', 'buddypress' ), '<p >', '</p>'); ?>32 <?php edit_post_link( __( 'Edit this entry.', 'buddypress' ), '<p class="edit-entry">', '</p>'); ?> 33 33 34 34 </div> 35 35 -
bp-themes/bp-default/page.php
13 13 14 14 <div id="post-<?php the_ID(); ?>" <?php post_class(); ?>> 15 15 16 <div class="entry ">16 <div class="entry clearfix"> 17 17 18 18 <?php the_content( __( '<p class="serif">Read the rest of this page →</p>', 'buddypress' ) ); ?> 19 19 20 20 <?php wp_link_pages( array( 'before' => __( '<p><strong>Pages:</strong> ', 'buddypress' ), 'after' => '</p>', 'next_or_number' => 'number')); ?> 21 <?php edit_post_link( __( 'Edit this entry.', 'buddypress' ), '<p >', '</p>'); ?>21 <?php edit_post_link( __( 'Edit this entry.', 'buddypress' ), '<p class="edit-entry">', '</p>'); ?> 22 22 23 23 </div> 24 24 -
bp-themes/bp-default/single.php
21 21 22 22 <p class="date"><?php echo get_the_date() ?> <em><?php _e( 'in', 'buddypress' ) ?> <?php the_category(', ') ?> <?php printf( __( 'by %s', 'buddypress' ), bp_core_get_userlink( $post->post_author ) ) ?></em> <?php edit_post_link( __( 'Edit this entry', 'buddypress' ), '<em class="edit-link">', '</em>' ); ?></p> 23 23 24 <div class="entry ">24 <div class="entry clearfix"> 25 25 <?php the_content( __( 'Read the rest of this entry →', 'buddypress' ) ); ?> 26 26 27 27 <?php wp_link_pages(array('before' => __( '<p><strong>Pages:</strong> ', 'buddypress' ), 'after' => '</p>', 'next_or_number' => 'number')); ?>