Skip to content

Commit 9c9b216

Browse files
committed
fix: align z-index with "sticky" level
1 parent c6641c8 commit 9c9b216

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

packages/modules/data-widgets/src/themesource/datawidgets/web/_datagrid-filters.scss

+1-1
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ $dg-item-min-height: 32px;
7070
padding: 0;
7171
margin: 0;
7272
background: var(--bg-color-secondary, $dg-background-color);
73-
z-index: 55;
73+
z-index: 51;
7474
border-radius: 8px;
7575
list-style-type: none;
7676
box-shadow: 0 2px 20px 1px rgba(5, 15, 129, 0.05), 0 2px 16px 0 rgba(33, 43, 54, 0.08);

packages/modules/data-widgets/src/themesource/datawidgets/web/_datagrid-scroll.scss

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
.container-stuck + .table .th {
22
position: -webkit-sticky; /* Safari */
33
position: sticky;
4-
z-index: 10;
4+
z-index: 50;
55
}
66

77
/**
@@ -10,7 +10,7 @@
1010
* If we moved headers out of the grid body, please, remove this piece of guano.
1111
*/
1212
.container-stuck + .table .th:has(.filter-selectors.visible) {
13-
z-index: 20;
13+
z-index: 51;
1414
}
1515

1616
.widget-datagrid-content.infinite-loading {

0 commit comments

Comments
 (0)