fix(dashboard): raise model dropdown z-index above floating windows

Raise CustomModelDropdown portal z-index from 1200 to 11000 so model
selection popups render above the shared floating-window stack (10100+)
instead of being obscured by popped-out ChatView and other floating modals.
This commit is contained in:
gsxdsm
2026-06-23 16:47:08 -07:00
parent e9a6955b49
commit be0cab1d43

View File

@@ -67,8 +67,8 @@
border: 1px solid var(--border);
border-radius: var(--radius);
box-shadow: var(--shadow);
/* Must sit above floating dashboard panels. */
z-index: 1200;
/* Must sit above floating dashboard panels and the shared floating-window stack (10100+). */
z-index: 11000;
max-height: 320px;
display: flex;
flex-direction: column;