From e91fa307d0f0690ff9d71e17738ddf6e37cc28d0 Mon Sep 17 00:00:00 2001 From: csolisr Date: Fri, 7 Jul 2023 17:02:44 +0200 Subject: [PATCH] fix: tweak z-index to not clash with sidebar on mobile By default, the z-index of the toggle button is above the z-index of the sidebar on mobile devices. This fix tweaks the z-index so that it remains below the sidebar while it's open. --- showmore_dyn/showmore_dyn.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/showmore_dyn/showmore_dyn.css b/showmore_dyn/showmore_dyn.css index 93cc87a5..250d95c6 100644 --- a/showmore_dyn/showmore_dyn.css +++ b/showmore_dyn/showmore_dyn.css @@ -7,7 +7,7 @@ position: absolute; top: auto; bottom: 0; - z-index: 11; + z-index: 9; left: 0; display: none; }