From d7e36cb22a61197546912d47cd98601d8ed72d29 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dani=C3=ABl=20van=20der=20Winden?= Date: Tue, 15 Oct 2024 12:10:21 +0200 Subject: [PATCH] Updated media query (#21303) Fixes https://linear.app/tryghost/issue/DES-317/adminx-members-list-header-column-overlaps-sidebar-in-mobile-viewport Added a positioning and z-index change to the `thead` within the media query to make sure it moved back behind the overlay. --- ghost/admin/app/styles/components/lists.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/ghost/admin/app/styles/components/lists.css b/ghost/admin/app/styles/components/lists.css index 127e0014f7..0d1fd7f5e9 100644 --- a/ghost/admin/app/styles/components/lists.css +++ b/ghost/admin/app/styles/components/lists.css @@ -507,6 +507,11 @@ ul.nostyle li { padding-left: 0; padding-right: 4vw; } + + .gh-list-scrolling thead { + position: relative; + z-index: 780; + } } @media (max-width: 450px) {