Make WordPress Core

Ticket #27555: 27555.2.patch

File 27555.2.patch, 2.8 KB (added by afercia, 9 years ago)
  • src/wp-admin/css/common.css

     
    773773}
    774774
    775775#welcome-panel.welcome-panel .welcome-panel-close:hover:before,
     776#welcome-panel.welcome-panel .welcome-panel-close:focus:before,
    776777.tagchecklist span a:hover:before,
    777 #bulk-titles div a:hover:before {
     778.tagchecklist span a:focus:before,
     779#bulk-titles div a:hover:before,
     780#bulk-titles div a:focus:before {
    778781        color: #c00;
    779782}
    780783
  • src/wp-admin/css/edit.css

     
    617617        text-indent: 0;
    618618        overflow: hidden;
    619619        position: absolute;
     620        text-decoration: none; 
    620621}
    621622
    622623#poststuff h2 {
  • src/wp-admin/includes/meta-boxes.php

     
    425425        <p class="howto"><?php echo $taxonomy->labels->separate_items_with_commas; ?></p>
    426426        <?php endif; ?>
    427427        </div>
    428         <div class="tagchecklist"></div>
     428        <div class="tagchecklist" aria-live="assertive"></div>
    429429</div>
    430430<?php if ( $user_can_assign_terms ) : ?>
    431431<p class="hide-if-no-js"><a href="#titlediv" class="tagcloud-link" id="link-<?php echo $tax_name; ?>"><?php echo $taxonomy->labels->choose_from_most_used; ?></a></p>
  • src/wp-admin/js/post.js

     
    7878
    7979                        // If tags editing isn't disabled, create the X button.
    8080                        if ( ! disabled ) {
    81                                 xbutton = $( '<a id="' + id + '-check-num-' + key + '" class="ntdelbutton">X</a>' );
    82                                 xbutton.click( function(){ tagBox.parseTags(this); });
     81                                xbutton = $( '<a id="' + id + '-check-num-' + key + '" class="ntdelbutton" href="#"><span class="screen-reader-text">' + postL10n.deleteTag + ' ' + val + '</span></a>' );
     82                                xbutton.click( function(e){
     83                                        e.preventDefault();
     84                                        tagBox.parseTags(this);
     85                                });
    8386                                span.prepend('&nbsp;').prepend( xbutton );
    8487                        }
    8588
  • src/wp-includes/script-loader.php

     
    461461                        'comma' => _x( ',', 'tag delimiter' ),
    462462                        'saveAlert' => __('The changes you made will be lost if you navigate away from this page.'),
    463463                        'savingText' => __('Saving Draft&#8230;'),
     464                        'deleteTag' => __('Delete'),
    464465                ) );
    465466
    466467                $scripts->add( 'editor-expand', "/wp-admin/js/editor-expand$suffix.js", array( 'jquery' ), false, 1 );