@deque/cauldron-styles 6.22.1 → 6.22.2-canary.06cb2900

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 +23 -17
  2. package/package.json +1 -1
package/dist/index.css CHANGED
@@ -123,12 +123,12 @@
123
123
  --z-index-side-bar: 9;
124
124
  --z-index-toast: 8;
125
125
  --z-index-toast-action-needed: 24;
126
- --z-index-listbox: 6;
127
126
  /* ensure this is a higher value than the rest (above)! */
128
127
  --z-index-top-bar: 25;
129
- /* ensure this is 1 higher than the top bar z-index */
128
+ /* ensure these are 1 higher than the top bar z-index */
130
129
  --z-index-skip-container: calc(var(--z-index-top-bar) + 1);
131
130
  --z-index-drawer: calc(var(--z-index-top-bar) + 1);
131
+ --z-index-listbox: calc(var(--z-index-top-bar) + 1);
132
132
 
133
133
  /* radio card */
134
134
  --radio-card-width: 255px;
@@ -5930,21 +5930,6 @@ button.Accordion__trigger {
5930
5930
  margin-bottom: var(--space-small);
5931
5931
  }
5932
5932
 
5933
- :root {
5934
- --page-header-overline-color: var(--gray-60);
5935
- }
5936
-
5937
- .cauldron--theme-dark {
5938
- --page-header-overline-color: var(--accent-light);
5939
- }
5940
-
5941
- .PageHeader__overline {
5942
- margin: 0 0 var(--space-smallest) 0;
5943
- padding: 0;
5944
- color: var(--page-header-overline-color);
5945
- font-size: var(--text-size-base);
5946
- }
5947
-
5948
5933
  :root {
5949
5934
  --section-header-description-color: var(--gray-60);
5950
5935
  }
@@ -5980,6 +5965,7 @@ button.Accordion__trigger {
5980
5965
  }
5981
5966
 
5982
5967
  .SectionHeader :is(h1, h2, h3, h4, h5, h6) {
5968
+ font-size: var(--text-size-heading-2);
5983
5969
  font-weight: var(--font-weight-medium);
5984
5970
  margin: 0;
5985
5971
  padding: 0;
@@ -6001,6 +5987,25 @@ button.Accordion__trigger {
6001
5987
  }
6002
5988
  }
6003
5989
 
5990
+ :root {
5991
+ --page-header-overline-color: var(--gray-60);
5992
+ }
5993
+
5994
+ .cauldron--theme-dark {
5995
+ --page-header-overline-color: var(--accent-light);
5996
+ }
5997
+
5998
+ .PageHeader :is(h1, h2, h3, h4, h5, h6) {
5999
+ font-size: var(--text-size-heading-1);
6000
+ }
6001
+
6002
+ .PageHeader__overline {
6003
+ margin: 0 0 var(--space-smallest) 0;
6004
+ padding: 0;
6005
+ color: var(--page-header-overline-color);
6006
+ font-size: var(--text-size-base);
6007
+ }
6008
+
6004
6009
  :root {
6005
6010
  --empty-state-border-color: var(--gray-30);
6006
6011
  }
@@ -6051,6 +6056,7 @@ button.Accordion__trigger {
6051
6056
  max-width: var(--action-menu-max-width, 31rem);
6052
6057
  box-shadow: var(--drop-shadow-overlay);
6053
6058
  overflow-y: auto;
6059
+ z-index: var(--z-index-listbox);
6054
6060
  }
6055
6061
 
6056
6062
  :where(.cauldron--theme-dark) .ActionMenu .ActionListItem--danger {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@deque/cauldron-styles",
3
- "version": "6.22.1",
3
+ "version": "6.22.2-canary.06cb2900",
4
4
  "license": "MPL-2.0",
5
5
  "description": "deque cauldron pattern library styles",
6
6
  "repository": "https://github.com/dequelabs/cauldron",