@proveanything/smartlinks-utils-ui 0.11.10 → 0.12.1
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 +35 -0
- package/dist/components/AssetPicker/index.css.map +1 -1
- package/dist/components/ConditionsEditor/index.css +35 -0
- package/dist/components/ConditionsEditor/index.css.map +1 -1
- package/dist/components/FontPicker/index.css +35 -0
- package/dist/components/FontPicker/index.css.map +1 -1
- package/dist/components/IconPicker/index.css +35 -0
- package/dist/components/IconPicker/index.css.map +1 -1
- package/dist/components/RecordsAdmin/index.css +35 -0
- package/dist/components/RecordsAdmin/index.css.map +1 -1
- package/dist/components/RecordsAdmin/index.d.ts +310 -41
- package/dist/components/RecordsAdmin/index.js +1024 -131
- package/dist/components/RecordsAdmin/index.js.map +1 -1
- package/dist/index.css +35 -0
- package/dist/index.css.map +1 -1
- package/package.json +1 -1
|
@@ -2203,6 +2203,35 @@
|
|
|
2203
2203
|
transform: rotate(360deg);
|
|
2204
2204
|
}
|
|
2205
2205
|
}
|
|
2206
|
+
.ra-history-block {
|
|
2207
|
+
margin-left: 0.75rem;
|
|
2208
|
+
border-left: 2px solid hsl(var(--ra-border));
|
|
2209
|
+
padding: 0.15rem 0 0.25rem 0.5rem;
|
|
2210
|
+
}
|
|
2211
|
+
.ra-history-rows {
|
|
2212
|
+
list-style: none;
|
|
2213
|
+
margin: 0;
|
|
2214
|
+
padding: 0;
|
|
2215
|
+
}
|
|
2216
|
+
.ra-history-row {
|
|
2217
|
+
opacity: 0.65;
|
|
2218
|
+
}
|
|
2219
|
+
.ra-history-row:hover {
|
|
2220
|
+
opacity: 0.9;
|
|
2221
|
+
}
|
|
2222
|
+
.ra-history-disclosure {
|
|
2223
|
+
background: transparent;
|
|
2224
|
+
border: 0;
|
|
2225
|
+
cursor: pointer;
|
|
2226
|
+
font-size: 0.7rem;
|
|
2227
|
+
color: hsl(var(--ra-muted-text));
|
|
2228
|
+
padding: 0.25rem 0.5rem;
|
|
2229
|
+
text-align: left;
|
|
2230
|
+
}
|
|
2231
|
+
.ra-history-disclosure:hover {
|
|
2232
|
+
color: hsl(var(--ra-text));
|
|
2233
|
+
text-decoration: underline;
|
|
2234
|
+
}
|
|
2206
2235
|
.sl-ui-records-admin-styles-loaded {
|
|
2207
2236
|
--sl-ui-records-admin-styles: loaded;
|
|
2208
2237
|
}
|
|
@@ -2703,6 +2732,9 @@
|
|
|
2703
2732
|
.min-w-0 {
|
|
2704
2733
|
min-width: 0px;
|
|
2705
2734
|
}
|
|
2735
|
+
.min-w-\[10rem\] {
|
|
2736
|
+
min-width: 10rem;
|
|
2737
|
+
}
|
|
2706
2738
|
.min-w-\[12rem\] {
|
|
2707
2739
|
min-width: 12rem;
|
|
2708
2740
|
}
|
|
@@ -3309,6 +3341,9 @@
|
|
|
3309
3341
|
.italic {
|
|
3310
3342
|
font-style: italic;
|
|
3311
3343
|
}
|
|
3344
|
+
.leading-tight {
|
|
3345
|
+
line-height: 1.25;
|
|
3346
|
+
}
|
|
3312
3347
|
.tracking-wide {
|
|
3313
3348
|
letter-spacing: 0.025em;
|
|
3314
3349
|
}
|