@deque/cauldron-styles 5.9.0 → 5.9.1

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.
Files changed (2) hide show
  1. package/dist/index.css +10 -5
  2. 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
 
@@ -931,6 +934,8 @@ a.IconButton {
931
934
  justify-content: space-between;
932
935
  min-height: var(--dialog-header-height);
933
936
  font-weight: var(--font-weight-bold);
937
+ padding: var(--space-smallest) 0;
938
+ gap: var(--space-smallest);
934
939
  }
935
940
 
936
941
  .Dialog__heading,
@@ -954,7 +959,7 @@ a.IconButton {
954
959
  height: var(--dialog-close-button-size);
955
960
  width: var(--dialog-close-button-size);
956
961
  margin-right: var(--space-smallest);
957
- position: relative;
962
+ flex-shrink: 0;
958
963
  }
959
964
 
960
965
  .Dialog__close:active {
@@ -1481,7 +1486,7 @@ ul.semantic-only {
1481
1486
  --field-border-color-error-hover: #c42f41;
1482
1487
  --field-border-color-error-focus-glow: rgba(217, 50, 81, 0.7);
1483
1488
  --field-border-color-disabled: rgba(204, 204, 204, 0.25);
1484
- --field-background-color-disabled: #f7f7f7;
1489
+ --field-background-color-disabled: var(--light-workspace-color);
1485
1490
  --field-required-text-color: var(--gray-60);
1486
1491
  --field-label-text-color: var(--gray-90);
1487
1492
  --field-label-error-text-color: var(--error);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@deque/cauldron-styles",
3
- "version": "5.9.0",
3
+ "version": "5.9.1",
4
4
  "license": "MPL-2.0",
5
5
  "description": "deque cauldron pattern library styles",
6
6
  "repository": "https://github.com/dequelabs/cauldron",