Skip to content

Commit 4f7c987

Browse files
committed
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.
1 parent dd8cc81 commit 4f7c987

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/style.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@
235235
&__list {
236236
position: fixed;
237237
min-width: 8rem;
238-
z-index: 1;
238+
z-index: 10;
239239
cursor: pointer;
240240
background-color: var(--dt-cell-bg);
241241
border-radius: var(--dt-border-radius);

0 commit comments

Comments
 (0)