Ticket #2635: 2635.patch
File 2635.patch, 1.5 KB (added by , 9 years ago) |
---|
-
includes/common/template.php
2298 2298 $r = bbp_parse_args( $args, array( 2299 2299 2300 2300 // HTML 2301 'before' => '<div class="bbp-breadcrumb">< p>',2302 'after' => '</ p></div>',2301 'before' => '<div class="bbp-breadcrumb"><ol>', 2302 'after' => '</ol></div>', 2303 2303 2304 2304 // Separator 2305 'sep' => is_rtl() ? __( '‹', 'bbpress' ) : __( '›', 'bbpress' ),2305 'sep' => '', 2306 2306 'pad_sep' => 1, 2307 2307 'sep_before' => '<span class="bbp-breadcrumb-sep">', 2308 2308 'sep_after' => '</span>', 2309 2309 2310 2310 // Crumbs 2311 'crumb_before' => ' ',2312 'crumb_after' => ' ',2311 'crumb_before' => '<li>', 2312 'crumb_after' => '</li>', 2313 2313 2314 2314 // Home 2315 2315 'include_home' => $pre_include_home, -
templates/default/css/bbpress.css
411 411 float: left; 412 412 } 413 413 414 div.bbp-breadcrumb li { 415 display: inline; 416 } 417 418 div.bbp-breadcrumb ol>li + li:before { 419 content: "> "; 420 } 421 414 422 div.bbp-breadcrumb, 415 423 div.bbp-topic-tags { 416 424 font-size: 12px; 417 425 } 418 426 419 #bbpress-forums div.bbp-breadcrumb p,420 427 #bbpress-forums div.bbp-topic-tags p { 421 margin-bottom: 10px 428 margin-bottom: 10px; 422 429 } 423 430 424 431 #bbpress-forums div.bbp-topic-tags {