From b830d5678ea69aee5d3ae26854720a45f742e8fe Mon Sep 17 00:00:00 2001 From: Jb Audras Date: Thu, 29 Jun 2023 06:46:40 +0000 Subject: [PATCH] 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. git-svn-id: https://develop.svn.wordpress.org/trunk@56104 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-admin/css/themes.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wp-admin/css/themes.css b/src/wp-admin/css/themes.css index 61e290fe86..6c0475ec21 100644 --- a/src/wp-admin/css/themes.css +++ b/src/wp-admin/css/themes.css @@ -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 */