[wp-trac] [WordPress Trac] #55721: Visually align important data on the add new plugins screen

WordPress Trac noreply at wordpress.org
Fri May 13 06:57:34 UTC 2022


#55721: Visually align important data on the add new plugins screen
-------------------------------+-----------------------------
 Reporter:  jamesckemp         |      Owner:  (none)
     Type:  enhancement        |     Status:  new
 Priority:  normal             |  Milestone:  Awaiting Review
Component:  Plugins            |    Version:
 Severity:  minor              |   Keywords:
  Focuses:  ui, accessibility  |
-------------------------------+-----------------------------
 **Issue**:

 Currently, on the add new plugins screen, the important data for each
 plugin is misaligned, depending on the length of the short description.
 This makes it hard to quickly scan ratings, last updated dates, etc.

 **Solution**:

 Using flexbox, we can easily align the items with little effort, making
 the user experience much better.


 {{{
 #the-list {
         display: flex;
         flex-wrap: wrap;
 }

 .plugin-card {
         display: flex;
         flex-direction: column;
         justify-content: space-between;
 }
 }}}

-- 
Ticket URL: <https://core.trac.wordpress.org/ticket/55721>
WordPress Trac <https://core.trac.wordpress.org/>
WordPress publishing platform


More information about the wp-trac mailing list