Twenty Twenty: Fixes Customizer widget edit buttons being obstructed on smaller screens.

When the screen is smaller the edit buttons are obscured. This resolves that problem for the smaller screens and only targets the container for footer navigation and widgets.

Props sumitsingh, SergeyBiryukov, sabernhardt.
Fixes #49008.

Built from https://develop.svn.wordpress.org/trunk@58778


git-svn-id: http://core.svn.wordpress.org/trunk@58180 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Tammie Lister 2024-07-22 17:52:18 +00:00
parent 62ea483f79
commit c4fbdf5eab
3 changed files with 19 additions and 1 deletions

View File

@ -6416,3 +6416,12 @@ a.to-the-top > * {
top: 0;
}
}
@media ( max-width: 800px ) {
/* Customizer ---------------------------- */
.customize-partial-edit-shortcuts-shown .footer-nav-widgets-wrapper .footer-inner.section-inner {
width: calc(100% - 8rem);
}
}

View File

@ -6532,3 +6532,12 @@ a.to-the-top > * {
top: 0;
}
}
@media ( max-width: 800px ) {
/* Customizer ---------------------------- */
.customize-partial-edit-shortcuts-shown .footer-nav-widgets-wrapper .footer-inner.section-inner {
width: calc(100% - 8rem);
}
}

View File

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