Fix node selector z-index issue in recipe modal

Change node-selector z-index from 1000 to var(--z-overlay) (2000)
to ensure the model selector UI appears above the recipe modal
when sending checkpoints to workflow with multiple targets.
This commit is contained in:
Will Miao
2026-03-09 19:29:13 +08:00
parent 97979d9e7c
commit ee84b30023

View File

@@ -130,7 +130,7 @@
max-height: 400px;
overflow-y: auto;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
z-index: 1000;
z-index: var(--z-overlay);
display: none;
backdrop-filter: blur(10px);
}