@deque/cauldron-styles 3.0.1-canary.1470cc39 → 3.0.1-canary.4607c120
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 -2
- package/package.json +1 -1
package/dist/index.css
CHANGED
|
@@ -888,7 +888,7 @@ button.Link {
|
|
|
888
888
|
}
|
|
889
889
|
|
|
890
890
|
.Dialog__content {
|
|
891
|
-
padding:
|
|
891
|
+
padding: var(--dialog-padding);
|
|
892
892
|
}
|
|
893
893
|
|
|
894
894
|
.Dialog__content p:first-child {
|
|
@@ -940,6 +940,7 @@ button.Link {
|
|
|
940
940
|
display: flex;
|
|
941
941
|
justify-content: center;
|
|
942
942
|
border-top: none;
|
|
943
|
+
padding-top: 0;
|
|
943
944
|
}
|
|
944
945
|
|
|
945
946
|
/* Dark Theme */
|
|
@@ -1599,6 +1600,13 @@ textarea.Field--has-error:focus:hover,
|
|
|
1599
1600
|
box-sizing: border-box;
|
|
1600
1601
|
position: relative;
|
|
1601
1602
|
margin-bottom: 0;
|
|
1603
|
+
flex-direction: row-reverse;
|
|
1604
|
+
justify-content: flex-end;
|
|
1605
|
+
}
|
|
1606
|
+
|
|
1607
|
+
.Checkbox + .Checkbox,
|
|
1608
|
+
.Radio + .Radio {
|
|
1609
|
+
margin-top: var(--space-smallest);
|
|
1602
1610
|
}
|
|
1603
1611
|
|
|
1604
1612
|
.Checkbox .Field__label,
|
|
@@ -1705,6 +1713,7 @@ textarea.Field--has-error:focus:hover,
|
|
|
1705
1713
|
-webkit-appearance: none;
|
|
1706
1714
|
-moz-appearance: none;
|
|
1707
1715
|
appearance: none;
|
|
1716
|
+
border: 0;
|
|
1708
1717
|
}
|
|
1709
1718
|
|
|
1710
1719
|
.Checkbox__overlay.Checkbox__overlay--focused,
|
|
@@ -1722,6 +1731,7 @@ textarea.Field--has-error:focus:hover,
|
|
|
1722
1731
|
color: #ccc;
|
|
1723
1732
|
}
|
|
1724
1733
|
|
|
1734
|
+
.Field__label:hover ~ .Radio__overlay:not(.Radio__overlay--disabled),
|
|
1725
1735
|
.Radio__overlay:hover:not(.Radio__overlay--disabled) {
|
|
1726
1736
|
border: 1px solid currentColor;
|
|
1727
1737
|
}
|
|
@@ -1735,6 +1745,7 @@ textarea.Field--has-error:focus:hover,
|
|
|
1735
1745
|
-moz-appearance: none;
|
|
1736
1746
|
appearance: none;
|
|
1737
1747
|
width: 2px;
|
|
1748
|
+
border: 0;
|
|
1738
1749
|
}
|
|
1739
1750
|
|
|
1740
1751
|
.Checkbox__overlay.Icon--checkbox-checked {
|
|
@@ -1746,6 +1757,7 @@ textarea.Field--has-error:focus:hover,
|
|
|
1746
1757
|
color: #ccc;
|
|
1747
1758
|
}
|
|
1748
1759
|
|
|
1760
|
+
.Field__label:hover ~ .Checkbox__overlay:not(.Checkbox__overlay--disabled),
|
|
1749
1761
|
.Checkbox__overlay:hover:not(.Checkbox__overlay--disabled) {
|
|
1750
1762
|
border: 1px solid currentColor;
|
|
1751
1763
|
}
|
|
@@ -1945,7 +1957,6 @@ p .Link {
|
|
|
1945
1957
|
}
|
|
1946
1958
|
|
|
1947
1959
|
.Field__select--disabled {
|
|
1948
|
-
background: var(--field-background-color-disabled);
|
|
1949
1960
|
opacity: 0.65;
|
|
1950
1961
|
}
|
|
1951
1962
|
|
|
@@ -2270,6 +2281,7 @@ p .Link {
|
|
|
2270
2281
|
.Toast__dismiss {
|
|
2271
2282
|
background: transparent;
|
|
2272
2283
|
border: 0;
|
|
2284
|
+
height: calc(var(--text-size-small) + 9px);
|
|
2273
2285
|
}
|
|
2274
2286
|
|
|
2275
2287
|
.Toast__dismiss:focus {
|
package/package.json
CHANGED