Story 3.2 done
This commit is contained in:
@@ -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;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user