@deque/cauldron-styles 5.9.0-canary.07ef06bd → 5.9.0-canary.2d41c7c6
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 +7 -4
- package/package.json +1 -1
package/dist/index.css
CHANGED
|
@@ -38,8 +38,11 @@
|
|
|
38
38
|
--accent-info-active: #a7e9f7;
|
|
39
39
|
--accent-primary: #3c7aae;
|
|
40
40
|
--accent-primary-active: #316091;
|
|
41
|
+
--accent-error-disabled: #db6379;
|
|
42
|
+
--accent-primary-disabled: #78a6d8;
|
|
41
43
|
--accent-secondary: var(--gray-20);
|
|
42
44
|
--accent-secondary-active: var(--gray-30);
|
|
45
|
+
--light-workspace-color: #f7f7f7;
|
|
43
46
|
--focus-light: #b51ad1;
|
|
44
47
|
--focus-dark: #f5a4ff;
|
|
45
48
|
--issue-critical: var(--accent-danger);
|
|
@@ -72,15 +75,15 @@
|
|
|
72
75
|
--metric-accent-full: var(--accent-success);
|
|
73
76
|
|
|
74
77
|
/* spacing (padding/margin) */
|
|
78
|
+
--space-quarter: 2px;
|
|
79
|
+
--space-half: 4px;
|
|
80
|
+
--space-three-quarters: 6px;
|
|
75
81
|
--space-smallest: 8px;
|
|
76
82
|
--space-smaller: 12px;
|
|
77
83
|
--space-small: 16px;
|
|
78
84
|
--space-medium: 18px;
|
|
79
85
|
--space-large: 24px;
|
|
80
86
|
--space-largest: 32px;
|
|
81
|
-
--space-half: 4px;
|
|
82
|
-
--space-three-quarters: 6px;
|
|
83
|
-
--space-quarter: 2px;
|
|
84
87
|
--space-large-with-underborder: 18px 24px;
|
|
85
88
|
--space-gutter: 40px;
|
|
86
89
|
|
|
@@ -1481,7 +1484,7 @@ ul.semantic-only {
|
|
|
1481
1484
|
--field-border-color-error-hover: #c42f41;
|
|
1482
1485
|
--field-border-color-error-focus-glow: rgba(217, 50, 81, 0.7);
|
|
1483
1486
|
--field-border-color-disabled: rgba(204, 204, 204, 0.25);
|
|
1484
|
-
--field-background-color-disabled:
|
|
1487
|
+
--field-background-color-disabled: var(--light-workspace-color);
|
|
1485
1488
|
--field-required-text-color: var(--gray-60);
|
|
1486
1489
|
--field-label-text-color: var(--gray-90);
|
|
1487
1490
|
--field-label-error-text-color: var(--error);
|
package/package.json
CHANGED