From 6d05c7db0d9ca0aac0dff1449d26892f014ae94b Mon Sep 17 00:00:00 2001 From: John Blackbourn Date: Mon, 26 Sep 2016 16:45:22 +0000 Subject: [PATCH] Administration: Remove the `input` qualifier for the `.regular-text` class rule. This allows for other elements such as textareas to be styled with the same width as regular text inputs. Fixes #20928 Props curdin git-svn-id: https://develop.svn.wordpress.org/trunk@38653 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-admin/css/forms.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wp-admin/css/forms.css b/src/wp-admin/css/forms.css index 8a1bf22fae..1472dd9d53 100644 --- a/src/wp-admin/css/forms.css +++ b/src/wp-admin/css/forms.css @@ -386,7 +386,7 @@ textarea.large-text { width: 99%; } -input.regular-text { +.regular-text { width: 25em; }