Skip to:
Content

BuddyPress.org

Ticket #7082: 7082.patch

File 7082.patch, 2.0 KB (added by mercime, 8 years ago)
  • src/bp-core/admin/css/common-rtl.css

     
    374374
    375375body.post-type-bp-email td.column-situation ul {
    376376        margin: 0;
    377 }
    378  No newline at end of file
     377}
     378
     379body.post-type-bp-email .categorydiv label {
     380        display: block;
     381        float: right;
     382        padding-right: 25px;
     383        text-indent: -25px;
     384}
  • src/bp-core/admin/css/common.css

     
    374374
    375375body.post-type-bp-email td.column-situation ul {
    376376        margin: 0;
    377 }
    378  No newline at end of file
     377}
     378
     379body.post-type-bp-email .categorydiv label {
     380        display: block;
     381        float: left;
     382        padding-left: 25px;
     383        text-indent: -25px;
     384}
  • src/bp-core/classes/class-bp-walker-category-checklist.php

     
    8484                } else {
    8585                        /** This filter is documented in wp-includes/category-template.php */
    8686                        $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 . '"' .
    8888                                checked( in_array( $category->term_id, $args['selected_cats'] ), true, false ) .
    8989                                disabled( empty( $args['disabled'] ), false, false ) . ' /> ' .
    9090                                esc_html( apply_filters( 'the_category', $category->description ) ) . '</label>';