@deque/cauldron-styles 6.21.0-canary.52118e5a → 6.21.0-canary.6afe1a38
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 +1 -18
- package/package.json +1 -1
package/dist/index.css
CHANGED
|
@@ -6045,16 +6045,11 @@ button.Accordion__trigger {
|
|
|
6045
6045
|
border-radius: 8px;
|
|
6046
6046
|
width: var(--action-menu-width);
|
|
6047
6047
|
min-width: var(--action-menu-min-width, 10rem);
|
|
6048
|
-
max-height: var(--action-menu-
|
|
6048
|
+
max-height: var(--action-menu-height);
|
|
6049
6049
|
box-shadow: var(--drop-shadow-overlay);
|
|
6050
6050
|
overflow-y: auto;
|
|
6051
6051
|
}
|
|
6052
6052
|
|
|
6053
|
-
:where(.cauldron--theme-dark) .ActionMenu .ActionListItem--danger {
|
|
6054
|
-
--action-list-text-color: var(--accent-warning-light);
|
|
6055
|
-
--action-list-item-icon-color: var(--accent-warning-light);
|
|
6056
|
-
}
|
|
6057
|
-
|
|
6058
6053
|
:root {
|
|
6059
6054
|
--action-list-background-color: #fff;
|
|
6060
6055
|
--action-list-text-color: var(--gray-90);
|
|
@@ -6126,24 +6121,12 @@ button.Accordion__trigger {
|
|
|
6126
6121
|
padding: var(--space-smallest);
|
|
6127
6122
|
}
|
|
6128
6123
|
|
|
6129
|
-
.ActionListItem--danger {
|
|
6130
|
-
--action-list-text-color: var(--accent-error);
|
|
6131
|
-
--action-list-item-icon-color: var(--accent-error);
|
|
6132
|
-
--action-list-item-description-color: var(--action-list-text-color);
|
|
6133
|
-
}
|
|
6134
|
-
|
|
6135
|
-
:where(.cauldron--theme-dark) .ActionListItem--danger {
|
|
6136
|
-
--action-list-text-color: #fff;
|
|
6137
|
-
--action-list-item-icon-color: #fff;
|
|
6138
|
-
}
|
|
6139
|
-
|
|
6140
6124
|
.ActionListItem {
|
|
6141
6125
|
--icon-size: 1rem;
|
|
6142
6126
|
--icon-spacing: 1.2rem;
|
|
6143
6127
|
display: grid;
|
|
6144
6128
|
align-items: center;
|
|
6145
6129
|
gap: var(--space-half);
|
|
6146
|
-
color: var(--action-list-text-color);
|
|
6147
6130
|
margin: 0 var(--space-smallest);
|
|
6148
6131
|
border-radius: 4px;
|
|
6149
6132
|
cursor: pointer;
|
package/package.json
CHANGED