From 18aaa0ee7b73f60cfac3a404c492bbd02bfb7d0f Mon Sep 17 00:00:00 2001 From: josedario87 Date: Thu, 19 Feb 2026 15:25:18 -0600 Subject: [PATCH] feat: BackgroundPixelArt component, idle chrome mode, and absolute overlay layout - Extract ocean pixel art into dedicated BackgroundPixelArt.vue with 5 animated layers - Make titlebar, chat-header, and user-input position absolute overlays - Add idle mode: chrome fades out on mouse leave, messages fill entire window - Add fade-to-black edges on background for page blend --- .../components/FloatingTranscriptDebug.vue | 295 ++++++++++++------ .../transcript-debug/BackgroundPixelArt.vue | 161 ++++++++++ .../transcript-debug/PermissionApproval.vue | 20 +- .../transcript-debug/PlanApproval.vue | 20 +- .../src/components/transcript-debug/index.ts | 1 + 5 files changed, 373 insertions(+), 124 deletions(-) create mode 100644 frontend/src/components/transcript-debug/BackgroundPixelArt.vue diff --git a/frontend/src/components/FloatingTranscriptDebug.vue b/frontend/src/components/FloatingTranscriptDebug.vue index c931494..935a817 100644 --- a/frontend/src/components/FloatingTranscriptDebug.vue +++ b/frontend/src/components/FloatingTranscriptDebug.vue @@ -1,7 +1,7 @@