@deque/cauldron-styles 4.7.0-canary.3ba9dc2a → 4.7.0-canary.4a2a6cef
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 +8 -1
- package/package.json +1 -1
package/dist/index.css
CHANGED
|
@@ -20,6 +20,7 @@
|
|
|
20
20
|
--accent-medium: #283640;
|
|
21
21
|
--accent-light: #d4dde0;
|
|
22
22
|
--accent-success: #a5db75;
|
|
23
|
+
--accent-success-high-contrast: #4fa630;
|
|
23
24
|
--accent-success-light: #d1ffa4;
|
|
24
25
|
--accent-success-dark: #57a711;
|
|
25
26
|
--accent-error: #d93251;
|
|
@@ -699,6 +700,12 @@ button.Link {
|
|
|
699
700
|
padding: 0;
|
|
700
701
|
}
|
|
701
702
|
|
|
703
|
+
/* Ensure both <a> and <button> IconButtons are aligned correctly. See #846. */
|
|
704
|
+
|
|
705
|
+
a.IconButton {
|
|
706
|
+
vertical-align: middle;
|
|
707
|
+
}
|
|
708
|
+
|
|
702
709
|
.IconButton .Icon {
|
|
703
710
|
width: 100%;
|
|
704
711
|
height: 100%;
|
|
@@ -1835,7 +1842,7 @@ textarea.Field--has-error:focus:hover,
|
|
|
1835
1842
|
|
|
1836
1843
|
.Link:hover {
|
|
1837
1844
|
text-decoration: underline;
|
|
1838
|
-
color: var(--link-text-color);
|
|
1845
|
+
color: var(--link-text-color-hover);
|
|
1839
1846
|
}
|
|
1840
1847
|
|
|
1841
1848
|
.Link:focus {
|
package/package.json
CHANGED