Monorepo for Aesthetic.Computer aesthetic.computer
4
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix: also boost viz-container z-index when context menu is open

The play/stop buttons and editor-header have z-index within the
editor panel. Boost .viz-container:has(.context-view) to 100000
so Monaco's context menu renders above all sibling controls.

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

+5 -2
+5 -2
system/public/kidlisp.com/index.html
··· 291 291 padding: 0 !important; 292 292 } 293 293 294 - /* Only boost editor panel z-index when context menu is open, 295 - so it doesn't permanently cover the center-square or other elements. */ 294 + /* Boost z-index of editor containers only when context menu is open, 295 + so it renders above play buttons, header, center-square, etc. */ 296 296 .editor-panel:has(.context-view) { 297 + z-index: 100000; 298 + } 299 + .viz-container:has(.context-view) { 297 300 z-index: 100000; 298 301 } 299 302