@deque/cauldron-styles 6.22.0-canary.0e051f3a → 6.22.0-canary.25823d52
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 +3 -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
|
|
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;
|
|
@@ -6051,6 +6051,7 @@ button.Accordion__trigger {
|
|
|
6051
6051
|
max-width: var(--action-menu-max-width, 31rem);
|
|
6052
6052
|
box-shadow: var(--drop-shadow-overlay);
|
|
6053
6053
|
overflow-y: auto;
|
|
6054
|
+
z-index: var(--z-index-listbox);
|
|
6054
6055
|
}
|
|
6055
6056
|
|
|
6056
6057
|
:where(.cauldron--theme-dark) .ActionMenu .ActionListItem--danger {
|
package/package.json
CHANGED