Story 3.2 done

This commit is contained in:
2026-05-23 18:23:48 +02:00
parent d175f92806
commit a1e8886fce
66 changed files with 18258 additions and 1650 deletions
@@ -0,0 +1,25 @@
// StripOverlayLayer component styles
// Story 1.5: Original creation
// Story 3.2: Used by ConfirmationBar
//
// Import rule: All selectors scoped under .scrying-pool namespace
// Use --sp-* semantic tokens only, never Foundry tokens directly
.scrying-pool {
// Overlay layer container
.sp-strip__overlay-layer {
// Critical: These are set inline in JS per UX-DR6
// position: absolute;
// inset: 0;
// pointer-events: none;
// overflow: visible;
// Ensure proper stacking
z-index: 10;
// Child elements restore pointer-events
> * {
pointer-events: auto;
}
}
}