@arsedizioni/ars-utils 18.2.436 → 18.2.437
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/clipper.ui/ui/clipper.scss +7 -1
- package/esm2022/clipper.ui/ui/browser-dialog/browser-dialog.component.mjs +3 -3
- package/esm2022/clipper.ui/ui/document/document.component.mjs +3 -3
- package/esm2022/clipper.ui/ui/references/references.component.mjs +3 -3
- package/esm2022/clipper.ui/ui/search-calendar/search-calendar.component.mjs +8 -3
- package/esm2022/clipper.ui/ui/search-facets/search-facets.component.mjs +3 -3
- package/esm2022/clipper.ui/ui/search-result-item/search-result-item.component.mjs +3 -3
- package/fesm2022/arsedizioni-ars-utils-clipper.ui.mjs +17 -12
- package/fesm2022/arsedizioni-ars-utils-clipper.ui.mjs.map +1 -1
- package/package.json +13 -13
|
@@ -47,6 +47,7 @@
|
|
|
47
47
|
.expired-bg {
|
|
48
48
|
background-color: var(--ars-color-error-low, #a80710);
|
|
49
49
|
}
|
|
50
|
+
|
|
50
51
|
.expiring-bg {
|
|
51
52
|
background-color: var(--ars-color-warning, #FFC107);
|
|
52
53
|
}
|
|
@@ -343,7 +344,8 @@
|
|
|
343
344
|
}
|
|
344
345
|
|
|
345
346
|
.special-date,
|
|
346
|
-
.special-date-expired
|
|
347
|
+
.special-date-expired,
|
|
348
|
+
.special-date-expiring {
|
|
347
349
|
border: 2px var(--ars-color-accent, #7894ae) solid !important;
|
|
348
350
|
border-radius: 100% !important;
|
|
349
351
|
}
|
|
@@ -351,4 +353,8 @@
|
|
|
351
353
|
|
|
352
354
|
.special-date-expired {
|
|
353
355
|
border: 2px var(--ars-color-error, #ff5449) solid !important;
|
|
356
|
+
}
|
|
357
|
+
|
|
358
|
+
.special-date-expiring {
|
|
359
|
+
border: 2px var(--ars-color-warning, #FFC107) solid !important;
|
|
354
360
|
}
|