Skip to:
Content

BuddyPress.org

Ticket #7734: 7734-link-underline-n-left-arrow.patch

File 7734-link-underline-n-left-arrow.patch, 2.9 KB (added by mercime, 7 years ago)

Link with underline and left arrow per image attached above

  • src/bp-templates/bp-nouveau/common-styles/_bp_forms.scss

     
    191191
    192192                div.submit input {
    193193                        margin-right: $marg-med;
     194                        padding: 0.45em 0.5em;
    194195                }
    195196
     197                #group-creation-previous {
     198                        margin-bottom: $marg-med;
     199                        margin-right: $marg-xlrg;
     200                }
     201
     202                #previous-next {
     203                        margin-top: $marg-xlrg;
     204                }
     205
    196206                p label,
    197207                #invite-list label {
    198208                        font-weight: 400;
  • src/bp-templates/bp-nouveau/css/buddypress-rtl.css

     
    34003400
    34013401.buddypress-wrap .standard-form div.submit input {
    34023402        margin-left: 15px;
     3403        padding: 0.45em 0.5em;
    34033404}
    34043405
     3406.buddypress-wrap .standard-form #group-creation-previous {
     3407        margin-bottom: 15px;
     3408        margin-left: 30px;
     3409}
     3410
     3411.buddypress-wrap .standard-form #previous-next {
     3412        margin-top: 30px;
     3413}
     3414
    34053415.buddypress-wrap .standard-form p label,
    34063416.buddypress-wrap .standard-form #invite-list label {
    34073417        font-weight: 400;
  • src/bp-templates/bp-nouveau/css/buddypress.css

     
    34003400
    34013401.buddypress-wrap .standard-form div.submit input {
    34023402        margin-right: 15px;
     3403        padding: 0.45em 0.5em;
    34033404}
    34043405
     3406.buddypress-wrap .standard-form #group-creation-previous {
     3407        margin-bottom: 15px;
     3408        margin-right: 30px;
     3409}
     3410
     3411.buddypress-wrap .standard-form #previous-next {
     3412        margin-top: 30px;
     3413}
     3414
    34053415.buddypress-wrap .standard-form p label,
    34063416.buddypress-wrap .standard-form #invite-list label {
    34073417        font-weight: 400;
  • src/bp-templates/bp-nouveau/includes/groups/template-tags.php

     
    373373                        $creation_step_buttons = '';
    374374
    375375                        if ( ! bp_is_first_group_creation_step() ) {
    376                                 $creation_step_buttons .= sprintf(
    377                                         '<input type="button" value="%1$s" id="group-creation-previous" name="previous" onclick="%2$s" />',
    378                                         esc_attr__( 'Back to Previous Step', 'buddypress' ),
    379                                         "location.href='" . esc_js( esc_url_raw( bp_get_group_creation_previous_link() ) ) . "'"
     376                                $creation_step_buttons .= '<span aria-hidden="true">&larr;</span>' . ' ' . sprintf(
     377                                        '<a href="%s" id="group-creation-previous" class="button">' . esc_html( 'Back to Previous Step', 'buddypress' ) . '</a>',
     378                                        esc_url( bp_get_group_creation_previous_link() )
    380379                                );
    381380                        }
    382381