Ticket #3242: 3242-01.patch
File 3242-01.patch, 2.0 KB (added by , 14 years ago) |
---|
-
bp-themes/bp-default/functions.php
445 445 446 446 <?php edit_comment_link( __( 'Edit', 'buddypress' ), '· ', '' ); ?> 447 447 </p> 448 449 <?php if ( 1 == $depth && -1 != $args['max_depth'] && comments_open() ) : ?> 450 <p class="comment-reply"><?php comment_reply_link( array( 'depth' => $depth, 'max_depth' => $args['max_depth'] ) ) ?></p> 451 <?php endif; ?> 448 452 </div> 449 453 450 <?php if ( $comment->comment_approved == '0' ) : ?> 451 <em class="moderate"><?php _e( 'Your comment is awaiting moderation.', 'buddypress' ) ?></em><br /> 452 <?php endif; ?> 454 <div class="comment-entry"> 455 <?php if ( $comment->comment_approved == '0' ) : ?> 456 <em class="moderate"><?php _e( 'Your comment is awaiting moderation.', 'buddypress' ); ?></em> 457 <?php endif; ?> 453 458 454 <?php comment_text() ?> 455 456 <?php if ( 1 == $depth && -1 != $args['max_depth'] && comments_open() ) : ?> 457 <div class="comment-options"> 458 <?php comment_reply_link( array( 'depth' => $depth, 'max_depth' => $args['max_depth'] ) ) ?> 459 </div> 460 <?php endif; ?> 459 <?php comment_text() ?> 460 </div> 461 461 </div> 462 462 <?php 463 463 } -
bp-themes/bp-default/_inc/css/default.css
1949 1949 padding-left: 75px; 1950 1950 } 1951 1951 .commentlist .children .comment { 1952 /* Is this needed? */ 1952 1953 margin-bottom: 5px; 1953 1954 } 1954 div.comment-meta, 1955 div.comment-options { 1955 ul.children .comment-entry { 1956 margin-bottom: 10px; 1957 } 1958 div.comment-meta { 1956 1959 color: #888; 1960 float: left; 1957 1961 font-size: 11px; 1958 1962 margin: 15px 0; 1963 width: 100%; 1959 1964 } 1965 div.comment-meta p { 1966 float: left; 1967 margin-bottom: 0; 1968 } 1969 div.comment-meta p.comment-reply { 1970 float: right; 1971 } 1960 1972 div.comment-meta em { 1961 1973 font-style: normal; 1962 1974 }