Ticket #12153: 12153.diff
| File 12153.diff, 1.7 KB (added by nacin, 3 years ago) |
|---|
-
wp-admin/css/press-this.dev.css
574 574 .taghint { 575 575 color: #aaa; 576 576 margin: -17px 0 0 7px; 577 visibility: hidden;577 display: none; 578 578 } 579 579 580 580 input.newtag ~ div.taghint { 581 visibility: visible;581 display: block; 582 582 } 583 583 584 584 input.newtag:focus ~ div.taghint { 585 visibility: hidden;585 display: none; 586 586 } -
wp-admin/css/wp-admin.dev.css
3609 3609 .taghint { 3610 3610 color: #aaa; 3611 3611 margin: 14px 0 -17px 8px; 3612 display: none; 3612 3613 } 3613 3614 3614 3615 #poststuff .tagsdiv .howto { -
wp-admin/js/post.dev.js
107 107 }); 108 108 109 109 $('div.taghint', ajaxtag).click(function(){ 110 $(this).css(' visibility', 'hidden').siblings('.newtag').focus();110 $(this).css('display', 'none').siblings('.newtag').focus(); 111 111 }); 112 112 113 113 $('input.newtag', ajaxtag).blur(function() { 114 114 if ( this.value == '' ) 115 $(this).siblings('.taghint').css(' visibility', '');115 $(this).siblings('.taghint').css('display', 'block'); 116 116 }).focus(function(){ 117 $(this).siblings('.taghint').css(' visibility', 'hidden');117 $(this).siblings('.taghint').css('display', 'none'); 118 118 }).keyup(function(e){ 119 119 if ( 13 == e.which ) { 120 120 tagBox.flushTags( $(this).closest('.tagsdiv') );
