Changeset 10811
- Timestamp:
- 05/25/2016 06:35:21 PM (8 years ago)
- Location:
- trunk/src/bp-core
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bp-core/admin/css/common-rtl.css
r10724 r10811 376 376 margin: 0; 377 377 } 378 379 body.post-type-bp-email .categorydiv label { 380 display: block; 381 float: right; 382 padding-right: 25px; 383 text-indent: -25px; 384 } -
trunk/src/bp-core/admin/css/common.css
r10724 r10811 376 376 margin: 0; 377 377 } 378 379 body.post-type-bp-email .categorydiv label { 380 display: block; 381 float: left; 382 padding-left: 25px; 383 text-indent: -25px; 384 } -
trunk/src/bp-core/classes/class-bp-walker-category-checklist.php
r10530 r10811 85 85 /** This filter is documented in wp-includes/category-template.php */ 86 86 $output .= "\n<li id='{$taxonomy}-{$category->term_id}'$class>" . 87 '<label class="selectit"><input value="' . $category->slug . '" type="checkbox" name="'.$name.'[]" id="in-'.$taxonomy.'-' . $category->term_id . '"' .87 '<label for="in-'.$taxonomy.'-' . $category->term_id . '" class="selectit"><input value="' . $category->slug . '" type="checkbox" name="'.$name.'[]" id="in-'.$taxonomy.'-' . $category->term_id . '"' . 88 88 checked( in_array( $category->term_id, $args['selected_cats'] ), true, false ) . 89 89 disabled( empty( $args['disabled'] ), false, false ) . ' /> ' .
Note: See TracChangeset
for help on using the changeset viewer.