Changeset 10656
- Timestamp:
- 03/16/2016 08:19:02 PM (9 years ago)
- Location:
- trunk/src
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bp-templates/bp-legacy/css/buddypress-rtl.css
r10533 r10656 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; … … 665 666 margin: auto; 666 667 } 667 #buddypress .standard-form div.checkbox label:nth-child(n+2),668 #buddypress .standard-form div.radio divlabel {668 #buddypress .standard-form .checkbox label, 669 #buddypress .standard-form .radio label { 669 670 color: #767676; 670 671 font-size: 100%; -
trunk/src/bp-templates/bp-legacy/css/buddypress.css
r10533 r10656 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; … … 665 666 margin: auto; 666 667 } 667 #buddypress .standard-form div.checkbox label:nth-child(n+2),668 #buddypress .standard-form div.radio divlabel {668 #buddypress .standard-form .checkbox label, 669 #buddypress .standard-form .radio label { 669 670 color: #767676; 670 671 font-size: 100%; -
trunk/src/bp-xprofile/classes/class-bp-xprofile-field-type-checkbox.php
r10561 r10656 68 68 } ?> 69 69 70 < divclass="checkbox">71 <l abel 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 </l abel>74 </legend> 75 75 76 76 <?php … … 83 83 ) ); ?> 84 84 85 </ div>85 </fieldset> 86 86 87 87 <?php -
trunk/src/bp-xprofile/classes/class-bp-xprofile-field-type-datebox.php
r10573 r10656 79 79 ) ); ?> 80 80 81 < divclass="datebox">82 83 <l abel for="<?php bp_the_profile_field_input_name(); ?>_day">81 <fieldset class="datebox"> 82 83 <legend> 84 84 <?php bp_the_profile_field_name(); ?> 85 85 <?php bp_the_profile_field_required_label(); ?> 86 </l abel>86 </legend> 87 87 88 88 <?php … … 124 124 </select> 125 125 126 </ div>126 </fieldset> 127 127 <?php 128 128 } -
trunk/src/bp-xprofile/classes/class-bp-xprofile-field-type-radiobutton.php
r10417 r10656 66 66 } ?> 67 67 68 < divclass="radio">68 <fieldset class="radio"> 69 69 70 <l abel 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 </l abel>73 </legend> 74 74 75 75 <?php … … 88 88 <?php endif; ?> 89 89 90 </ div>90 </fieldset> 91 91 92 92 <?php
Note: See TracChangeset
for help on using the changeset viewer.