@deque/cauldron-styles 6.15.0-canary.622b6ff9 → 6.15.0-canary.7aa61049
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 +26 -0
- package/package.json +1 -1
package/dist/index.css
CHANGED
|
@@ -5183,6 +5183,8 @@ button.Accordion__trigger {
|
|
|
5183
5183
|
--combobox-group-label-background-color: var(--gray-20);
|
|
5184
5184
|
--combobox-group-label-font-size: var(--text-size-smaller);
|
|
5185
5185
|
--combobox-option-selected-icon-color: var(--accent-primary);
|
|
5186
|
+
--combobox-pill-height: 1.65rem;
|
|
5187
|
+
--combobox-pill-icon-size: 18px;
|
|
5186
5188
|
}
|
|
5187
5189
|
|
|
5188
5190
|
.cauldron--theme-dark {
|
|
@@ -5289,6 +5291,10 @@ button.Accordion__trigger {
|
|
|
5289
5291
|
margin-right: 1.25rem;
|
|
5290
5292
|
}
|
|
5291
5293
|
|
|
5294
|
+
.Combobox .TextFieldWrapper input:is([disabled]) {
|
|
5295
|
+
background-color: var(--field-background-color-disabled);
|
|
5296
|
+
}
|
|
5297
|
+
|
|
5292
5298
|
.Combobox__arrow {
|
|
5293
5299
|
width: 2rem;
|
|
5294
5300
|
display: flex;
|
|
@@ -5430,6 +5436,26 @@ button.Accordion__trigger {
|
|
|
5430
5436
|
text-align: center;
|
|
5431
5437
|
}
|
|
5432
5438
|
|
|
5439
|
+
.Combobox--multiselect .TextFieldWrapper {
|
|
5440
|
+
flex-wrap: wrap;
|
|
5441
|
+
gap: var(--space-half);
|
|
5442
|
+
padding-left: var(--space-half);
|
|
5443
|
+
padding-right: var(--space-large);
|
|
5444
|
+
}
|
|
5445
|
+
|
|
5446
|
+
.Combobox--multiselect .TextFieldWrapper input {
|
|
5447
|
+
width: auto;
|
|
5448
|
+
}
|
|
5449
|
+
|
|
5450
|
+
.ComboboxPill {
|
|
5451
|
+
--tag-height: var(--combobox-pill-height);
|
|
5452
|
+
--icon-size: var(--combobox-pill-icon-size);
|
|
5453
|
+
}
|
|
5454
|
+
|
|
5455
|
+
.ComboboxPill + .ComboboxPill {
|
|
5456
|
+
margin: 0;
|
|
5457
|
+
}
|
|
5458
|
+
|
|
5433
5459
|
:root {
|
|
5434
5460
|
--timeline-mark-color: var(--accent-success-dark);
|
|
5435
5461
|
--timeline-mark-border-color: #fff;
|
package/package.json
CHANGED