@webqit/webflo 0.20.30 → 0.20.31
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/package.json
CHANGED
|
@@ -266,6 +266,7 @@ export class ToastElement extends HTMLElement {
|
|
|
266
266
|
align-items: center;
|
|
267
267
|
justify-content: center;
|
|
268
268
|
appearance: none;
|
|
269
|
+
font-size: inherit;
|
|
269
270
|
color: gray;
|
|
270
271
|
cursor: pointer;
|
|
271
272
|
border: none;
|
|
@@ -569,14 +570,15 @@ export class ModalElement extends HTMLElement {
|
|
|
569
570
|
--color-error: var(--modal-color-error, whitesmoke);
|
|
570
571
|
--color-warning: var(--modal-color-warning, whitesmoke);
|
|
571
572
|
|
|
572
|
-
--header-color-default: var(--modal-header-color-default,
|
|
573
|
+
--header-color-default: var(--modal-header-color-default, var(--color-default));
|
|
573
574
|
--header-color-info: var(--modal-header-color-info, skyblue);
|
|
574
575
|
--header-color-success: var(--modal-header-color-success, lightgreen);
|
|
575
576
|
--header-color-error: var(--modal-header-color-error, coral);
|
|
576
577
|
--header-background: var(--modal-header-background, var(--background));
|
|
578
|
+
|
|
577
579
|
--header-open-background: var(--modal-header-open-background, var(--header-background));
|
|
578
580
|
|
|
579
|
-
--footer-color-default: var(--modal-footer-color-default,
|
|
581
|
+
--footer-color-default: var(--modal-footer-color-default, var(--color-default));
|
|
580
582
|
--footer-color-info: var(--modal-footer-color-info, skyblue);
|
|
581
583
|
--footer-color-success: var(--modal-footer-color-success, lightgreen);
|
|
582
584
|
--footer-color-error: var(--modal-footer-color-error, coral);
|
|
@@ -1194,6 +1196,7 @@ export class ModalElement extends HTMLElement {
|
|
|
1194
1196
|
align-items: center;
|
|
1195
1197
|
justify-content: center;
|
|
1196
1198
|
appearance: none;
|
|
1199
|
+
font-size: inherit;
|
|
1197
1200
|
color: gray;
|
|
1198
1201
|
cursor: pointer;
|
|
1199
1202
|
border: none;
|
|
@@ -1354,6 +1357,7 @@ export class DialogElement extends ModalElement {
|
|
|
1354
1357
|
padding: 0.5rem 1rem;
|
|
1355
1358
|
cursor: pointer;
|
|
1356
1359
|
transition: all 0.2s;
|
|
1360
|
+
font-size: inherit;
|
|
1357
1361
|
font-weight: bold;
|
|
1358
1362
|
flex-grow: 1;
|
|
1359
1363
|
}
|