Ticket #53803: 53803.2.patch
File 53803.2.patch, 1.9 KB (added by , 3 years ago) |
---|
-
src/wp-admin/includes/class-custom-background.php
418 418 <div class="button-group"> 419 419 <?php foreach ( $group as $value => $input ) : ?> 420 420 <label> 421 <input class=" screen-reader-text" name="background-position" type="radio" value="<?php echo esc_attr( $value ); ?>"<?php checked( $value, $background_position ); ?>>421 <input class="ui-helper-hidden-accessible" name="background-position" type="radio" value="<?php echo esc_attr( $value ); ?>"<?php checked( $value, $background_position ); ?>> 422 422 <span class="button display-options position"><span class="<?php echo esc_attr( $input['icon'] ); ?>" aria-hidden="true"></span></span> 423 423 <span class="screen-reader-text"><?php echo $input['label']; ?></span> 424 424 </label> -
src/wp-includes/customize/class-wp-customize-background-position-control.php
96 96 <div class="button-group"> 97 97 <?php foreach ( $group as $value => $input ) : ?> 98 98 <label> 99 <input class=" screen-reader-text" name="background-position" type="radio" value="<?php echo esc_attr( $value ); ?>">99 <input class="ui-helper-hidden-accessible" name="background-position" type="radio" value="<?php echo esc_attr( $value ); ?>"> 100 100 <span class="button display-options position"><span class="<?php echo esc_attr( $input['icon'] ); ?>" aria-hidden="true"></span></span> 101 101 <span class="screen-reader-text"><?php echo $input['label']; ?></span> 102 102 </label>