@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.
@@ -98,6 +98,9 @@
98
98
  .z-50 {
99
99
  z-index: 50;
100
100
  }
101
+ .z-\[1000\] {
102
+ z-index: 1000;
103
+ }
101
104
  .col-span-2 {
102
105
  grid-column: span 2 / span 2;
103
106
  }
@@ -129,6 +132,9 @@
129
132
  .mb-1 {
130
133
  margin-bottom: 0.25rem;
131
134
  }
135
+ .mb-1\.5 {
136
+ margin-bottom: 0.375rem;
137
+ }
132
138
  .mb-2 {
133
139
  margin-bottom: 0.5rem;
134
140
  }
@@ -216,6 +222,9 @@
216
222
  .h-2\.5 {
217
223
  height: 0.625rem;
218
224
  }
225
+ .h-24 {
226
+ height: 6rem;
227
+ }
219
228
  .h-3 {
220
229
  height: 0.75rem;
221
230
  }
@@ -261,6 +270,9 @@
261
270
  .max-h-\[85vh\] {
262
271
  max-height: 85vh;
263
272
  }
273
+ .max-h-\[min\(36rem\,calc\(100vh-2rem\)\)\] {
274
+ max-height: min(36rem, calc(100vh - 2rem));
275
+ }
264
276
  .min-h-0 {
265
277
  min-height: 0px;
266
278
  }
@@ -306,6 +318,9 @@
306
318
  .w-9 {
307
319
  width: 2.25rem;
308
320
  }
321
+ .w-\[min\(28rem\,calc\(100vw-2rem\)\)\] {
322
+ width: min(28rem, calc(100vw - 2rem));
323
+ }
309
324
  .w-full {
310
325
  width: 100%;
311
326
  }
@@ -469,6 +484,9 @@
469
484
  .gap-2 {
470
485
  gap: 0.5rem;
471
486
  }
487
+ .gap-2\.5 {
488
+ gap: 0.625rem;
489
+ }
472
490
  .gap-3 {
473
491
  gap: 0.75rem;
474
492
  }
@@ -2931,6 +2949,8 @@
2931
2949
  }
2932
2950
  .ra-shell .ra-row:hover .ra-row-menu-trigger,
2933
2951
  .ra-shell .ra-card-hover:hover .ra-row-menu-trigger,
2952
+ .ra-shell .ra-item-row:hover .ra-row-menu-trigger,
2953
+ .ra-shell .ra-item-row[data-selected=true] .ra-row-menu-trigger,
2934
2954
  .ra-shell .ra-row-menu-trigger:focus-visible,
2935
2955
  .ra-shell .ra-row-menu-trigger[aria-expanded=true] {
2936
2956
  opacity: 1;
@@ -3426,6 +3446,28 @@
3426
3446
  margin: 0;
3427
3447
  padding: 0;
3428
3448
  }
3449
+ .ra-shell .ra-sibling-list .ra-row-shell {
3450
+ position: relative;
3451
+ display: flex;
3452
+ align-items: stretch;
3453
+ }
3454
+ .ra-shell .ra-sibling-list .ra-row-shell > .ra-row {
3455
+ flex: 1 1 auto;
3456
+ min-width: 0;
3457
+ }
3458
+ .ra-shell .ra-sibling-list .ra-row-shell > .ra-row-menu-wrap {
3459
+ flex: 0 0 auto;
3460
+ display: flex;
3461
+ align-items: center;
3462
+ padding-right: 0.35rem;
3463
+ opacity: 0;
3464
+ transition: opacity .12s ease;
3465
+ }
3466
+ .ra-shell .ra-sibling-list .ra-row-shell:hover > .ra-row-menu-wrap,
3467
+ .ra-shell .ra-sibling-list .ra-row-shell:focus-within > .ra-row-menu-wrap,
3468
+ .ra-shell .ra-sibling-list .ra-row-shell[data-selected=true] > .ra-row-menu-wrap {
3469
+ opacity: 1;
3470
+ }
3429
3471
  .ra-shell .ra-sibling-footer {
3430
3472
  flex-shrink: 0;
3431
3473
  padding: 0.5rem;