fix(ui): folder filters hidden behind results (#13908)

Fixes https://github.com/payloadcms/payload/issues/13886

Search filters would be hidden behind the table results. This PR adds
css to adjust the z-index of the searchbar when it has an active popup.
This commit is contained in:
Jarrod Flesch
2025-09-23 12:24:06 -04:00
committed by GitHub
parent 4975b8dd4b
commit 5c81342bce

View File

@@ -18,6 +18,10 @@
grid-template-columns: auto 1fr auto; grid-template-columns: auto 1fr auto;
} }
&:has(.popup--active) {
z-index: 1;
}
.icon--search { .icon--search {
grid-column: 1/2; grid-column: 1/2;
grid-row: 1/2; grid-row: 1/2;