Skip to content

Commit eabb149

Browse files
fix: css workaround to open filter dropdown hidden
1 parent bb9cd1b commit eabb149

1 file changed

Lines changed: 9 additions & 0 deletions

File tree

src/authz-module/index.scss

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,15 @@
1414
.pgn__data-table tr:has(span[data-role="Global Staff"]) {
1515
background-color: var(--pgn-color-primary-200);
1616
}
17+
/*
18+
This is a workaround to fix the height of the table when the dropdown menu is open,
19+
to prevent the table from collapsing and hiding the dropdown menu.
20+
The min-height value is set to 700px based on the height of the table and the dropdown menu,
21+
but it can be adjusted if needed.
22+
*/
23+
.pgn__data-table-layout-wrapper:has(.dropdown-menu.show) {
24+
min-height: 700px;
25+
}
1726

1827
hr {
1928
border-right: var(--pgn-size-border-width) solid var(--pgn-color-border);

0 commit comments

Comments
 (0)