Skip to:
Content

BuddyPress.org

Ticket #7080: 7080.1.patch

File 7080.1.patch, 3.9 KB (added by mercime, 8 years ago)
  • src/bp-members/admin/css/admin-rtl.css

     
    112112.bp-profile-field p {
    113113        font-size: 14px;
    114114}
    115 .bp-profile-field .datebox > label,
    116 .bp-profile-field .radio > label,
     115
    117116.bp-profile-field > label {  /* label takes on left side 200px */
    118117        display: inline-block;
    119118        font-weight: 600;
     
    164163        font-size: 16px;
    165164        margin-bottom: 10px;
    166165}
     166
     167#your-profile .bp-profile-field .checkbox legend,
     168#your-profile .bp-profile-field .datebox legend,
     169#your-profile .bp-profile-field .radio legend {
     170        display: inline-block;
     171        font-size: 14px;
     172        font-weight: 600;
     173        line-height: 1.4em;
     174        text-align: right;
     175        vertical-align: middle;
     176        width: 200px;
     177}
     178
     179#your-profile .bp-profile-field .radio legend {
     180        vertical-align: top;
     181}
     182
     183.bp-profile-field .radio .clear-value {
     184        margin-top: 10px;
     185}
  • src/bp-members/admin/css/admin.css

     
    112112.bp-profile-field p {
    113113        font-size: 14px;
    114114}
    115 .bp-profile-field .datebox > label,
    116 .bp-profile-field .radio > label,
     115
    117116.bp-profile-field > label {  /* label takes on left side 200px */
    118117        display: inline-block;
    119118        font-weight: 600;
     
    164163        font-size: 16px;
    165164        margin-bottom: 10px;
    166165}
     166
     167#your-profile .bp-profile-field .checkbox legend,
     168#your-profile .bp-profile-field .datebox legend,
     169#your-profile .bp-profile-field .radio legend {
     170        display: inline-block;
     171        font-size: 14px;
     172        font-weight: 600;
     173        line-height: 1.4em;
     174        text-align: left;
     175        vertical-align: middle;
     176        width: 192px;
     177}
     178
     179#your-profile .bp-profile-field .radio legend {
     180        vertical-align: top;
     181}
     182
     183.bp-profile-field .radio .clear-value {
     184        margin-top: 10px;
     185}
  • src/bp-xprofile/classes/class-bp-xprofile-field-type-datebox.php

     
    9999                         */
    100100                        do_action( bp_get_the_profile_field_errors_action() ); ?>
    101101
    102                         <label for="<?php bp_the_profile_field_input_name(); ?>_day" class="bp-screen-reader-text"><?php esc_html_e( 'Select day', 'buddypress' ); ?></label>
     102                        <label for="<?php bp_the_profile_field_input_name(); ?>_day" class="<?php echo is_admin() ? 'screen-reader-text' : 'bp-screen-reader-text' ;?>"><?php esc_html_e( 'Select day', 'buddypress' ); ?></label>
    103103                        <select <?php echo $this->get_edit_field_html_elements( $day_r ); ?>>
    104104                                <?php bp_the_profile_field_options( array(
    105105                                        'type'    => 'day',
     
    107107                                ) ); ?>
    108108                        </select>
    109109
    110                         <label for="<?php bp_the_profile_field_input_name(); ?>_month" class="bp-screen-reader-text"><?php esc_html_e( 'Select month', 'buddypress' ); ?></label>
     110                        <label for="<?php bp_the_profile_field_input_name(); ?>_month" class="<?php echo is_admin() ? 'screen-reader-text' : 'bp-screen-reader-text' ;?>"><?php esc_html_e( 'Select month', 'buddypress' ); ?></label>
    111111                        <select <?php echo $this->get_edit_field_html_elements( $month_r ); ?>>
    112112                                <?php bp_the_profile_field_options( array(
    113113                                        'type'    => 'month',
     
    115115                                ) ); ?>
    116116                        </select>
    117117
    118                         <label for="<?php bp_the_profile_field_input_name(); ?>_year" class="bp-screen-reader-text"><?php esc_html_e( 'Select year', 'buddypress' ); ?></label>
     118                        <label for="<?php bp_the_profile_field_input_name(); ?>_year" class="<?php echo is_admin() ? 'screen-reader-text' : 'bp-screen-reader-text' ;?>"><?php esc_html_e( 'Select year', 'buddypress' ); ?></label>
    119119                        <select <?php echo $this->get_edit_field_html_elements( $year_r ); ?>>
    120120                                <?php bp_the_profile_field_options( array(
    121121                                        'type'    => 'year',