@proveanything/smartlinks-utils-ui 0.12.2 → 0.12.5

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.
@@ -1229,6 +1229,8 @@
1229
1229
  }
1230
1230
  .ra-shell .ra-row:hover .ra-row-menu-trigger,
1231
1231
  .ra-shell .ra-card-hover:hover .ra-row-menu-trigger,
1232
+ .ra-shell .ra-item-row:hover .ra-row-menu-trigger,
1233
+ .ra-shell .ra-item-row[data-selected=true] .ra-row-menu-trigger,
1232
1234
  .ra-shell .ra-row-menu-trigger:focus-visible,
1233
1235
  .ra-shell .ra-row-menu-trigger[aria-expanded=true] {
1234
1236
  opacity: 1;
@@ -1724,6 +1726,28 @@
1724
1726
  margin: 0;
1725
1727
  padding: 0;
1726
1728
  }
1729
+ .ra-shell .ra-sibling-list .ra-row-shell {
1730
+ position: relative;
1731
+ display: flex;
1732
+ align-items: stretch;
1733
+ }
1734
+ .ra-shell .ra-sibling-list .ra-row-shell > .ra-row {
1735
+ flex: 1 1 auto;
1736
+ min-width: 0;
1737
+ }
1738
+ .ra-shell .ra-sibling-list .ra-row-shell > .ra-row-menu-wrap {
1739
+ flex: 0 0 auto;
1740
+ display: flex;
1741
+ align-items: center;
1742
+ padding-right: 0.35rem;
1743
+ opacity: 0;
1744
+ transition: opacity .12s ease;
1745
+ }
1746
+ .ra-shell .ra-sibling-list .ra-row-shell:hover > .ra-row-menu-wrap,
1747
+ .ra-shell .ra-sibling-list .ra-row-shell:focus-within > .ra-row-menu-wrap,
1748
+ .ra-shell .ra-sibling-list .ra-row-shell[data-selected=true] > .ra-row-menu-wrap {
1749
+ opacity: 1;
1750
+ }
1727
1751
  .ra-shell .ra-sibling-footer {
1728
1752
  flex-shrink: 0;
1729
1753
  padding: 0.5rem;
@@ -2518,6 +2542,9 @@
2518
2542
  .z-50 {
2519
2543
  z-index: 50;
2520
2544
  }
2545
+ .z-\[1000\] {
2546
+ z-index: 1000;
2547
+ }
2521
2548
  .col-span-2 {
2522
2549
  grid-column: span 2 / span 2;
2523
2550
  }
@@ -2549,6 +2576,9 @@
2549
2576
  .mb-1 {
2550
2577
  margin-bottom: 0.25rem;
2551
2578
  }
2579
+ .mb-1\.5 {
2580
+ margin-bottom: 0.375rem;
2581
+ }
2552
2582
  .mb-2 {
2553
2583
  margin-bottom: 0.5rem;
2554
2584
  }
@@ -2636,6 +2666,9 @@
2636
2666
  .h-2\.5 {
2637
2667
  height: 0.625rem;
2638
2668
  }
2669
+ .h-24 {
2670
+ height: 6rem;
2671
+ }
2639
2672
  .h-3 {
2640
2673
  height: 0.75rem;
2641
2674
  }
@@ -2681,6 +2714,9 @@
2681
2714
  .max-h-\[85vh\] {
2682
2715
  max-height: 85vh;
2683
2716
  }
2717
+ .max-h-\[min\(36rem\,calc\(100vh-2rem\)\)\] {
2718
+ max-height: min(36rem, calc(100vh - 2rem));
2719
+ }
2684
2720
  .min-h-0 {
2685
2721
  min-height: 0px;
2686
2722
  }
@@ -2726,6 +2762,9 @@
2726
2762
  .w-9 {
2727
2763
  width: 2.25rem;
2728
2764
  }
2765
+ .w-\[min\(28rem\,calc\(100vw-2rem\)\)\] {
2766
+ width: min(28rem, calc(100vw - 2rem));
2767
+ }
2729
2768
  .w-full {
2730
2769
  width: 100%;
2731
2770
  }
@@ -2889,6 +2928,9 @@
2889
2928
  .gap-2 {
2890
2929
  gap: 0.5rem;
2891
2930
  }
2931
+ .gap-2\.5 {
2932
+ gap: 0.625rem;
2933
+ }
2892
2934
  .gap-3 {
2893
2935
  gap: 0.75rem;
2894
2936
  }