From c2147c7089ff24ad9b5684a9bf6e2ce105e136eb Mon Sep 17 00:00:00 2001 From: FerOliveira-dev Date: Sat, 30 May 2026 19:25:45 -0300 Subject: [PATCH] fix: increase prompt-editor z-index to 30 to prevent activity-dock overlap --- src/client/src/components/shared.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/client/src/components/shared.ts b/src/client/src/components/shared.ts index b3fc6cb..c037f34 100644 --- a/src/client/src/components/shared.ts +++ b/src/client/src/components/shared.ts @@ -442,7 +442,7 @@ export const actionPaletteStyles = css` `; export const promptEditorStyles = css` - :host { position: relative; z-index: 5; display: block; color: var(--pi-text); font: 14px system-ui, sans-serif; } + :host { position: relative; z-index: 30; display: block; color: var(--pi-text); font: 14px system-ui, sans-serif; } footer { display: grid; grid-template-columns: minmax(0, 1fr); gap: 8px; padding: 12px; border-top: 1px solid var(--pi-border); } footer.shell-mode { border-top-color: var(--pi-success); background: var(--pi-success-bg); } .editor-wrap { position: relative; min-width: 0; }