@nubitio/ui 0.5.2 → 0.5.4
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/style.css +10 -1
- package/package.json +1 -1
package/dist/style.css
CHANGED
|
@@ -2740,6 +2740,12 @@ html[data-density=compact] .nb-drawer__footer {
|
|
|
2740
2740
|
.nb-timeline__item--pending .nb-timeline__label {
|
|
2741
2741
|
color: var(--text-tertiary);
|
|
2742
2742
|
}
|
|
2743
|
+
.nb-timeline__item--error .nb-timeline__label {
|
|
2744
|
+
color: var(--danger-color);
|
|
2745
|
+
}
|
|
2746
|
+
.nb-timeline__item--error:not(:last-child)::before {
|
|
2747
|
+
background: var(--border-color);
|
|
2748
|
+
}
|
|
2743
2749
|
|
|
2744
2750
|
.nb-timeline--log .nb-timeline__item {
|
|
2745
2751
|
gap: var(--space-2);
|
|
@@ -2811,8 +2817,11 @@ html[data-density=compact] .nb-drawer__footer {
|
|
|
2811
2817
|
|
|
2812
2818
|
.nb-timeline__marker--error {
|
|
2813
2819
|
background: var(--danger-color);
|
|
2820
|
+
border: 2px solid var(--danger-color);
|
|
2821
|
+
box-shadow: 0 0 0 2px color-mix(in srgb, var(--danger-color) 20%, transparent);
|
|
2814
2822
|
color: var(--surface-1);
|
|
2815
|
-
font-size:
|
|
2823
|
+
font-size: 12px;
|
|
2824
|
+
font-weight: 700;
|
|
2816
2825
|
height: 20px;
|
|
2817
2826
|
width: 20px;
|
|
2818
2827
|
}
|