@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.
package/dist/index.css CHANGED
@@ -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;
@@ -2336,6 +2360,9 @@
2336
2360
  .z-50 {
2337
2361
  z-index: 50;
2338
2362
  }
2363
+ .z-\[1000\] {
2364
+ z-index: 1000;
2365
+ }
2339
2366
  .col-span-2 {
2340
2367
  grid-column: span 2 / span 2;
2341
2368
  }
@@ -2367,6 +2394,9 @@
2367
2394
  .mb-1 {
2368
2395
  margin-bottom: 0.25rem;
2369
2396
  }
2397
+ .mb-1\.5 {
2398
+ margin-bottom: 0.375rem;
2399
+ }
2370
2400
  .mb-2 {
2371
2401
  margin-bottom: 0.5rem;
2372
2402
  }
@@ -2454,6 +2484,9 @@
2454
2484
  .h-2\.5 {
2455
2485
  height: 0.625rem;
2456
2486
  }
2487
+ .h-24 {
2488
+ height: 6rem;
2489
+ }
2457
2490
  .h-3 {
2458
2491
  height: 0.75rem;
2459
2492
  }
@@ -2499,6 +2532,9 @@
2499
2532
  .max-h-\[85vh\] {
2500
2533
  max-height: 85vh;
2501
2534
  }
2535
+ .max-h-\[min\(36rem\,calc\(100vh-2rem\)\)\] {
2536
+ max-height: min(36rem, calc(100vh - 2rem));
2537
+ }
2502
2538
  .min-h-0 {
2503
2539
  min-height: 0px;
2504
2540
  }
@@ -2544,6 +2580,9 @@
2544
2580
  .w-9 {
2545
2581
  width: 2.25rem;
2546
2582
  }
2583
+ .w-\[min\(28rem\,calc\(100vw-2rem\)\)\] {
2584
+ width: min(28rem, calc(100vw - 2rem));
2585
+ }
2547
2586
  .w-full {
2548
2587
  width: 100%;
2549
2588
  }
@@ -2707,6 +2746,9 @@
2707
2746
  .gap-2 {
2708
2747
  gap: 0.5rem;
2709
2748
  }
2749
+ .gap-2\.5 {
2750
+ gap: 0.625rem;
2751
+ }
2710
2752
  .gap-3 {
2711
2753
  gap: 0.75rem;
2712
2754
  }