Ticket #7734: 7734-link-underline-focus-hover.patch
File 7734-link-underline-focus-hover.patch, 3.0 KB (added by , 7 years ago) |
---|
-
src/bp-templates/bp-nouveau/common-styles/_bp_forms.scss
193 193 margin-right: $marg-med; 194 194 } 195 195 196 a#group-creation-previous { 197 margin-right: $marg-xlrg; 198 199 &:hover, 200 &:focus { 201 text-decoration: underline; 202 } 203 } 204 205 #previous-next { 206 margin-top: $marg-xlrg; 207 } 208 196 209 p label, 197 210 #invite-list label { 198 211 font-weight: 400; -
src/bp-templates/bp-nouveau/css/buddypress-rtl.css
3402 3402 margin-left: 15px; 3403 3403 } 3404 3404 3405 .buddypress-wrap .standard-form a#group-creation-previous { 3406 margin-left: 30px; 3407 } 3408 3409 .buddypress-wrap .standard-form a#group-creation-previous:hover, .buddypress-wrap .standard-form a#group-creation-previous:focus { 3410 text-decoration: underline; 3411 } 3412 3413 .buddypress-wrap .standard-form #previous-next { 3414 margin-top: 30px; 3415 } 3416 3405 3417 .buddypress-wrap .standard-form p label, 3406 3418 .buddypress-wrap .standard-form #invite-list label { 3407 3419 font-weight: 400; -
src/bp-templates/bp-nouveau/css/buddypress.css
3402 3402 margin-right: 15px; 3403 3403 } 3404 3404 3405 .buddypress-wrap .standard-form a#group-creation-previous { 3406 margin-right: 30px; 3407 } 3408 3409 .buddypress-wrap .standard-form a#group-creation-previous:hover, .buddypress-wrap .standard-form a#group-creation-previous:focus { 3410 text-decoration: underline; 3411 } 3412 3413 .buddypress-wrap .standard-form #previous-next { 3414 margin-top: 30px; 3415 } 3416 3405 3417 .buddypress-wrap .standard-form p label, 3406 3418 .buddypress-wrap .standard-form #invite-list label { 3407 3419 font-weight: 400; -
src/bp-templates/bp-nouveau/includes/groups/template-tags.php
373 373 $creation_step_buttons = ''; 374 374 375 375 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">←</span>' . sprintf( 377 '<a href="%s" id="group-creation-previous">' . esc_html( 'Back to Previous Step', 'buddypress' ) . '</a>', 378 esc_url_raw( bp_get_group_creation_previous_link() ) 380 379 ); 381 380 } 382 381