Ticket #21334: 21334.4.diff
File 21334.4.diff, 1.0 KB (added by , 12 years ago) |
---|
-
wp-admin/js/inline-edit-post.js
69 69 t.revert(); 70 70 $('select[name^="action"]').val('-1'); 71 71 }); 72 73 //show the 'quick links' section when user tabs into post title triggering focus 74 $('td.post-title a').on('focus', function(e){ 75 $(this).parents('.post-title').first().find('.row-actions').addClass('show-row-actions'); 76 }).on('blur', function () { 77 $(this).parents('.post-title').first().find('.row-actions').removeClass('show-row-actions'); 78 }); 72 79 }, 73 80 74 81 toggle : function(el){ -
wp-admin/css/wp-admin.css
6225 6225 visibility: visible; 6226 6226 } 6227 6227 6228 .show-row-actions { 6229 visibility: visible; 6230 } 6231 6228 6232 .row-actions-visible { 6229 6233 padding: 2px 0 0; 6230 6234 }