@deque/cauldron-styles 6.3.2 → 6.4.0

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 +13 -9
  2. package/package.json +1 -1
package/dist/index.css CHANGED
@@ -1133,7 +1133,7 @@ textarea.Field--has-error:focus:hover,
1133
1133
  --button-text-color-dark: var(--gray-90);
1134
1134
  --button-text-color-light: var(--white);
1135
1135
  --button-focus-ring-color: var(--focus-light);
1136
- --button-thin-height: 23px;
1136
+ --button-thin-height: var(--target-size-minimum);
1137
1137
 
1138
1138
  --button-height: 36px;
1139
1139
  }
@@ -4585,22 +4585,25 @@ fieldset.Panel {
4585
4585
  background: var(--two-column-panel-group-heading-background-color);
4586
4586
  text-transform: uppercase;
4587
4587
  font-size: var(--text-size-smaller);
4588
- font-weight: 500;
4588
+ font-weight: var(--font-weight-medium);
4589
4589
  padding: var(--space-smallest) var(--space-small);
4590
4590
  color: var(--two-column-panel-group-heading-text-color);
4591
4591
  position: sticky;
4592
4592
  top: 0;
4593
4593
  }
4594
4594
 
4595
- .TwoColumnPanel__GroupHeader h1,
4596
- .TwoColumnPanel__GroupHeader h2,
4597
- .TwoColumnPanel__GroupHeader h3,
4598
- .TwoColumnPanel__GroupHeader h4,
4599
- .TwoColumnPanel__GroupHeader h5,
4600
- .TwoColumnPanel__GroupHeader h6 {
4595
+ .TwoColumnPanel__Header :is(h1, h2, h3, h4, h5, h6) {
4596
+ color: inherit;
4597
+ font-size: inherit;
4598
+ font-weight: var(--font-weight-medium);
4599
+ margin: 0;
4600
+ padding: 0;
4601
+ }
4602
+
4603
+ .TwoColumnPanel__GroupHeader :is(h1, h2, h3, h4, h5, h6) {
4601
4604
  color: inherit;
4602
4605
  font-size: var(--text-size-smaller);
4603
- font-weight: 500;
4606
+ font-weight: var(--font-weight-medium);
4604
4607
  margin: 0;
4605
4608
  padding: 0;
4606
4609
  }
@@ -5205,6 +5208,7 @@ button.Accordion__trigger {
5205
5208
  display: flex;
5206
5209
  flex-direction: column;
5207
5210
  width: var(--timeline-icon-size);
5211
+ flex-shrink: 0;
5208
5212
  --icon-size: var(--timeline-icon-size);
5209
5213
  }
5210
5214
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@deque/cauldron-styles",
3
- "version": "6.3.2",
3
+ "version": "6.4.0",
4
4
  "license": "MPL-2.0",
5
5
  "description": "deque cauldron pattern library styles",
6
6
  "repository": "https://github.com/dequelabs/cauldron",