26 lines
625 B
Plaintext
26 lines
625 B
Plaintext
// 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;
|
|
}
|
|
}
|
|
}
|