diff --git a/core/profiles/demo_umami/themes/umami/css/base.css b/core/profiles/demo_umami/themes/umami/css/base.css index d30a770469..87025795f0 100644 --- a/core/profiles/demo_umami/themes/umami/css/base.css +++ b/core/profiles/demo_umami/themes/umami/css/base.css @@ -274,7 +274,9 @@ fieldset { * Prevent regression due to explicit line-height applied to these elements in * normalize.css 7.0.0. */ -button, input, textarea { +button, +input:not([type="file"]), +textarea { line-height: 1.5rem; } optgroup { diff --git a/core/themes/bartik/css/components/form.css b/core/themes/bartik/css/components/form.css index 42a132138b..2ba0ea70bc 100644 --- a/core/themes/bartik/css/components/form.css +++ b/core/themes/bartik/css/components/form.css @@ -96,7 +96,8 @@ textarea { * Prevent regression due to explicit line-height applied to these elements in * normalize.css 7.0.0. */ -input, button{ +input:not([type="file"]), +button { line-height: 1.21875rem; } diff --git a/core/themes/seven/css/components/form.css b/core/themes/seven/css/components/form.css index 0e283dee4b..d5b0940878 100644 --- a/core/themes/seven/css/components/form.css +++ b/core/themes/seven/css/components/form.css @@ -368,7 +368,7 @@ div.filter-options select { * elements in normalize.css 7.0.0. */ button, -input, +input:not([type="file"]), select { line-height: 1.25rem; }