@deque/cauldron-styles 5.2.0-canary.9daa8e85 → 5.2.0-canary.a9c85dd2
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 +14 -1
- package/package.json +1 -1
package/dist/index.css
CHANGED
|
@@ -31,6 +31,7 @@
|
|
|
31
31
|
--accent-warning: #ffdd75;
|
|
32
32
|
--accent-warning-light: #ffa1a1;
|
|
33
33
|
--accent-caution: #ffe69f;
|
|
34
|
+
--accent-warning-dark: #b88a00;
|
|
34
35
|
--accent-info: #6cdaf2;
|
|
35
36
|
--accent-info-light: #83e4fa;
|
|
36
37
|
--accent-primary: #3c7aae;
|
|
@@ -1632,6 +1633,13 @@ textarea.Field--has-error:focus:hover,
|
|
|
1632
1633
|
flex-wrap: wrap;
|
|
1633
1634
|
}
|
|
1634
1635
|
|
|
1636
|
+
.Radio--inline {
|
|
1637
|
+
display: flex;
|
|
1638
|
+
align-items: baseline;
|
|
1639
|
+
flex-wrap: wrap;
|
|
1640
|
+
gap: var(--space-small);
|
|
1641
|
+
}
|
|
1642
|
+
|
|
1635
1643
|
.Checkbox {
|
|
1636
1644
|
margin-bottom: var(--space-smallest);
|
|
1637
1645
|
}
|
|
@@ -2062,6 +2070,7 @@ p .Link {
|
|
|
2062
2070
|
width: 100%;
|
|
2063
2071
|
min-height: var(--select-min-height);
|
|
2064
2072
|
padding: var(--space-three-quarters) var(--space-smallest);
|
|
2073
|
+
padding-right: var(--space-large);
|
|
2065
2074
|
border: 1px solid var(--field-border-color);
|
|
2066
2075
|
font-family: Roboto;
|
|
2067
2076
|
font-weight: normal;
|
|
@@ -3472,7 +3481,7 @@ button.TooltipTabstop {
|
|
|
3472
3481
|
font-size: var(--text-size-small);
|
|
3473
3482
|
border-collapse: collapse;
|
|
3474
3483
|
text-align: left;
|
|
3475
|
-
width: 100
|
|
3484
|
+
width: var(--table-width, 100%);
|
|
3476
3485
|
overflow-wrap: break-word;
|
|
3477
3486
|
}
|
|
3478
3487
|
|
|
@@ -3857,6 +3866,10 @@ button.TooltipTabstop {
|
|
|
3857
3866
|
var(--space-small) calc(var(--panel-padding) * -1);
|
|
3858
3867
|
}
|
|
3859
3868
|
|
|
3869
|
+
.Panel__Heading + .Panel__Content {
|
|
3870
|
+
margin-top: calc(var(--panel-padding) * -1);
|
|
3871
|
+
}
|
|
3872
|
+
|
|
3860
3873
|
.Panel__Header {
|
|
3861
3874
|
margin: calc(var(--panel-padding) * -1) calc(var(--panel-padding) * -1) 0
|
|
3862
3875
|
calc(var(--panel-padding) * -1);
|
package/package.json
CHANGED