@proveanything/smartlinks-utils-ui 0.9.3 → 0.9.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.
@@ -410,6 +410,9 @@
410
410
  .resize-none {
411
411
  resize: none;
412
412
  }
413
+ .resize {
414
+ resize: both;
415
+ }
413
416
  .appearance-none {
414
417
  -webkit-appearance: none;
415
418
  -moz-appearance: none;
@@ -2542,15 +2545,26 @@
2542
2545
  overflow-y: auto;
2543
2546
  padding: 1rem;
2544
2547
  }
2545
- .ra-confirm-root {
2546
- position: fixed;
2547
- inset: 0;
2548
- z-index: 2147483000;
2549
- display: flex;
2550
- align-items: center;
2551
- justify-content: center;
2548
+ .ra-confirm-root,
2549
+ .ra-shell.ra-confirm-root {
2550
+ position: fixed !important;
2551
+ inset: 0 !important;
2552
+ top: 0 !important;
2553
+ left: 0 !important;
2554
+ right: 0 !important;
2555
+ bottom: 0 !important;
2556
+ width: 100vw !important;
2557
+ height: 100vh !important;
2558
+ z-index: 2147483000 !important;
2559
+ display: flex !important;
2560
+ align-items: center !important;
2561
+ justify-content: center !important;
2552
2562
  padding: 1rem;
2553
- background: transparent;
2563
+ margin: 0 !important;
2564
+ background: transparent !important;
2565
+ float: none !important;
2566
+ transform: none !important;
2567
+ pointer-events: auto;
2554
2568
  }
2555
2569
  .ra-confirm-root .ra-confirm-backdrop {
2556
2570
  position: absolute;
@@ -2909,6 +2923,25 @@
2909
2923
  flex-direction: column;
2910
2924
  gap: 0.125rem;
2911
2925
  }
2926
+ .ra-row-menu-portal {
2927
+ position: fixed !important;
2928
+ right: auto !important;
2929
+ z-index: 1000 !important;
2930
+ margin: 0 !important;
2931
+ float: none !important;
2932
+ top: 0;
2933
+ left: 0;
2934
+ min-width: 11rem;
2935
+ padding: 0.25rem;
2936
+ border-radius: 0.5rem;
2937
+ background: hsl(var(--ra-surface));
2938
+ border: 1px solid hsl(var(--ra-border));
2939
+ box-shadow: 0 12px 28px -10px hsl(0 0% 0% / 0.25);
2940
+ display: flex;
2941
+ flex-direction: column;
2942
+ gap: 0.125rem;
2943
+ color: hsl(var(--ra-text));
2944
+ }
2912
2945
  .ra-shell .ra-row-menu-item {
2913
2946
  display: inline-flex;
2914
2947
  align-items: center;
@@ -3382,7 +3415,7 @@
3382
3415
  .ra-shell .ra-preview-reopen {
3383
3416
  position: absolute;
3384
3417
  top: 50%;
3385
- right: 0.5rem;
3418
+ right: -1.25rem;
3386
3419
  transform: translateY(-50%);
3387
3420
  z-index: 4;
3388
3421
  display: inline-flex;
@@ -3409,8 +3442,8 @@
3409
3442
  text-transform: uppercase;
3410
3443
  }
3411
3444
  .ra-shell .ra-preview-reopen:hover {
3412
- right: 0.65rem;
3413
- transform: translateY(-50%) translateX(0);
3445
+ right: -1.4rem;
3446
+ transform: translateY(-50%);
3414
3447
  filter: brightness(0.95);
3415
3448
  box-shadow: 0 2px 4px hsl(0 0% 0% / 0.10), 0 12px 24px -8px hsl(var(--ra-accent) / 0.65);
3416
3449
  }
@@ -3531,13 +3564,16 @@
3531
3564
  font-weight: 500;
3532
3565
  }
3533
3566
  .ra-saveall-overlay {
3534
- position: fixed;
3535
- inset: 0;
3536
- z-index: 100;
3567
+ position: fixed !important;
3568
+ inset: 0 !important;
3569
+ width: 100vw !important;
3570
+ height: 100vh !important;
3571
+ margin: 0 !important;
3572
+ z-index: 2147483000 !important;
3537
3573
  background: hsl(0 0% 0% / 0.45);
3538
- display: flex;
3539
- align-items: center;
3540
- justify-content: center;
3574
+ display: flex !important;
3575
+ align-items: center !important;
3576
+ justify-content: center !important;
3541
3577
  padding: 1rem;
3542
3578
  animation: ra-confirm-fade .12s ease-out;
3543
3579
  }