Ticket #31485: 31485.diff
File 31485.diff, 1.9 KB (added by , 8 years ago) |
---|
-
wp-admin/css/edit.css
1063 1063 13.0 - Tags 1064 1064 ------------------------------------------------------------------------------*/ 1065 1065 1066 .tagsdiv {1067 margin-top: -8px;1068 }1069 1070 1066 #poststuff .taghint { 1071 1067 color: #aaa; 1072 1068 margin: 15px 0 -24px 12px; -
wp-admin/includes/class-wp-press-this.php
644 644 ?> 645 645 <div class="ajaxtag hide-if-no-js"> 646 646 <label class="screen-reader-text" for="new-tag-post_tag"><?php _e( 'Tags' ); ?></label> 647 <div class="taghint"><?php echo $taxonomy->labels->add_new_item; ?></div>648 647 <p> 649 648 <input type="text" id="new-tag-post_tag" name="newtag[post_tag]" class="newtag form-input-tip" size="16" autocomplete="off" value="" /> 650 649 <button type="button" class="button tagadd"><?php _e( 'Add' ); ?></button> -
wp-admin/includes/meta-boxes.php
418 418 <?php if ( $user_can_assign_terms ) : ?> 419 419 <div class="ajaxtag hide-if-no-js"> 420 420 <label class="screen-reader-text" for="new-tag-<?php echo $tax_name; ?>"><?php echo $box['title']; ?></label> 421 <div class="taghint"><?php echo $taxonomy->labels->add_new_item; ?></div>422 421 <p><input type="text" id="new-tag-<?php echo $tax_name; ?>" name="newtag[<?php echo $tax_name; ?>]" class="newtag form-input-tip" size="16" autocomplete="off" value="" /> 423 422 <input type="button" class="button tagadd" value="<?php esc_attr_e('Add'); ?>" /></p> 424 423 </div>