Ticket #7734: 7734-link-ala-button-1stpass.patch
File 7734-link-ala-button-1stpass.patch, 2.8 KB (added by , 7 years ago) |
---|
-
src/bp-templates/bp-nouveau/common-styles/_bp_forms.scss
191 191 192 192 div.submit input { 193 193 margin-right: $marg-med; 194 padding: 0.45em 0.5em; 194 195 } 195 196 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 196 206 p label, 197 207 #invite-list label { 198 208 font-weight: 400; -
src/bp-templates/bp-nouveau/css/buddypress-rtl.css
3400 3400 3401 3401 .buddypress-wrap .standard-form div.submit input { 3402 3402 margin-left: 15px; 3403 padding: 0.45em 0.5em; 3403 3404 } 3404 3405 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 3405 3415 .buddypress-wrap .standard-form p label, 3406 3416 .buddypress-wrap .standard-form #invite-list label { 3407 3417 font-weight: 400; -
src/bp-templates/bp-nouveau/css/buddypress.css
3400 3400 3401 3401 .buddypress-wrap .standard-form div.submit input { 3402 3402 margin-right: 15px; 3403 padding: 0.45em 0.5em; 3403 3404 } 3404 3405 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 3405 3415 .buddypress-wrap .standard-form p label, 3406 3416 .buddypress-wrap .standard-form #invite-list label { 3407 3417 font-weight: 400; -
src/bp-templates/bp-nouveau/includes/groups/template-tags.php
374 374 375 375 if ( ! bp_is_first_group_creation_step() ) { 376 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() ) ) . "'" 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() ) 380 379 ); 381 380 } 382 381