@deque/cauldron-styles 5.8.0-canary.c7e293cc → 5.8.0-canary.e27cfd13
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 +1 -20
- package/package.json +1 -1
package/dist/index.css
CHANGED
|
@@ -1470,8 +1470,6 @@ ul.semantic-only {
|
|
|
1470
1470
|
--field-listbox-selected-background-color: var(--accent-secondary-active);
|
|
1471
1471
|
--field-font-size: var(--text-size-small);
|
|
1472
1472
|
--input-min-width: 250px;
|
|
1473
|
-
--checkbox-size: var(--icon-size);
|
|
1474
|
-
--radio-size: var(--icon-size);
|
|
1475
1473
|
}
|
|
1476
1474
|
|
|
1477
1475
|
.cauldron--theme-dark {
|
|
@@ -1797,18 +1795,11 @@ textarea.Field--has-error:focus:hover,
|
|
|
1797
1795
|
font-weight: var(--font-weight-normal);
|
|
1798
1796
|
line-height: 1;
|
|
1799
1797
|
margin-top: var(--space-half);
|
|
1798
|
+
margin-left: calc(24px + 2px + var(--space-half));
|
|
1800
1799
|
cursor: default;
|
|
1801
1800
|
display: flex;
|
|
1802
1801
|
}
|
|
1803
1802
|
|
|
1804
|
-
.Checkbox__wrap .Field__labelDescription {
|
|
1805
|
-
margin-left: calc(var(--checkbox-size) + 2px + var(--space-half));
|
|
1806
|
-
}
|
|
1807
|
-
|
|
1808
|
-
.Radio__wrap .Field__labelDescription {
|
|
1809
|
-
margin-left: calc(var(--radio-size) + 2px + var(--space-half));
|
|
1810
|
-
}
|
|
1811
|
-
|
|
1812
1803
|
.Field__labelDescription + .Error {
|
|
1813
1804
|
margin-top: var(--space-smallest);
|
|
1814
1805
|
}
|
|
@@ -1836,16 +1827,6 @@ textarea.Field--has-error:focus:hover,
|
|
|
1836
1827
|
pointer-events: none;
|
|
1837
1828
|
}
|
|
1838
1829
|
|
|
1839
|
-
.Radio__overlay svg {
|
|
1840
|
-
height: var(--radio-size);
|
|
1841
|
-
width: var(--radio-size);
|
|
1842
|
-
}
|
|
1843
|
-
|
|
1844
|
-
.Checkbox__overlay svg {
|
|
1845
|
-
height: var(--checkbox-size);
|
|
1846
|
-
width: var(--checkbox-size);
|
|
1847
|
-
}
|
|
1848
|
-
|
|
1849
1830
|
.Radio__overlay:active:not(.Radio__overlay--disabled),
|
|
1850
1831
|
.Checkbox__overlay:active:not(.Checkbox__overlay--disabled) {
|
|
1851
1832
|
background-color: var(--field-icon-active-color);
|
package/package.json
CHANGED