ripcrypt/templates/Apps/popover.css
Oliver-Akins 0135ca1124 Update the system CSS to use sub-layers
This is so I have more granular control over interactions between resets and intentional styles
2025-04-11 21:06:40 -06:00

17 lines
310 B
CSS

.ripcrypt.popover {
box-sizing: border-box;
&.frameless {
border-width: 2px;
border-style: solid;
border-color: transparent;
border-radius: 4px;
position: absolute;
z-index: calc(var(--z-index-tooltip) - 5);
transform-origin: top left;
&.locked {
border-color: var(--accent-3);
}
}
}