Monorepo for Aesthetic.Computer aesthetic.computer

fix: hide playback controls while context menu is open

Play/stop buttons are siblings of Monaco inside viz-container and
can't be z-indexed below the context menu. Hide them with
visibility:hidden when .context-menu-open is active.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>

+5
+5
system/public/kidlisp.com/index.html
··· 296 296 .context-menu-open .viz-container { 297 297 z-index: 100000 !important; 298 298 } 299 + /* Hide play/stop buttons while context menu is open so they don't overlay it */ 300 + .context-menu-open #playback-controls, 301 + .context-menu-open #mini-playback-controls { 302 + visibility: hidden; 303 + } 299 304 300 305 /* Flush Monaco text to top-left edge in stage mode */ 301 306 body.stage-mode:not(.device-mode) .monaco-editor .lines-content {