@deque/cauldron-styles 6.25.3-canary.6484df9d → 6.25.3-canary.6e797e6f
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 +15 -2
- package/package.json +1 -1
package/dist/index.css
CHANGED
|
@@ -1210,12 +1210,13 @@ textarea.Field--has-error:focus:hover,
|
|
|
1210
1210
|
--button-background-color-badge-active: var(--gray-20);
|
|
1211
1211
|
|
|
1212
1212
|
--button-background-color-danger: var(--error);
|
|
1213
|
-
--button-background-color-danger-disabled:
|
|
1213
|
+
--button-background-color-danger-disabled: var(--accent-error-disabled);
|
|
1214
1214
|
--button-background-color-danger-active: var(--accent-error-active);
|
|
1215
1215
|
--button-outline-color-danger: var(--error);
|
|
1216
|
+
--button-outline-color-danger-disabled: var(--gray-40);
|
|
1216
1217
|
|
|
1217
1218
|
--button-background-color-error: var(--error);
|
|
1218
|
-
--button-background-color-error-disabled:
|
|
1219
|
+
--button-background-color-error-disabled: var(--accent-error-disabled);
|
|
1219
1220
|
--button-background-color-error-active: var(--accent-error-active);
|
|
1220
1221
|
--button-outline-color-error: var(--error);
|
|
1221
1222
|
|
|
@@ -1416,6 +1417,18 @@ button.Link {
|
|
|
1416
1417
|
background-color: var(--button-background-color-error-disabled);
|
|
1417
1418
|
}
|
|
1418
1419
|
|
|
1420
|
+
.Button--danger[aria-disabled='true'],
|
|
1421
|
+
.Button--danger[disabled] {
|
|
1422
|
+
color: var(--button-text-color-light);
|
|
1423
|
+
background-color: var(--button-background-color-danger-disabled);
|
|
1424
|
+
}
|
|
1425
|
+
|
|
1426
|
+
.Button--danger-secondary[aria-disabled='true'],
|
|
1427
|
+
.Button--danger-secondary[disabled] {
|
|
1428
|
+
color: var(--button-text-color-disabled);
|
|
1429
|
+
border: 1px solid var(--button-outline-color-danger-disabled);
|
|
1430
|
+
}
|
|
1431
|
+
|
|
1419
1432
|
.Button--error:not([disabled]):not([aria-disabled='true']):active {
|
|
1420
1433
|
background-color: var(--button-background-color-error-active);
|
|
1421
1434
|
}
|
package/package.json
CHANGED