Make WordPress Core

Changes between Initial Version and Version 1 of Ticket #45209


Ignore:
Timestamp:
10/27/2018 11:14:37 AM (6 years ago)
Author:
SergeyBiryukov
Comment:

Hi @hitendra-chopda, welcome to WordPress Trac! Thanks for the report.

I think that's intentional, the border shows the current focus for accessibility reasons.

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #45209

    • Property Keywords 2nd-opinion close added; has-patch removed
    • Property Focuses ui accessibility administration added
  • Ticket #45209 – Description

    initial v1  
    44
    55I made some JS for solution see below:
     6{{{
    67jQuery('.plugin-card-top img').click(function(){ jQuery(this).parent().find('a').click();});
    78jQuery(".plugin-card-top img").hover(function(){
    89    jQuery(this).css("cursor", "pointer");
    910});
     11}}}