diff --git src/bp-templates/bp-legacy/css/buddypress-rtl.css src/bp-templates/bp-legacy/css/buddypress-rtl.css
index f089c4e..3d72862 100644
|
|
|
body.activity-permalink #buddypress div.activity-comments div.acomment-content { |
| 653 | 653 | margin-bottom: 5px; |
| 654 | 654 | } |
| 655 | 655 | #buddypress .standard-form label, |
| 656 | | #buddypress .standard-form span.label { |
| | 656 | #buddypress .standard-form span.label, |
| | 657 | #buddypress .standard-form legend { |
| 657 | 658 | display: block; |
| 658 | 659 | font-weight: bold; |
| 659 | 660 | margin: 15px 0 5px 0; |
| … |
… |
body.activity-permalink #buddypress div.activity-comments div.acomment-content { |
| 664 | 665 | font-weight: normal; |
| 665 | 666 | margin: auto; |
| 666 | 667 | } |
| 667 | | #buddypress .standard-form div.checkbox label:nth-child(n+2), |
| 668 | | #buddypress .standard-form div.radio div label { |
| | 668 | #buddypress .standard-form .checkbox label, |
| | 669 | #buddypress .standard-form .radio label { |
| 669 | 670 | color: #767676; |
| 670 | 671 | font-size: 100%; |
| 671 | 672 | font-weight: normal; |
diff --git src/bp-templates/bp-legacy/css/buddypress.css src/bp-templates/bp-legacy/css/buddypress.css
index 2946a20..5bc95c2 100644
|
|
|
body.activity-permalink #buddypress div.activity-comments div.acomment-content { |
| 653 | 653 | margin-bottom: 5px; |
| 654 | 654 | } |
| 655 | 655 | #buddypress .standard-form label, |
| 656 | | #buddypress .standard-form span.label { |
| | 656 | #buddypress .standard-form span.label, |
| | 657 | #buddypress .standard-form legend { |
| 657 | 658 | display: block; |
| 658 | 659 | font-weight: bold; |
| 659 | 660 | margin: 15px 0 5px 0; |
| … |
… |
body.activity-permalink #buddypress div.activity-comments div.acomment-content { |
| 664 | 665 | font-weight: normal; |
| 665 | 666 | margin: auto; |
| 666 | 667 | } |
| 667 | | #buddypress .standard-form div.checkbox label:nth-child(n+2), |
| 668 | | #buddypress .standard-form div.radio div label { |
| | 668 | #buddypress .standard-form .checkbox label, |
| | 669 | #buddypress .standard-form .radio label { |
| 669 | 670 | color: #767676; |
| 670 | 671 | font-size: 100%; |
| 671 | 672 | font-weight: normal; |
diff --git src/bp-xprofile/classes/class-bp-xprofile-field-type-checkbox.php src/bp-xprofile/classes/class-bp-xprofile-field-type-checkbox.php
index 48af638..a49e5d6 100644
|
|
|
class BP_XProfile_Field_Type_Checkbox extends BP_XProfile_Field_Type { |
| 67 | 67 | $user_id = bp_displayed_user_id(); |
| 68 | 68 | } ?> |
| 69 | 69 | |
| 70 | | <div class="checkbox"> |
| 71 | | <label for="<?php bp_the_profile_field_input_name(); ?>"> |
| | 70 | <fieldset class="checkbox"> |
| | 71 | <legend> |
| 72 | 72 | <?php bp_the_profile_field_name(); ?> |
| 73 | 73 | <?php bp_the_profile_field_required_label(); ?> |
| 74 | | </label> |
| | 74 | </legend> |
| 75 | 75 | |
| 76 | 76 | <?php |
| 77 | 77 | |
| … |
… |
class BP_XProfile_Field_Type_Checkbox extends BP_XProfile_Field_Type { |
| 82 | 82 | 'user_id' => $user_id |
| 83 | 83 | ) ); ?> |
| 84 | 84 | |
| 85 | | </div> |
| | 85 | </fieldset> |
| 86 | 86 | |
| 87 | 87 | <?php |
| 88 | 88 | } |
diff --git src/bp-xprofile/classes/class-bp-xprofile-field-type-datebox.php src/bp-xprofile/classes/class-bp-xprofile-field-type-datebox.php
index 1f3430b..8f3476e 100644
|
|
|
class BP_XProfile_Field_Type_Datebox extends BP_XProfile_Field_Type { |
| 78 | 78 | 'name' => bp_get_the_profile_field_input_name() . '_year' |
| 79 | 79 | ) ); ?> |
| 80 | 80 | |
| 81 | | <div class="datebox"> |
| | 81 | <fieldset class="datebox"> |
| 82 | 82 | |
| 83 | | <label for="<?php bp_the_profile_field_input_name(); ?>_day"> |
| | 83 | <legend> |
| 84 | 84 | <?php bp_the_profile_field_name(); ?> |
| 85 | 85 | <?php bp_the_profile_field_required_label(); ?> |
| 86 | | </label> |
| | 86 | </legend> |
| 87 | 87 | |
| 88 | 88 | <?php |
| 89 | 89 | |
| … |
… |
class BP_XProfile_Field_Type_Datebox extends BP_XProfile_Field_Type { |
| 120 | 120 | ) ); ?> |
| 121 | 121 | </select> |
| 122 | 122 | |
| 123 | | </div> |
| | 123 | </fieldset> |
| 124 | 124 | <?php |
| 125 | 125 | } |
| 126 | 126 | |
diff --git src/bp-xprofile/classes/class-bp-xprofile-field-type-radiobutton.php src/bp-xprofile/classes/class-bp-xprofile-field-type-radiobutton.php
index d0637e5..274b8ee 100644
|
|
|
class BP_XProfile_Field_Type_Radiobutton extends BP_XProfile_Field_Type { |
| 65 | 65 | $user_id = bp_displayed_user_id(); |
| 66 | 66 | } ?> |
| 67 | 67 | |
| 68 | | <div class="radio"> |
| | 68 | <fieldset class="radio"> |
| 69 | 69 | |
| 70 | | <label for="<?php bp_the_profile_field_input_name(); ?>"> |
| | 70 | <legend> |
| 71 | 71 | <?php bp_the_profile_field_name(); ?> |
| 72 | 72 | <?php bp_the_profile_field_required_label(); ?> |
| 73 | | </label> |
| | 73 | </legend> |
| 74 | 74 | |
| 75 | 75 | <?php |
| 76 | 76 | |
| … |
… |
class BP_XProfile_Field_Type_Radiobutton extends BP_XProfile_Field_Type { |
| 87 | 87 | |
| 88 | 88 | <?php endif; ?> |
| 89 | 89 | |
| 90 | | </div> |
| | 90 | </fieldset> |
| 91 | 91 | |
| 92 | 92 | <?php |
| 93 | 93 | } |