@proveanything/smartlinks-utils-ui 0.10.4 → 0.10.6
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/components/AssetPicker/index.css +33 -0
- package/dist/components/AssetPicker/index.css.map +1 -1
- package/dist/components/ConditionsEditor/index.css +33 -0
- package/dist/components/ConditionsEditor/index.css.map +1 -1
- package/dist/components/FontPicker/index.css +33 -0
- package/dist/components/FontPicker/index.css.map +1 -1
- package/dist/components/IconPicker/index.css +33 -0
- package/dist/components/IconPicker/index.css.map +1 -1
- package/dist/components/RecordsAdmin/index.css +33 -0
- package/dist/components/RecordsAdmin/index.css.map +1 -1
- package/dist/components/RecordsAdmin/index.d.ts +11 -2
- package/dist/components/RecordsAdmin/index.js +28 -5
- package/dist/components/RecordsAdmin/index.js.map +1 -1
- package/dist/index.css +33 -0
- package/dist/index.css.map +1 -1
- package/package.json +1 -1
|
@@ -3385,6 +3385,39 @@
|
|
|
3385
3385
|
margin: 0;
|
|
3386
3386
|
padding: 0;
|
|
3387
3387
|
}
|
|
3388
|
+
.ra-shell .ra-sibling-footer {
|
|
3389
|
+
flex-shrink: 0;
|
|
3390
|
+
padding: 0.5rem;
|
|
3391
|
+
border-top: 1px solid hsl(var(--ra-border));
|
|
3392
|
+
background: hsl(var(--ra-surface));
|
|
3393
|
+
}
|
|
3394
|
+
.ra-shell .ra-sibling-create {
|
|
3395
|
+
display: inline-flex;
|
|
3396
|
+
align-items: center;
|
|
3397
|
+
justify-content: center;
|
|
3398
|
+
gap: 0.35rem;
|
|
3399
|
+
width: 100%;
|
|
3400
|
+
padding: 0.45rem 0.6rem;
|
|
3401
|
+
font-size: 0.75rem;
|
|
3402
|
+
font-weight: 500;
|
|
3403
|
+
color: hsl(var(--ra-text));
|
|
3404
|
+
background: hsl(var(--ra-muted) / 0.5);
|
|
3405
|
+
border: 1px dashed hsl(var(--ra-border));
|
|
3406
|
+
border-radius: 0.4rem;
|
|
3407
|
+
cursor: pointer;
|
|
3408
|
+
transition:
|
|
3409
|
+
background .12s ease,
|
|
3410
|
+
color .12s ease,
|
|
3411
|
+
border-color .12s ease;
|
|
3412
|
+
}
|
|
3413
|
+
.ra-shell .ra-sibling-create:hover {
|
|
3414
|
+
background: hsl(var(--ra-muted));
|
|
3415
|
+
border-color: hsl(var(--ra-border-strong, var(--ra-border)));
|
|
3416
|
+
}
|
|
3417
|
+
.ra-shell .ra-sibling-create:focus-visible {
|
|
3418
|
+
outline: none;
|
|
3419
|
+
box-shadow: 0 0 0 2px var(--ra-focus-ring);
|
|
3420
|
+
}
|
|
3388
3421
|
.ra-shell .ra-status-icon {
|
|
3389
3422
|
display: inline-flex;
|
|
3390
3423
|
align-items: center;
|