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