Make WordPress Core


Ignore:
Timestamp:
06/30/2026 08:14:22 PM (2 months ago)
Author:
joedolson
Message:

Admin Reskin: Fix mobile list table control heights.

On the mobile admin viewport, interactive elements on list table pages had inconsistent heights. Give them a consistent height.

Follow-up to [61645].

Reviewed by joedolson.
Merges [62400] to the 7.0 branch.

Props andrewssanya, sainathpoojary, wildworks.
See #64999.

Location:
branches/7.0
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/7.0

  • branches/7.0/src/wp-admin/css/forms.css

    r62274 r62602  
    523523#post-query-submit {
    524524        margin: 0 8px 0 0;
    525         min-height: 32px;
    526         line-height: 2.30769231; /* 30px for 32px height with 13px font */
    527         padding: 0 12px;
    528525}
    529526
     
    17581755        }
    17591756
     1757        .wp-core-ui .tablenav input[type="text"],
     1758        .wp-core-ui .tablenav input[type="password"],
     1759        .wp-core-ui .tablenav input[type="date"],
     1760        .wp-core-ui .tablenav input[type="datetime"],
     1761        .wp-core-ui .tablenav input[type="datetime-local"],
     1762        .wp-core-ui .tablenav input[type="email"],
     1763        .wp-core-ui .tablenav input[type="month"],
     1764        .wp-core-ui .tablenav input[type="number"],
     1765        .wp-core-ui .tablenav input[type="search"],
     1766        .wp-core-ui .tablenav input[type="tel"],
     1767        .wp-core-ui .tablenav input[type="time"],
     1768        .wp-core-ui .tablenav input[type="url"],
     1769        .wp-core-ui .tablenav input[type="week"],
     1770        .wp-core-ui .tablenav select {
     1771                min-height: 40px;
     1772        }
     1773
     1774        .wp-core-ui .tablenav .button {
     1775                min-height: 40px;
     1776                line-height: 2.71428571;
     1777                padding: 0 14px;
     1778        }
     1779
    17601780        p.search-box {
    17611781                float: none;
     
    17741794                width: 100%;
    17751795                margin-bottom: 0;
     1796        }
     1797
     1798        p.search-box input[type="search"],
     1799        p.search-box input[type="text"] {
     1800                min-height: 40px;
    17761801        }
    17771802
Note: See TracChangeset for help on using the changeset viewer.