Ticket #21324: 21324.6.diff
File 21324.6.diff, 1.8 KB (added by , 8 years ago) |
---|
-
wp-admin/css/wp-admin.css
6309 6309 width: 326px; 6310 6310 height: 67px; 6311 6311 text-indent: -9999px; 6312 outline: none; 6312 6313 overflow: hidden; 6313 6314 padding-bottom: 15px; 6314 6315 display: block; -
wp-admin/js/common.js
369 369 $(document).on('click.wp-accessibility-blur', 'a', function() { 370 370 $(this).blur(); 371 371 }); 372 373 $('.postbox .inside a').on('click', function() { 374 $(this).blur(); 375 }); 372 376 }); 373 377 374 378 // internal use -
wp-admin/js/post.js
165 165 166 166 // tag cloud 167 167 $('a.tagcloud-link').click(function(){ 168 tagBox.get( $(this).attr('id') ); 169 $(this).unbind().click(function(){ 170 $(this).siblings('.the-tagcloud').toggle(); 171 return false; 172 }); 168 if ( ! $('.the-tagcloud').length ) 169 tagBox.get( $(this).attr('id') ); 170 $(this).siblings('.the-tagcloud').toggle(); 173 171 return false; 174 172 }); 175 173 } -
wp-login.php
146 146 </script> 147 147 <?php endif; ?> 148 148 149 <script type="text/javascript"> 150 var i, links = document.getElementsByTagName('a'); 151 for ( i = 0; i < links.length; i++ ) { 152 // Blur accessibility link background color onclick 153 links[i].onclick = function() { this.blur(); } 154 } 155 </script> 156 149 157 <?php do_action('login_footer'); ?> 150 158 <div class="clear"></div> 151 159 </body>