Customizer: Make range controls full width.

Adds CSS for range controls in the Customizer to be as wide as possible allowing for smaller increments to be more easily obtained by the user.

Follow-up to [28930].

Props domainsupport, dlh, sabernhardt, audrasjb.
Fixes #54329.
Built from https://develop.svn.wordpress.org/trunk@51996


git-svn-id: http://core.svn.wordpress.org/trunk@51585 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
hellofromTonya 2021-11-02 23:19:59 +00:00
parent 22e4a52258
commit b87617e271
5 changed files with 7 additions and 5 deletions

View File

@ -950,7 +950,8 @@ p.customize-section-description {
.customize-control input[type="number"],
.customize-control input[type="search"],
.customize-control input[type="tel"],
.customize-control input[type="url"] {
.customize-control input[type="url"],
.customize-control input[type="range"] {
width: 100%;
margin: 0;
}

File diff suppressed because one or more lines are too long

View File

@ -949,7 +949,8 @@ p.customize-section-description {
.customize-control input[type="number"],
.customize-control input[type="search"],
.customize-control input[type="tel"],
.customize-control input[type="url"] {
.customize-control input[type="url"],
.customize-control input[type="range"] {
width: 100%;
margin: 0;
}

File diff suppressed because one or more lines are too long

View File

@ -16,7 +16,7 @@
*
* @global string $wp_version
*/
$wp_version = '5.9-alpha-51995';
$wp_version = '5.9-alpha-51996';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.