Themes: Fix layout issue on the Themes page background overlay.

This changeset replaces the `780px` media query `max-width` value with `782px` for better consistency and to fix a responsive layout issue.

Props zodiac1978, ironprogrammer, orestissam, audrasjb, monzuralam.
Fixes #58164.



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


git-svn-id: http://core.svn.wordpress.org/trunk@55616 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
audrasjb 2023-06-29 06:48:24 +00:00
parent 9fa202a4f9
commit f7a1d86d17
5 changed files with 5 additions and 5 deletions

View File

@ -841,7 +841,7 @@ body.folded .theme-browser ~ .theme-overlay .theme-wrap {
}
}
@media only screen and (max-width: 780px) {
@media only screen and (max-width: 782px) {
body.folded .theme-overlay .theme-wrap,
.theme-overlay .theme-wrap {
top: 0; /* The adminmenu isn't fixed on mobile, so this can use the full viewport height */

File diff suppressed because one or more lines are too long

View File

@ -840,7 +840,7 @@ body.folded .theme-browser ~ .theme-overlay .theme-wrap {
}
}
@media only screen and (max-width: 780px) {
@media only screen and (max-width: 782px) {
body.folded .theme-overlay .theme-wrap,
.theme-overlay .theme-wrap {
top: 0; /* The adminmenu isn't fixed on mobile, so this can use the full viewport height */

File diff suppressed because one or more lines are too long

View File

@ -16,7 +16,7 @@
*
* @global string $wp_version
*/
$wp_version = '6.3-beta2-56103';
$wp_version = '6.3-beta2-56104';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.