Make WordPress Core


Ignore:
Timestamp:
10/23/2016 06:15:07 PM (8 years ago)
Author:
afercia
Message:

Accessibility: Improve the Tags meta box accessibility.

  • changes the "X" links in buttons, improves their color contrast ratio and focus style
  • adds screen reader text "Remove item: + tagname"
  • uses wp.a11y.speak() to give screen reader users feedback when adding/removing tags
  • makes the tagcloud-link toggle a button, with an aria-expanded attribute to indicate the tag cloud collapsed/expanded state
  • changes colors for the autocomplete highlighted option in order to have a better color contrast ratio
  • reduces the font size for the autocomplete on Press This
  • removes CSS related to the old suggest.js from Press This

Props joedolson, cgrymala, azaozz, afercia.
Fixes #27555.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/script-loader.php

    r38832 r38880  
    539539        did_action( 'init' ) && $scripts->localize( 'tags-suggest', 'tagsSuggestL10n', array(
    540540            'tagDelimiter' => _x( ',', 'tag delimiter' ),
     541            'removeTerm'   => __( 'Remove term:' ),
     542            'termSelected' => __( 'Term selected.' ),
     543            'termAdded'    => __( 'Term added.' ),
     544            'termRemoved'  => __( 'Term removed.' ),
    541545        ) );
    542546
Note: See TracChangeset for help on using the changeset viewer.