From bfe26915b66a9aa39c24aa1c83b7a955a57df65f Mon Sep 17 00:00:00 2001 From: Himanshu Pathak Date: Thu, 7 May 2026 18:45:31 +0530 Subject: [PATCH 1/3] Forms: increase ht to 40px --- src/wp-admin/css/forms.css | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/wp-admin/css/forms.css b/src/wp-admin/css/forms.css index b48825a1ef5a3..52dfefd436859 100644 --- a/src/wp-admin/css/forms.css +++ b/src/wp-admin/css/forms.css @@ -1775,6 +1775,12 @@ table.form-table td .updated p { margin-bottom: 0; } + p.search-box input[type="search"], + p.search-box input[type="text"] { + min-height: 40px; + padding: 0 12px; + } + p.search-box input[type="submit"] { margin-bottom: 10px; } @@ -1919,6 +1925,7 @@ table.form-table td .updated p { .options-general-php input[type="text"].small-text { max-width: 6.25em; margin: 0; + min-height: 40px; } /* Privacy Policy settings screen */ From 94a5f45b527204ad90b008072c0247675e50a2dc Mon Sep 17 00:00:00 2001 From: Himanshu Pathak Date: Thu, 7 May 2026 18:50:52 +0530 Subject: [PATCH 2/3] Add plugin: Increase min-height of form and dropdown to 40px --- src/wp-admin/css/common.css | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/src/wp-admin/css/common.css b/src/wp-admin/css/common.css index fa7180874250f..1c8ae9f04d517 100644 --- a/src/wp-admin/css/common.css +++ b/src/wp-admin/css/common.css @@ -1424,6 +1424,17 @@ th.action-links { padding: 0; width: 50%; } + + .wp-filter .search-form input[type="search"] { + min-height: 40px; + padding: 0 12px; + } + + .wp-filter .search-form select, + .wp-filter .filter-items select { + min-height: 40px; + padding: 0 24px 0 12px; + } } @media only screen and (max-width: 320px) { From 220cc0c9ff6ea1c3dbe174ce73edb005bd9e7448 Mon Sep 17 00:00:00 2001 From: Himanshu Pathak Date: Thu, 7 May 2026 18:57:25 +0530 Subject: [PATCH 3/3] Media library: Increase min-ht to 40px --- src/wp-admin/css/media.css | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/src/wp-admin/css/media.css b/src/wp-admin/css/media.css index ae21bb77d3f82..ac86eadf4688a 100644 --- a/src/wp-admin/css/media.css +++ b/src/wp-admin/css/media.css @@ -1413,6 +1413,21 @@ audio, video { top: 46px; right: 10px; } + + .media-frame.mode-grid .media-toolbar select { + min-height: 40px; + padding: 0 24px 0 12px; + } + + .media-frame.mode-grid .media-toolbar input[type="search"] { + min-height: 40px; + padding: 0 12px; + } + + .media-frame.mode-grid .media-toolbar .button { + min-height: 40px; + padding: 0 14px; + } } @media only screen and (max-width: 600px) {