From 814eb1f1a193c8eccd9e8a14a42abda308a55d42 Mon Sep 17 00:00:00 2001 From: Anthony LC Date: Tue, 2 Sep 2025 14:45:57 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B(frontend)=20fix=20modal=20backdrop?= =?UTF-8?q?=20z-index?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Recent upgrade of ui-kit removed the z-index for the modal backdrop, causing it to be hidden behind other elements. This commit restores the z-index to ensure the modal backdrop is displayed correctly. --- .../apps/impress/src/cunningham/cunningham-style.css | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/frontend/apps/impress/src/cunningham/cunningham-style.css b/src/frontend/apps/impress/src/cunningham/cunningham-style.css index 79e23641..3a1b5c8d 100644 --- a/src/frontend/apps/impress/src/cunningham/cunningham-style.css +++ b/src/frontend/apps/impress/src/cunningham/cunningham-style.css @@ -38,6 +38,13 @@ ); } +/** + * Modal +*/ +.c__modal__backdrop { + z-index: 1000; +} + /** * Tooltip */