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.

git-svn-id: https://develop.svn.wordpress.org/trunk@51996 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Tonya Mork 2021-11-02 23:18:46 +00:00
parent 88835bea75
commit 53f646d382

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;
}