[wp-trac] [WordPress Trac] #63120: Emojis in plugin titles render in front of text characters

WordPress Trac noreply at wordpress.org
Sun Jun 1 13:50:15 UTC 2025


#63120: Emojis in plugin titles render in front of text characters
----------------------------------------------------+----------------------
 Reporter:  slimndap                                |       Owner:  (none)
     Type:  defect (bug)                            |      Status:  new
 Priority:  normal                                  |   Milestone:  6.9
Component:  Plugins                                 |     Version:
 Severity:  minor                                   |  Resolution:
 Keywords:  good-first-bug has-patch needs-testing  |     Focuses:  ui, css
----------------------------------------------------+----------------------
Changes (by sandeepdahiya):

 * keywords:  good-first-bug has-patch => good-first-bug has-patch needs-
     testing


Comment:

 First of all, my apologies for not submitting this reply in, what seems to
 be, a proper manner as this is my second day here. All sorts of feedbacks
 and bashing is appreciated.

 In my browser, it is happening due to float property in following code : -

 {{{

 .plugins .plugin-title img,
 .plugins .plugin-title .dashicons {
         float: left;
         padding: 0 10px 0 0;
         width: 64px;
         height: 64px;
 }
 }}}



 I have created the above patch by changing the above code to : -


 {{{
 .plugins .plugin-title img {
         padding: 0 10px 0 0;
         width: 64px;
         height: 64px;
 }

 .plugins .plugin-title .dashicons {
         float: left;
         padding: 0 10px 0 0;
         width: 64px;
         height: 64px;
 }
 }}}

-- 
Ticket URL: <https://core.trac.wordpress.org/ticket/63120#comment:18>
WordPress Trac <https://core.trac.wordpress.org/>
WordPress publishing platform


More information about the wp-trac mailing list