@proveanything/smartlinks-utils-ui 0.10.3 → 0.10.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/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 +15 -2
- package/dist/components/RecordsAdmin/index.js +62 -12
- 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
|
@@ -1692,6 +1692,39 @@
|
|
|
1692
1692
|
margin: 0;
|
|
1693
1693
|
padding: 0;
|
|
1694
1694
|
}
|
|
1695
|
+
.ra-shell .ra-sibling-footer {
|
|
1696
|
+
flex-shrink: 0;
|
|
1697
|
+
padding: 0.5rem;
|
|
1698
|
+
border-top: 1px solid hsl(var(--ra-border));
|
|
1699
|
+
background: hsl(var(--ra-surface));
|
|
1700
|
+
}
|
|
1701
|
+
.ra-shell .ra-sibling-create {
|
|
1702
|
+
display: inline-flex;
|
|
1703
|
+
align-items: center;
|
|
1704
|
+
justify-content: center;
|
|
1705
|
+
gap: 0.35rem;
|
|
1706
|
+
width: 100%;
|
|
1707
|
+
padding: 0.45rem 0.6rem;
|
|
1708
|
+
font-size: 0.75rem;
|
|
1709
|
+
font-weight: 500;
|
|
1710
|
+
color: hsl(var(--ra-text));
|
|
1711
|
+
background: hsl(var(--ra-muted) / 0.5);
|
|
1712
|
+
border: 1px dashed hsl(var(--ra-border));
|
|
1713
|
+
border-radius: 0.4rem;
|
|
1714
|
+
cursor: pointer;
|
|
1715
|
+
transition:
|
|
1716
|
+
background .12s ease,
|
|
1717
|
+
color .12s ease,
|
|
1718
|
+
border-color .12s ease;
|
|
1719
|
+
}
|
|
1720
|
+
.ra-shell .ra-sibling-create:hover {
|
|
1721
|
+
background: hsl(var(--ra-muted));
|
|
1722
|
+
border-color: hsl(var(--ra-border-strong, var(--ra-border)));
|
|
1723
|
+
}
|
|
1724
|
+
.ra-shell .ra-sibling-create:focus-visible {
|
|
1725
|
+
outline: none;
|
|
1726
|
+
box-shadow: 0 0 0 2px var(--ra-focus-ring);
|
|
1727
|
+
}
|
|
1695
1728
|
.ra-shell .ra-status-icon {
|
|
1696
1729
|
display: inline-flex;
|
|
1697
1730
|
align-items: center;
|