Changeset 4429
- Timestamp:
- 05/26/2011 09:00:39 PM (14 years ago)
- Location:
- trunk/bp-themes/bp-default
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/bp-themes/bp-default/_inc/css/default.css
r4427 r4429 1150 1150 1151 1151 ul.activity-list li { 1152 padding: 1 0px 0 0;1152 padding: 15px 0 0; 1153 1153 overflow: hidden; 1154 1154 } … … 1160 1160 } 1161 1161 ul.activity-list li.has-comments { 1162 padding-bottom: 1 0px;1162 padding-bottom: 15px; 1163 1163 } 1164 1164 body.activity-permalink ul.activity-list li.has-comments { … … 1169 1169 font-size: 11px; 1170 1170 min-height: 35px; 1171 padding: 1 2px 0 0 0;1171 padding: 15px 0 0 0; 1172 1172 } 1173 1173 .activity-list li.mini div.activity-meta { … … 1272 1272 background: url( ../images/activity_arrow.gif ) top left no-repeat; 1273 1273 margin-left: -35px; 1274 padding: 5px 0 0 3 8px;1274 padding: 5px 0 0 35px; 1275 1275 height: 35px; 1276 1276 margin-bottom: 0; … … 1334 1334 body.activity-permalink .activity-content .activity-inner, 1335 1335 body.activity-permalink .activity-content blockquote { 1336 margin-left: 0; 1336 1337 margin-top: 5px; 1337 1338 } … … 1459 1460 } 1460 1461 body.activity-permalink div.activity-comments ul li > ul { 1461 margin-top: 15px; 1462 margin-top: 10px; 1463 } 1464 body.activity-permalink div.activity-comments > ul { 1465 padding-left: 15px; 1462 1466 } 1463 1467 div.activity-comments div.acomment-avatar img { … … 1680 1684 div.post, 1681 1685 div.attachment { 1682 margin: 0 0 40px 0;1686 margin: 0 0 30px 0; 1683 1687 overflow: hidden; 1684 1688 } … … 1848 1852 float: right; 1849 1853 } 1850 div.page img,1851 div.post img {1852 margin-bottom: 15px;1853 }1854 1854 img.wp-smiley { 1855 1855 padding: 0 !important; … … 1899 1899 font-size: 0.9em; 1900 1900 line-height: 17px; 1901 padding: 04px 5px 0;1901 padding: 5px 4px 5px 0; 1902 1902 margin: 0; 1903 1903 } … … 1909 1909 margin-left: 0; 1910 1910 } 1911 .gallery-item img { 1912 margin-bottom: 15px; 1913 } 1911 1914 .gallery .gallery-caption { 1912 1915 color: #555; … … 1927 1930 } 1928 1931 ol.commentlist li { 1932 clear: left; 1929 1933 list-style: none; 1930 clear: left;1934 margin-bottom: 15px; 1931 1935 } 1932 1936 ol.commentlist div.comment-avatar-box { 1933 1937 float: left; 1934 margin: 1 0px 10px 10px 0;1938 margin: 15px 10px 15px 0; 1935 1939 } 1936 1940 .commentlist ul.children div.comment-avatar-box { … … 1952 1956 color: #888; 1953 1957 font-size: 11px; 1954 margin: 1 0px 0;1958 margin: 15px 0; 1955 1959 } 1956 1960 div.comment-meta em { … … 2063 2067 border: 1px solid #e5e5e5; 2064 2068 border-radius: 4px; 2065 padding: 1 0px;2069 padding: 15px; 2066 2070 -moz-border-radius: 4px; 2067 2071 -webkit-border-radius: 4px; -
trunk/bp-themes/bp-default/functions.php
r4422 r4429 441 441 · <a href="#comment-<?php comment_ID() ?>"><?php _e( 'View', 'buddypress' ) ?></a> 442 442 <?php elseif ( comments_open() ) : ?> 443 · <?php echocomment_reply_link( array( 'depth' => $depth, 'max_depth' => $args['max_depth'], 'reply_text' => __( 'Reply', 'buddypress' ) ) ) ?>443 · <?php comment_reply_link( array( 'depth' => $depth, 'max_depth' => $args['max_depth'], 'reply_text' => __( 'Reply', 'buddypress' ) ) ) ?> 444 444 <?php endif; ?> 445 445 … … 454 454 <?php comment_text() ?> 455 455 456 <?php if ( 1 == $depth && comments_open() ) : ?>456 <?php if ( 1 == $depth && -1 != $args['max_depth'] && comments_open() ) : ?> 457 457 <div class="comment-options"> 458 <?php echocomment_reply_link( array( 'depth' => $depth, 'max_depth' => $args['max_depth'] ) ) ?>458 <?php comment_reply_link( array( 'depth' => $depth, 'max_depth' => $args['max_depth'] ) ) ?> 459 459 </div> 460 460 <?php endif; ?>
Note: See TracChangeset
for help on using the changeset viewer.