Ticket #27555: 27555.2.patch
File 27555.2.patch, 2.8 KB (added by , 9 years ago) |
---|
-
src/wp-admin/css/common.css
773 773 } 774 774 775 775 #welcome-panel.welcome-panel .welcome-panel-close:hover:before, 776 #welcome-panel.welcome-panel .welcome-panel-close:focus:before, 776 777 .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 { 778 781 color: #c00; 779 782 } 780 783 -
src/wp-admin/css/edit.css
617 617 text-indent: 0; 618 618 overflow: hidden; 619 619 position: absolute; 620 text-decoration: none; 620 621 } 621 622 622 623 #poststuff h2 { -
src/wp-admin/includes/meta-boxes.php
425 425 <p class="howto"><?php echo $taxonomy->labels->separate_items_with_commas; ?></p> 426 426 <?php endif; ?> 427 427 </div> 428 <div class="tagchecklist" ></div>428 <div class="tagchecklist" aria-live="assertive"></div> 429 429 </div> 430 430 <?php if ( $user_can_assign_terms ) : ?> 431 431 <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
78 78 79 79 // If tags editing isn't disabled, create the X button. 80 80 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 }); 83 86 span.prepend(' ').prepend( xbutton ); 84 87 } 85 88 -
src/wp-includes/script-loader.php
461 461 'comma' => _x( ',', 'tag delimiter' ), 462 462 'saveAlert' => __('The changes you made will be lost if you navigate away from this page.'), 463 463 'savingText' => __('Saving Draft…'), 464 'deleteTag' => __('Delete'), 464 465 ) ); 465 466 466 467 $scripts->add( 'editor-expand', "/wp-admin/js/editor-expand$suffix.js", array( 'jquery' ), false, 1 );