From 4f7c987077ffafcd82475f8912cff9584d03e82c Mon Sep 17 00:00:00 2001 From: KerollesFathy Date: Wed, 10 Jun 2026 20:33:17 +0300 Subject: [PATCH] fix(style): raise dropdown z-index above sticky header cells Why this change: `.dt-dropdown__list` had z-index: 1 which placed it behind `.dt-cell--sticky-top` (z-index: 4), causing the column action menu to render underneath sticky header cells like the checkbox. --- src/style.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/style.css b/src/style.css index f272cff..a452fcb 100644 --- a/src/style.css +++ b/src/style.css @@ -235,7 +235,7 @@ &__list { position: fixed; min-width: 8rem; - z-index: 1; + z-index: 10; cursor: pointer; background-color: var(--dt-cell-bg); border-radius: var(--dt-border-radius);