From 439bf1296fa68755754bfc5b1ad96292a3296a7d Mon Sep 17 00:00:00 2001 From: audrasjb Date: Sun, 10 Apr 2022 20:36:02 +0000 Subject: [PATCH] Twenty Twenty: Improve padding for `number` input type. This changes improves lateral padding for `number` input types in Twenty Twenty bundled theme. Props helgatheviking, sabernhardt, chaion07, poena, justinahinon, ugyensupport, nayana123. Fixes #53115. Built from https://develop.svn.wordpress.org/trunk@53120 git-svn-id: http://core.svn.wordpress.org/trunk@52709 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-content/themes/twentytwenty/style-rtl.css | 4 ++++ wp-content/themes/twentytwenty/style.css | 4 ++++ wp-includes/version.php | 2 +- 3 files changed, 9 insertions(+), 1 deletion(-) diff --git a/wp-content/themes/twentytwenty/style-rtl.css b/wp-content/themes/twentytwenty/style-rtl.css index 0e5191d247..1216a4e7cd 100644 --- a/wp-content/themes/twentytwenty/style-rtl.css +++ b/wp-content/themes/twentytwenty/style-rtl.css @@ -791,6 +791,10 @@ textarea { width: 100%; } +input[type="number"] { + padding-left: 0.5rem; +} + select { font-size: 1em; } diff --git a/wp-content/themes/twentytwenty/style.css b/wp-content/themes/twentytwenty/style.css index 27053cc3e0..6f0470bffa 100644 --- a/wp-content/themes/twentytwenty/style.css +++ b/wp-content/themes/twentytwenty/style.css @@ -797,6 +797,10 @@ textarea { width: 100%; } +input[type="number"] { + padding-right: 0.5rem; +} + select { font-size: 1em; } diff --git a/wp-includes/version.php b/wp-includes/version.php index 1ca2834947..3180e1d21a 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.0-alpha-53119'; +$wp_version = '6.0-alpha-53120'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.