Canvas: valgt/aktiv boks alltid på topp (z-index 10)

Når en boks velges eller dras, får den z-index: 10 slik at den
alltid vises over andre bokser. Uvalgte bokser har z-index: 1.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
vegard 2026-03-19 07:19:06 +00:00
parent 88dd490d07
commit cf992b6f58

View file

@ -506,6 +506,7 @@
style:top="{obj.y}px" style:top="{obj.y}px"
style:width="{obj.width}px" style:width="{obj.width}px"
style:height="{obj.height}px" style:height="{obj.height}px"
style:z-index={selectedIds.has(obj.id) ? 10 : 1}
> >
{@render renderObject(obj)} {@render renderObject(obj)}
</div> </div>