Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion src/admin/pages/site/panels/AgentPanel/AgentPanel.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,10 @@
--panel-h: 480px;
left: var(--panel-x);
top: var(--panel-y);
z-index: 50;
/* Matches the shared FloatingWindow layer (90), which is the floating tier
above the sidebars (85). At 50 this sat *below* a docked sidebar panel and
became unreachable. The docked variant resets to auto below. */
z-index: 90;
width: var(--panel-w);
height: var(--panel-h);
min-width: 280px;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,10 @@
left: var(--panel-x);
top: var(--panel-y);
bottom: auto;
z-index: 50;
/* Matches the shared FloatingWindow layer (90), which is the floating tier
above the sidebars (85). At 50 this sat *below* a docked sidebar panel.
The docked variant resets to auto below. */
z-index: 90;
display: flex;
flex-direction: column;
width: var(--panel-w);
Expand Down