@deque/cauldron-styles 6.16.0-canary.95899edb → 6.16.0-canary.a87196e2
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/index.css +33 -5
- package/package.json +1 -1
package/dist/index.css
CHANGED
|
@@ -4004,8 +4004,8 @@ button.TooltipTabstop {
|
|
|
4004
4004
|
|
|
4005
4005
|
--step-current-indicator-background: #fff;
|
|
4006
4006
|
--step-current-indicator-color: var(--accent-dark);
|
|
4007
|
-
--step-current-indicator-shadow:
|
|
4008
|
-
0 0 0 4px var(--accent-info);
|
|
4007
|
+
--step-current-indicator-shadow:
|
|
4008
|
+
0 0 0 2px var(--accent-dark), 0 0 0 4px var(--accent-info);
|
|
4009
4009
|
--step-current-complete-line-border-color: var(--accent-info);
|
|
4010
4010
|
|
|
4011
4011
|
--step-complete-indicator-background: var(--accent-info);
|
|
@@ -4024,7 +4024,6 @@ button.TooltipTabstop {
|
|
|
4024
4024
|
align-items: flex-start;
|
|
4025
4025
|
color: var(--stepper-color);
|
|
4026
4026
|
background-color: var(--stepper-background-color);
|
|
4027
|
-
counter-reset: stepper;
|
|
4028
4027
|
list-style-type: none;
|
|
4029
4028
|
margin: 0 auto;
|
|
4030
4029
|
}
|
|
@@ -4068,8 +4067,7 @@ button.TooltipTabstop {
|
|
|
4068
4067
|
|
|
4069
4068
|
.Stepper__step-indicator:before {
|
|
4070
4069
|
font-size: var(--text-size-small);
|
|
4071
|
-
counter-
|
|
4072
|
-
content: counter(stepper);
|
|
4070
|
+
content: counter(list-item);
|
|
4073
4071
|
}
|
|
4074
4072
|
|
|
4075
4073
|
.Stepper__step-label {
|
|
@@ -5927,3 +5925,33 @@ button.Accordion__trigger {
|
|
|
5927
5925
|
justify-self: end;
|
|
5928
5926
|
}
|
|
5929
5927
|
}
|
|
5928
|
+
|
|
5929
|
+
:root {
|
|
5930
|
+
--empty-state-border-color: var(--gray-30);
|
|
5931
|
+
}
|
|
5932
|
+
|
|
5933
|
+
.cauldron--theme-dark {
|
|
5934
|
+
--empty-state-border-color: var(--accent-light);
|
|
5935
|
+
}
|
|
5936
|
+
|
|
5937
|
+
.EmptyState > :where(h1, h2, h3, h4, h5, h6) {
|
|
5938
|
+
font-size: var(--text-size-heading-3);
|
|
5939
|
+
line-height: var(--line-height-heading-3);
|
|
5940
|
+
margin-top: 0;
|
|
5941
|
+
margin-bottom: 0;
|
|
5942
|
+
}
|
|
5943
|
+
|
|
5944
|
+
.EmptyState > :where(h1, h2, h3, h4, h5, h6) + :where(p) {
|
|
5945
|
+
margin-top: 0.25rem;
|
|
5946
|
+
margin-bottom: 0;
|
|
5947
|
+
}
|
|
5948
|
+
|
|
5949
|
+
.EmptyState__primary {
|
|
5950
|
+
padding-top: var(--space-small);
|
|
5951
|
+
}
|
|
5952
|
+
|
|
5953
|
+
.EmptyState__secondary {
|
|
5954
|
+
margin-top: var(--space-small);
|
|
5955
|
+
padding-top: var(--space-small);
|
|
5956
|
+
border-top: 1px solid var(--empty-state-border-color);
|
|
5957
|
+
}
|
package/package.json
CHANGED