From c3be89e1dd8f473625a2a6ec182be7e4d71f251a Mon Sep 17 00:00:00 2001 From: Md Bayazid Bostame Date: Mon, 30 Mar 2026 12:54:32 +0200 Subject: [PATCH] fix: raise header overlays above dashboard surfaces --- backend/workflows/static/workflows/css/app_chrome.css | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/backend/workflows/static/workflows/css/app_chrome.css b/backend/workflows/static/workflows/css/app_chrome.css index 48271f0..2d461e5 100644 --- a/backend/workflows/static/workflows/css/app_chrome.css +++ b/backend/workflows/static/workflows/css/app_chrome.css @@ -14,6 +14,9 @@ box-sizing: border-box; width: min(var(--app-shell-width), 100%); margin: 0 auto 12px; + position: relative; + z-index: 30; + overflow: visible; display: flex; justify-content: space-between; align-items: flex-start; @@ -137,6 +140,9 @@ box-sizing: border-box; width: 100%; margin: 0; + position: relative; + z-index: 30; + overflow: visible; padding: 22px 24px 18px; border: 0; border-bottom: 1px solid rgba(217, 227, 238, 0.9); @@ -174,6 +180,8 @@ display: flex; margin-left: auto; flex: 0 0 auto; + position: relative; + z-index: 31; gap: 8px; flex-wrap: wrap; justify-content: flex-end;