mnfst 0.5.121 → 0.5.123

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,24 +1,29 @@
1
1
  /* Manifest Sidebars */
2
2
 
3
+ /* A closed popover stays hidden even when a layout utility (.col/.row/.grid,
4
+ Tailwind flex) sets display on it — UNLAYERED so it outranks those utilities
5
+ in any cascade layer, in any cherry-picked bundle. Only the closed state is
6
+ forced; an open popover's display is left to its layout classes. */
7
+ [popover]:not(.unstyle):not(:popover-open) {
8
+ display: none;
9
+ }
10
+
3
11
  @layer base {
4
12
 
5
- /* Base popover styles: scale-only pop-in, no opacity animation (avoids the
6
- see-through artifact + Safari bounce). See manifest.dropdown.css. The
7
- sidebar's own slide-in (translateX) is defined in the components layer
8
- below, where it opts out of this scale-pop with `animation: none`. */
9
13
  @keyframes mnfst-popover-in {
10
- from { transform: scale(.9); }
11
- to { transform: none; }
12
- }
13
-
14
- :where([popover]):not(.unstyle) {
15
- display: none;
14
+ from {
15
+ transform: scale(.9);
16
+ }
16
17
 
17
- &:popover-open {
18
- display: flex;
19
- animation: mnfst-popover-in .15s ease-in both;
18
+ to {
19
+ transform: none;
20
20
  }
21
21
  }
22
+
23
+ :where([popover]):not(.unstyle):popover-open {
24
+ display: flex;
25
+ animation: mnfst-popover-in .15s ease-in both;
26
+ }
22
27
  }
23
28
 
24
29
  @layer components {