Changeset 10713
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bp-templates/bp-legacy/css/buddypress-rtl.css
r10656 r10713 617 617 3.5 - Forms 618 618 --------------------------------------------------------------*/ 619 620 #buddypress form fieldset { 621 border: 0; 622 padding: 0; 623 } 624 619 625 #buddypress .standard-form textarea, 620 626 #buddypress .standard-form input[type=text], … … 673 679 margin: 5px 0 0 0; 674 680 } 681 #buddypress .standard-form .checkbox label input, 682 #buddypress .standard-form .radio label input { 683 margin-left: 3px; 684 } 675 685 #buddypress .standard-form#sidebar-login-form label { 676 686 margin-top: 5px; -
trunk/src/bp-templates/bp-legacy/css/buddypress.css
r10656 r10713 617 617 3.5 - Forms 618 618 --------------------------------------------------------------*/ 619 620 #buddypress form fieldset { 621 border: 0; 622 padding: 0; 623 } 624 619 625 #buddypress .standard-form textarea, 620 626 #buddypress .standard-form input[type=text], … … 673 679 margin: 5px 0 0 0; 674 680 } 681 #buddypress .standard-form .checkbox label input, 682 #buddypress .standard-form .radio label input { 683 margin-right: 3px; 684 } 675 685 #buddypress .standard-form#sidebar-login-form label { 676 686 margin-top: 5px; -
trunk/src/bp-xprofile/classes/class-bp-xprofile-field-type-checkbox.php
r10656 r10713 155 155 } 156 156 157 $new_html = sprintf( '<label for="%3$s" ><input %1$s type="checkbox" name="%2$s" id="%3$s" value="%4$s">%5$s</label>',157 $new_html = sprintf( '<label for="%3$s" class="option-label"><input %1$s type="checkbox" name="%2$s" id="%3$s" value="%4$s">%5$s</label>', 158 158 $selected, 159 159 esc_attr( "field_{$this->field_obj->id}[]" ), -
trunk/src/bp-xprofile/classes/class-bp-xprofile-field-type-radiobutton.php
r10656 r10713 133 133 } 134 134 135 $new_html = sprintf( '<label for="%3$s" ><input %1$s type="radio" name="%2$s" id="%3$s" value="%4$s">%5$s</label>',135 $new_html = sprintf( '<label for="%3$s" class="option-label"><input %1$s type="radio" name="%2$s" id="%3$s" value="%4$s">%5$s</label>', 136 136 $selected, 137 137 esc_attr( "field_{$this->field_obj->id}" ),
Note: See TracChangeset
for help on using the changeset viewer.