[wp-trac] [WordPress Trac] #63574: Post Options Divider Missing in Mobile View on Post List Page (WP-Admin) (Playground)

WordPress Trac noreply at wordpress.org
Mon Jun 16 09:36:23 UTC 2025


#63574: Post Options Divider Missing in Mobile View on Post List Page (WP-Admin)
(Playground)
-------------------------------+-------------------------------------
 Reporter:  dhrumilk           |       Owner:  (none)
     Type:  defect (bug)       |      Status:  new
 Priority:  normal             |   Milestone:  Awaiting Review
Component:  Posts, Post Types  |     Version:
 Severity:  normal             |  Resolution:
 Keywords:  needs-patch        |     Focuses:  ui, accessibility, css
-------------------------------+-------------------------------------

Comment (by mikinc860):

 To resolve the issue of hidden row actions in the Posts list view on
 mobile devices, the following CSS rule should be modified in:

 wp-admin/css/list-tables.css

 **Problematic Rule:**
 {{{
 @media screen and (max-width: 782px) {
     body:not(.plugins-php) .row-actions {
         display: flex;
         flex-wrap: wrap;
         color: transparent;
         gap: 8px;
     }
 }

 }}}

 **Recommended Fix:**
 {{{
     body:not(.plugins-php) .row-actions {
         display: flex;
         flex-wrap: wrap;
         gap: 8px;
     }
 }}}


 color: transparent; is incorrectly hiding the action links (Edit, Trash,
 View, etc.) on mobile screen widths (max-width: 782px).

 Removing this line restores default link visibility and ensures consistent
 UX across all screen sizes.

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


More information about the wp-trac mailing list