@syncfusion/ej2-angular-splitbuttons 23.1.41-ngcc → 23.1.41
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/esm2020/public_api.mjs +3 -0
- package/esm2020/src/drop-down-button/dropdownbutton-all.module.mjs +23 -0
- package/esm2020/src/drop-down-button/dropdownbutton.component.mjs +64 -0
- package/esm2020/src/drop-down-button/dropdownbutton.module.mjs +34 -0
- package/esm2020/src/drop-down-button/items.directive.mjs +46 -0
- package/esm2020/src/index.mjs +13 -0
- package/esm2020/src/progress-button/progressbutton-all.module.mjs +23 -0
- package/esm2020/src/progress-button/progressbutton.component.mjs +59 -0
- package/esm2020/src/progress-button/progressbutton.module.mjs +25 -0
- package/esm2020/src/split-button/items.directive.mjs +46 -0
- package/esm2020/src/split-button/splitbutton-all.module.mjs +23 -0
- package/esm2020/src/split-button/splitbutton.component.mjs +64 -0
- package/esm2020/src/split-button/splitbutton.module.mjs +34 -0
- package/esm2020/syncfusion-ej2-angular-splitbuttons.mjs +5 -0
- package/fesm2015/syncfusion-ej2-angular-splitbuttons.mjs +405 -0
- package/fesm2015/syncfusion-ej2-angular-splitbuttons.mjs.map +1 -0
- package/fesm2020/syncfusion-ej2-angular-splitbuttons.mjs +405 -0
- package/fesm2020/syncfusion-ej2-angular-splitbuttons.mjs.map +1 -0
- package/package.json +26 -12
- package/src/drop-down-button/dropdownbutton-all.module.d.ts +6 -0
- package/src/drop-down-button/dropdownbutton.component.d.ts +3 -0
- package/src/drop-down-button/dropdownbutton.module.d.ts +7 -0
- package/src/drop-down-button/items.directive.d.ts +5 -0
- package/src/progress-button/progressbutton-all.module.d.ts +6 -0
- package/src/progress-button/progressbutton.component.d.ts +3 -0
- package/src/progress-button/progressbutton.module.d.ts +6 -0
- package/src/split-button/items.directive.d.ts +5 -0
- package/src/split-button/splitbutton-all.module.d.ts +6 -0
- package/src/split-button/splitbutton.component.d.ts +3 -0
- package/src/split-button/splitbutton.module.d.ts +7 -0
- package/styles/button-group/_all.scss +2 -0
- package/styles/button-group/_bootstrap-dark-definition.scss +33 -0
- package/styles/button-group/_bootstrap-definition.scss +30 -0
- package/styles/button-group/_bootstrap4-definition.scss +30 -0
- package/styles/button-group/_bootstrap5-dark-definition.scss +1 -0
- package/styles/button-group/_bootstrap5-definition.scss +31 -0
- package/styles/button-group/_fabric-dark-definition.scss +33 -0
- package/styles/button-group/_fabric-definition.scss +30 -0
- package/styles/button-group/_fluent-dark-definition.scss +1 -0
- package/styles/button-group/_fluent-definition.scss +31 -0
- package/styles/button-group/_fusionnew-definition.scss +31 -0
- package/styles/button-group/_group-button-mixin.scss +72 -0
- package/styles/button-group/_highcontrast-definition.scss +32 -0
- package/styles/button-group/_highcontrast-light-definition.scss +35 -0
- package/styles/button-group/_layout.scss +294 -0
- package/styles/button-group/_material-dark-definition.scss +33 -0
- package/styles/button-group/_material-definition.scss +30 -0
- package/styles/button-group/_material3-dark-definition.scss +1 -0
- package/styles/button-group/_material3-definition.scss +31 -0
- package/styles/button-group/_tailwind-dark-definition.scss +1 -0
- package/styles/button-group/_tailwind-definition.scss +31 -0
- package/styles/button-group/_theme.scss +454 -0
- package/styles/button-group/bootstrap-dark.scss +4 -1
- package/styles/button-group/bootstrap.scss +4 -1
- package/styles/button-group/bootstrap4.scss +4 -1
- package/styles/button-group/bootstrap5-dark.scss +4 -1
- package/styles/button-group/bootstrap5.scss +4 -1
- package/styles/button-group/fabric-dark.scss +4 -1
- package/styles/button-group/fabric.scss +4 -1
- package/styles/button-group/fluent-dark.scss +4 -1
- package/styles/button-group/fluent.scss +4 -1
- package/styles/button-group/highcontrast-light.scss +4 -1
- package/styles/button-group/highcontrast.scss +4 -1
- package/styles/button-group/material-dark.scss +4 -1
- package/styles/button-group/material.scss +4 -1
- package/styles/button-group/material3-dark.scss +4 -1
- package/styles/button-group/material3.scss +4 -1
- package/styles/button-group/tailwind-dark.scss +4 -1
- package/styles/button-group/tailwind.scss +4 -1
- package/styles/drop-down-button/_all.scss +2 -0
- package/styles/drop-down-button/_bootstrap-dark-definition.scss +51 -0
- package/styles/drop-down-button/_bootstrap-definition.scss +48 -0
- package/styles/drop-down-button/_bootstrap4-definition.scss +48 -0
- package/styles/drop-down-button/_bootstrap5-dark-definition.scss +1 -0
- package/styles/drop-down-button/_bootstrap5-definition.scss +50 -0
- package/styles/drop-down-button/_fabric-dark-definition.scss +51 -0
- package/styles/drop-down-button/_fabric-definition.scss +48 -0
- package/styles/drop-down-button/_fluent-dark-definition.scss +1 -0
- package/styles/drop-down-button/_fluent-definition.scss +52 -0
- package/styles/drop-down-button/_fusionnew-definition.scss +50 -0
- package/styles/drop-down-button/_highcontrast-definition.scss +47 -0
- package/styles/drop-down-button/_highcontrast-light-definition.scss +50 -0
- package/styles/drop-down-button/_layout.scss +238 -0
- package/styles/drop-down-button/_material-dark-definition.scss +51 -0
- package/styles/drop-down-button/_material-definition.scss +48 -0
- package/styles/drop-down-button/_material3-dark-definition.scss +1 -0
- package/styles/drop-down-button/_material3-definition.scss +51 -0
- package/styles/drop-down-button/_tailwind-dark-definition.scss +1 -0
- package/styles/drop-down-button/_tailwind-definition.scss +49 -0
- package/styles/drop-down-button/_theme.scss +83 -0
- package/styles/drop-down-button/bootstrap-dark.scss +6 -1
- package/styles/drop-down-button/bootstrap.scss +6 -1
- package/styles/drop-down-button/bootstrap4.scss +6 -1
- package/styles/drop-down-button/bootstrap5-dark.scss +6 -1
- package/styles/drop-down-button/bootstrap5.scss +6 -1
- package/styles/drop-down-button/fabric-dark.scss +6 -1
- package/styles/drop-down-button/fabric.scss +6 -1
- package/styles/drop-down-button/fluent-dark.scss +6 -1
- package/styles/drop-down-button/fluent.scss +6 -1
- package/styles/drop-down-button/highcontrast-light.scss +6 -1
- package/styles/drop-down-button/highcontrast.scss +6 -1
- package/styles/drop-down-button/icons/_bootstrap-dark.scss +10 -0
- package/styles/drop-down-button/icons/_bootstrap.scss +10 -0
- package/styles/drop-down-button/icons/_bootstrap4.scss +10 -0
- package/styles/drop-down-button/icons/_bootstrap5-dark.scss +1 -0
- package/styles/drop-down-button/icons/_bootstrap5.scss +10 -0
- package/styles/drop-down-button/icons/_fabric-dark.scss +10 -0
- package/styles/drop-down-button/icons/_fabric.scss +10 -0
- package/styles/drop-down-button/icons/_fluent-dark.scss +1 -0
- package/styles/drop-down-button/icons/_fluent.scss +10 -0
- package/styles/drop-down-button/icons/_fusionnew.scss +10 -0
- package/styles/drop-down-button/icons/_highcontrast-light.scss +10 -0
- package/styles/drop-down-button/icons/_highcontrast.scss +10 -0
- package/styles/drop-down-button/icons/_material-dark.scss +10 -0
- package/styles/drop-down-button/icons/_material.scss +10 -0
- package/styles/drop-down-button/icons/_material3-dark.scss +1 -0
- package/styles/drop-down-button/icons/_material3.scss +10 -0
- package/styles/drop-down-button/icons/_tailwind-dark.scss +10 -0
- package/styles/drop-down-button/icons/_tailwind.scss +10 -0
- package/styles/drop-down-button/material-dark.scss +6 -1
- package/styles/drop-down-button/material.scss +6 -1
- package/styles/drop-down-button/material3-dark.scss +6 -1
- package/styles/drop-down-button/material3.scss +6 -1
- package/styles/drop-down-button/tailwind-dark.scss +6 -1
- package/styles/drop-down-button/tailwind.scss +6 -1
- package/styles/material3-dark.css +0 -165
- package/styles/material3-dark.scss +1 -0
- package/styles/material3.css +0 -333
- package/styles/material3.scss +1 -0
- package/styles/progress-button/_all.scss +2 -0
- package/styles/progress-button/_bootstrap-dark-definition.scss +27 -0
- package/styles/progress-button/_bootstrap-definition.scss +24 -0
- package/styles/progress-button/_bootstrap4-definition.scss +24 -0
- package/styles/progress-button/_bootstrap5-dark-definition.scss +1 -0
- package/styles/progress-button/_bootstrap5-definition.scss +21 -0
- package/styles/progress-button/_fabric-dark-definition.scss +27 -0
- package/styles/progress-button/_fabric-definition.scss +24 -0
- package/styles/progress-button/_fluent-dark-definition.scss +1 -0
- package/styles/progress-button/_fluent-definition.scss +21 -0
- package/styles/progress-button/_fusionnew-definition.scss +21 -0
- package/styles/progress-button/_highcontrast-definition.scss +24 -0
- package/styles/progress-button/_highcontrast-light-definition.scss +24 -0
- package/styles/progress-button/_layout.scss +396 -0
- package/styles/progress-button/_material-dark-definition.scss +27 -0
- package/styles/progress-button/_material-definition.scss +24 -0
- package/styles/progress-button/_material3-dark-definition.scss +1 -0
- package/styles/progress-button/_material3-definition.scss +25 -0
- package/styles/progress-button/_tailwind-dark-definition.scss +1 -0
- package/styles/progress-button/_tailwind-definition.scss +21 -0
- package/styles/progress-button/_theme.scss +638 -0
- package/styles/progress-button/bootstrap-dark.scss +5 -1
- package/styles/progress-button/bootstrap.scss +5 -1
- package/styles/progress-button/bootstrap4.scss +5 -1
- package/styles/progress-button/bootstrap5-dark.scss +5 -1
- package/styles/progress-button/bootstrap5.scss +5 -1
- package/styles/progress-button/fabric-dark.scss +5 -1
- package/styles/progress-button/fabric.scss +5 -1
- package/styles/progress-button/fluent-dark.scss +5 -1
- package/styles/progress-button/fluent.scss +5 -1
- package/styles/progress-button/highcontrast-light.scss +5 -1
- package/styles/progress-button/highcontrast.scss +5 -1
- package/styles/progress-button/material-dark.scss +5 -1
- package/styles/progress-button/material.scss +5 -1
- package/styles/progress-button/material3-dark.scss +5 -1
- package/styles/progress-button/material3.scss +5 -1
- package/styles/progress-button/tailwind-dark.scss +5 -1
- package/styles/progress-button/tailwind.scss +5 -1
- package/styles/split-button/_all.scss +2 -0
- package/styles/split-button/_bootstrap-dark-definition.scss +26 -0
- package/styles/split-button/_bootstrap-definition.scss +23 -0
- package/styles/split-button/_bootstrap4-definition.scss +26 -0
- package/styles/split-button/_bootstrap5-dark-definition.scss +1 -0
- package/styles/split-button/_bootstrap5-definition.scss +24 -0
- package/styles/split-button/_fabric-dark-definition.scss +26 -0
- package/styles/split-button/_fabric-definition.scss +23 -0
- package/styles/split-button/_fluent-dark-definition.scss +1 -0
- package/styles/split-button/_fluent-definition.scss +24 -0
- package/styles/split-button/_fusionnew-definition.scss +24 -0
- package/styles/split-button/_highcontrast-definition.scss +23 -0
- package/styles/split-button/_highcontrast-light-definition.scss +26 -0
- package/styles/split-button/_layout.scss +484 -0
- package/styles/split-button/_material-dark-definition.scss +26 -0
- package/styles/split-button/_material-definition.scss +23 -0
- package/styles/split-button/_material3-dark-definition.scss +1 -0
- package/styles/split-button/_material3-definition.scss +26 -0
- package/styles/split-button/_tailwind-dark-definition.scss +1 -0
- package/styles/split-button/_tailwind-definition.scss +24 -0
- package/styles/split-button/_theme.scss +187 -0
- package/styles/split-button/bootstrap-dark.scss +6 -1
- package/styles/split-button/bootstrap.scss +6 -1
- package/styles/split-button/bootstrap4.scss +6 -1
- package/styles/split-button/bootstrap5-dark.scss +6 -1
- package/styles/split-button/bootstrap5.scss +6 -1
- package/styles/split-button/fabric-dark.scss +6 -1
- package/styles/split-button/fabric.scss +6 -1
- package/styles/split-button/fluent-dark.scss +6 -1
- package/styles/split-button/fluent.scss +6 -1
- package/styles/split-button/highcontrast-light.scss +6 -1
- package/styles/split-button/highcontrast.scss +6 -1
- package/styles/split-button/material-dark.scss +6 -1
- package/styles/split-button/material.scss +6 -1
- package/styles/split-button/material3-dark.scss +6 -1
- package/styles/split-button/material3.scss +6 -1
- package/styles/split-button/tailwind-dark.scss +6 -1
- package/styles/split-button/tailwind.scss +6 -1
- package/syncfusion-ej2-angular-splitbuttons.d.ts +5 -0
- package/@syncfusion/ej2-angular-splitbuttons.es5.js +0 -565
- package/@syncfusion/ej2-angular-splitbuttons.es5.js.map +0 -1
- package/@syncfusion/ej2-angular-splitbuttons.js +0 -516
- package/@syncfusion/ej2-angular-splitbuttons.js.map +0 -1
- package/CHANGELOG.md +0 -264
- package/dist/ej2-angular-splitbuttons.umd.js +0 -603
- package/dist/ej2-angular-splitbuttons.umd.js.map +0 -1
- package/dist/ej2-angular-splitbuttons.umd.min.js +0 -11
- package/dist/ej2-angular-splitbuttons.umd.min.js.map +0 -1
- package/ej2-angular-splitbuttons.d.ts +0 -7
- package/ej2-angular-splitbuttons.metadata.json +0 -1
- package/postinstall/tagchange.js +0 -18
|
@@ -291,61 +291,6 @@
|
|
|
291
291
|
color: inherit;
|
|
292
292
|
}
|
|
293
293
|
|
|
294
|
-
:root {
|
|
295
|
-
--color-sf-black: 0, 0, 0;
|
|
296
|
-
--color-sf-white: 255, 255, 255;
|
|
297
|
-
--color-sf-primary: 208, 188, 255;
|
|
298
|
-
--color-sf-primary-container: 79, 55, 139;
|
|
299
|
-
--color-sf-secondary: 204, 194, 220;
|
|
300
|
-
--color-sf-secondary-container: 74, 68, 88;
|
|
301
|
-
--color-sf-tertiary: 239, 184, 200;
|
|
302
|
-
--color-sf-tertiary-container: 99, 59, 72;
|
|
303
|
-
--color-sf-surface: 28, 27, 31;
|
|
304
|
-
--color-sf-surface-variant: 73, 69, 79;
|
|
305
|
-
--color-sf-background: var(--color-sf-surface);
|
|
306
|
-
--color-sf-on-primary: 55, 30, 115;
|
|
307
|
-
--color-sf-on-primary-container: 234, 221, 255;
|
|
308
|
-
--color-sf-on-secondary: 51, 45, 65;
|
|
309
|
-
--color-sf-on-secondary-container: 232, 222, 248;
|
|
310
|
-
--color-sf-on-tertiary: 73, 37, 50;
|
|
311
|
-
--color-sf-on-tertiary-containe: 255, 216, 228;
|
|
312
|
-
--color-sf-on-surface: 230, 225, 229;
|
|
313
|
-
--color-sf-on-surface-variant: 202, 196, 208;
|
|
314
|
-
--color-sf-on-background: 230, 225, 229;
|
|
315
|
-
--color-sf-outline: 147, 143, 153;
|
|
316
|
-
--color-sf-outline-variant: 68, 71, 70;
|
|
317
|
-
--color-sf-shadow: 0, 0, 0;
|
|
318
|
-
--color-sf-surface-tint-color: 208, 188, 255;
|
|
319
|
-
--color-sf-inverse-surface: 230, 225, 229;
|
|
320
|
-
--color-sf-inverse-on-surface: 49, 48, 51;
|
|
321
|
-
--color-sf-inverse-primary: 103, 80, 164;
|
|
322
|
-
--color-sf-scrim: 0, 0, 0;
|
|
323
|
-
--color-sf-error: 242, 184, 181;
|
|
324
|
-
--color-sf-error-container: 140, 29, 24;
|
|
325
|
-
--color-sf-on-error: 96, 20, 16;
|
|
326
|
-
--color-sf-on-error-container: 249, 222, 220;
|
|
327
|
-
--color-sf-success: 83, 202, 23;
|
|
328
|
-
--color-sf-success-container: 22, 62, 2;
|
|
329
|
-
--color-sf-on-success: 13, 39, 0;
|
|
330
|
-
--color-sf-on-success-container: 183, 250, 150;
|
|
331
|
-
--color-sf-info: 71, 172, 251;
|
|
332
|
-
--color-sf-info-container: 0, 67, 120;
|
|
333
|
-
--color-sf-on-info: 0, 51, 91;
|
|
334
|
-
--color-sf-on-info-container: 173, 219, 255;
|
|
335
|
-
--color-sf-warning: 245, 180, 130;
|
|
336
|
-
--color-sf-warning-container: 123, 65, 0;
|
|
337
|
-
--color-sf-on-warning: 99, 52, 0;
|
|
338
|
-
--color-sf-on-warning-container: 255, 220, 193;
|
|
339
|
-
--color-sf-spreadsheet-gridline: 231, 224, 236;
|
|
340
|
-
--color-sf-shadow-focus-ring1: 0 0 0 1px #000000, 0 0 0 3px #ffffff;
|
|
341
|
-
--color-sf-success-text: 0, 0, 0;
|
|
342
|
-
--color-sf-warning-text: 0, 0, 0;
|
|
343
|
-
--color-sf-info-text: 0, 0, 0;
|
|
344
|
-
--color-sf-danger-text: 0, 0, 0;
|
|
345
|
-
--color-sf-diagram-palette-background: var(--color-sf-inverse-surface);
|
|
346
|
-
--color-sf-content-text-color-alt2: var(--color-sf-on-secondary);
|
|
347
|
-
}
|
|
348
|
-
|
|
349
294
|
/* stylelint-disable-line no-empty-source */
|
|
350
295
|
/*! splitbutton layout */
|
|
351
296
|
.e-split-btn-wrapper {
|
|
@@ -704,61 +649,6 @@
|
|
|
704
649
|
border-color: transparent;
|
|
705
650
|
}
|
|
706
651
|
|
|
707
|
-
:root {
|
|
708
|
-
--color-sf-black: 0, 0, 0;
|
|
709
|
-
--color-sf-white: 255, 255, 255;
|
|
710
|
-
--color-sf-primary: 208, 188, 255;
|
|
711
|
-
--color-sf-primary-container: 79, 55, 139;
|
|
712
|
-
--color-sf-secondary: 204, 194, 220;
|
|
713
|
-
--color-sf-secondary-container: 74, 68, 88;
|
|
714
|
-
--color-sf-tertiary: 239, 184, 200;
|
|
715
|
-
--color-sf-tertiary-container: 99, 59, 72;
|
|
716
|
-
--color-sf-surface: 28, 27, 31;
|
|
717
|
-
--color-sf-surface-variant: 73, 69, 79;
|
|
718
|
-
--color-sf-background: var(--color-sf-surface);
|
|
719
|
-
--color-sf-on-primary: 55, 30, 115;
|
|
720
|
-
--color-sf-on-primary-container: 234, 221, 255;
|
|
721
|
-
--color-sf-on-secondary: 51, 45, 65;
|
|
722
|
-
--color-sf-on-secondary-container: 232, 222, 248;
|
|
723
|
-
--color-sf-on-tertiary: 73, 37, 50;
|
|
724
|
-
--color-sf-on-tertiary-containe: 255, 216, 228;
|
|
725
|
-
--color-sf-on-surface: 230, 225, 229;
|
|
726
|
-
--color-sf-on-surface-variant: 202, 196, 208;
|
|
727
|
-
--color-sf-on-background: 230, 225, 229;
|
|
728
|
-
--color-sf-outline: 147, 143, 153;
|
|
729
|
-
--color-sf-outline-variant: 68, 71, 70;
|
|
730
|
-
--color-sf-shadow: 0, 0, 0;
|
|
731
|
-
--color-sf-surface-tint-color: 208, 188, 255;
|
|
732
|
-
--color-sf-inverse-surface: 230, 225, 229;
|
|
733
|
-
--color-sf-inverse-on-surface: 49, 48, 51;
|
|
734
|
-
--color-sf-inverse-primary: 103, 80, 164;
|
|
735
|
-
--color-sf-scrim: 0, 0, 0;
|
|
736
|
-
--color-sf-error: 242, 184, 181;
|
|
737
|
-
--color-sf-error-container: 140, 29, 24;
|
|
738
|
-
--color-sf-on-error: 96, 20, 16;
|
|
739
|
-
--color-sf-on-error-container: 249, 222, 220;
|
|
740
|
-
--color-sf-success: 83, 202, 23;
|
|
741
|
-
--color-sf-success-container: 22, 62, 2;
|
|
742
|
-
--color-sf-on-success: 13, 39, 0;
|
|
743
|
-
--color-sf-on-success-container: 183, 250, 150;
|
|
744
|
-
--color-sf-info: 71, 172, 251;
|
|
745
|
-
--color-sf-info-container: 0, 67, 120;
|
|
746
|
-
--color-sf-on-info: 0, 51, 91;
|
|
747
|
-
--color-sf-on-info-container: 173, 219, 255;
|
|
748
|
-
--color-sf-warning: 245, 180, 130;
|
|
749
|
-
--color-sf-warning-container: 123, 65, 0;
|
|
750
|
-
--color-sf-on-warning: 99, 52, 0;
|
|
751
|
-
--color-sf-on-warning-container: 255, 220, 193;
|
|
752
|
-
--color-sf-spreadsheet-gridline: 231, 224, 236;
|
|
753
|
-
--color-sf-shadow-focus-ring1: 0 0 0 1px #000000, 0 0 0 3px #ffffff;
|
|
754
|
-
--color-sf-success-text: 0, 0, 0;
|
|
755
|
-
--color-sf-warning-text: 0, 0, 0;
|
|
756
|
-
--color-sf-info-text: 0, 0, 0;
|
|
757
|
-
--color-sf-danger-text: 0, 0, 0;
|
|
758
|
-
--color-sf-diagram-palette-background: var(--color-sf-inverse-surface);
|
|
759
|
-
--color-sf-content-text-color-alt2: var(--color-sf-on-secondary);
|
|
760
|
-
}
|
|
761
|
-
|
|
762
652
|
/* stylelint-disable */
|
|
763
653
|
*.e-btn-group,
|
|
764
654
|
*.e-css.e-btn-group {
|
|
@@ -1606,61 +1496,6 @@
|
|
|
1606
1496
|
border-right: transparent;
|
|
1607
1497
|
}
|
|
1608
1498
|
|
|
1609
|
-
:root {
|
|
1610
|
-
--color-sf-black: 0, 0, 0;
|
|
1611
|
-
--color-sf-white: 255, 255, 255;
|
|
1612
|
-
--color-sf-primary: 208, 188, 255;
|
|
1613
|
-
--color-sf-primary-container: 79, 55, 139;
|
|
1614
|
-
--color-sf-secondary: 204, 194, 220;
|
|
1615
|
-
--color-sf-secondary-container: 74, 68, 88;
|
|
1616
|
-
--color-sf-tertiary: 239, 184, 200;
|
|
1617
|
-
--color-sf-tertiary-container: 99, 59, 72;
|
|
1618
|
-
--color-sf-surface: 28, 27, 31;
|
|
1619
|
-
--color-sf-surface-variant: 73, 69, 79;
|
|
1620
|
-
--color-sf-background: var(--color-sf-surface);
|
|
1621
|
-
--color-sf-on-primary: 55, 30, 115;
|
|
1622
|
-
--color-sf-on-primary-container: 234, 221, 255;
|
|
1623
|
-
--color-sf-on-secondary: 51, 45, 65;
|
|
1624
|
-
--color-sf-on-secondary-container: 232, 222, 248;
|
|
1625
|
-
--color-sf-on-tertiary: 73, 37, 50;
|
|
1626
|
-
--color-sf-on-tertiary-containe: 255, 216, 228;
|
|
1627
|
-
--color-sf-on-surface: 230, 225, 229;
|
|
1628
|
-
--color-sf-on-surface-variant: 202, 196, 208;
|
|
1629
|
-
--color-sf-on-background: 230, 225, 229;
|
|
1630
|
-
--color-sf-outline: 147, 143, 153;
|
|
1631
|
-
--color-sf-outline-variant: 68, 71, 70;
|
|
1632
|
-
--color-sf-shadow: 0, 0, 0;
|
|
1633
|
-
--color-sf-surface-tint-color: 208, 188, 255;
|
|
1634
|
-
--color-sf-inverse-surface: 230, 225, 229;
|
|
1635
|
-
--color-sf-inverse-on-surface: 49, 48, 51;
|
|
1636
|
-
--color-sf-inverse-primary: 103, 80, 164;
|
|
1637
|
-
--color-sf-scrim: 0, 0, 0;
|
|
1638
|
-
--color-sf-error: 242, 184, 181;
|
|
1639
|
-
--color-sf-error-container: 140, 29, 24;
|
|
1640
|
-
--color-sf-on-error: 96, 20, 16;
|
|
1641
|
-
--color-sf-on-error-container: 249, 222, 220;
|
|
1642
|
-
--color-sf-success: 83, 202, 23;
|
|
1643
|
-
--color-sf-success-container: 22, 62, 2;
|
|
1644
|
-
--color-sf-on-success: 13, 39, 0;
|
|
1645
|
-
--color-sf-on-success-container: 183, 250, 150;
|
|
1646
|
-
--color-sf-info: 71, 172, 251;
|
|
1647
|
-
--color-sf-info-container: 0, 67, 120;
|
|
1648
|
-
--color-sf-on-info: 0, 51, 91;
|
|
1649
|
-
--color-sf-on-info-container: 173, 219, 255;
|
|
1650
|
-
--color-sf-warning: 245, 180, 130;
|
|
1651
|
-
--color-sf-warning-container: 123, 65, 0;
|
|
1652
|
-
--color-sf-on-warning: 99, 52, 0;
|
|
1653
|
-
--color-sf-on-warning-container: 255, 220, 193;
|
|
1654
|
-
--color-sf-spreadsheet-gridline: 231, 224, 236;
|
|
1655
|
-
--color-sf-shadow-focus-ring1: 0 0 0 1px #000000, 0 0 0 3px #ffffff;
|
|
1656
|
-
--color-sf-success-text: 0, 0, 0;
|
|
1657
|
-
--color-sf-warning-text: 0, 0, 0;
|
|
1658
|
-
--color-sf-info-text: 0, 0, 0;
|
|
1659
|
-
--color-sf-danger-text: 0, 0, 0;
|
|
1660
|
-
--color-sf-diagram-palette-background: var(--color-sf-inverse-surface);
|
|
1661
|
-
--color-sf-content-text-color-alt2: var(--color-sf-on-secondary);
|
|
1662
|
-
}
|
|
1663
|
-
|
|
1664
1499
|
/* stylelint-disable property-no-vendor-prefix */
|
|
1665
1500
|
@keyframes material-spinner-rotate {
|
|
1666
1501
|
0% {
|
package/styles/material3.css
CHANGED
|
@@ -347,117 +347,6 @@
|
|
|
347
347
|
color: inherit;
|
|
348
348
|
}
|
|
349
349
|
|
|
350
|
-
:root {
|
|
351
|
-
--color-sf-black: 0, 0, 0;
|
|
352
|
-
--color-sf-white: 255, 255, 255;
|
|
353
|
-
--color-sf-primary: 103, 80, 164;
|
|
354
|
-
--color-sf-primary-container: 234, 221, 255;
|
|
355
|
-
--color-sf-secondary: 98, 91, 113;
|
|
356
|
-
--color-sf-secondary-container: 232, 222, 248;
|
|
357
|
-
--color-sf-tertiary: 125, 82, 96;
|
|
358
|
-
--color-sf-tertiary-container: 255, 216, 228;
|
|
359
|
-
--color-sf-surface: 255, 255, 255;
|
|
360
|
-
--color-sf-surface-variant: 231, 224, 236;
|
|
361
|
-
--color-sf-background: var(--color-sf-surface);
|
|
362
|
-
--color-sf-on-primary: 255, 255, 255;
|
|
363
|
-
--color-sf-on-primary-container: 33, 0, 94;
|
|
364
|
-
--color-sf-on-secondary: 255, 255, 255;
|
|
365
|
-
--color-sf-on-secondary-container: 30, 25, 43;
|
|
366
|
-
--color-sf-on-tertiary: 255, 255, 255;
|
|
367
|
-
--color-sf-on-tertiary-containe: 55, 11, 30;
|
|
368
|
-
--color-sf-on-surface: 28, 27, 31;
|
|
369
|
-
--color-sf-on-surface-variant: 73, 69, 78;
|
|
370
|
-
--color-sf-on-background: 28, 27, 31;
|
|
371
|
-
--color-sf-outline: 121, 116, 126;
|
|
372
|
-
--color-sf-outline-variant: 196, 199, 197;
|
|
373
|
-
--color-sf-shadow: 0, 0, 0;
|
|
374
|
-
--color-sf-surface-tint-color: 103, 80, 164;
|
|
375
|
-
--color-sf-inverse-surface: 49, 48, 51;
|
|
376
|
-
--color-sf-inverse-on-surface: 244, 239, 244;
|
|
377
|
-
--color-sf-inverse-primary: 208, 188, 255;
|
|
378
|
-
--color-sf-scrim: 0, 0, 0;
|
|
379
|
-
--color-sf-error: 179, 38, 30;
|
|
380
|
-
--color-sf-error-container: 249, 222, 220;
|
|
381
|
-
--color-sf-on-error: 255, 250, 250;
|
|
382
|
-
--color-sf-on-error-container: 65, 14, 11;
|
|
383
|
-
--color-sf-success: 32, 81, 7;
|
|
384
|
-
--color-sf-success-container: 209, 255, 186;
|
|
385
|
-
--color-sf-on-success: 244, 255, 239;
|
|
386
|
-
--color-sf-on-success-container: 13, 39, 0;
|
|
387
|
-
--color-sf-info: 1, 87, 155;
|
|
388
|
-
--color-sf-info-container: 233, 245, 255;
|
|
389
|
-
--color-sf-on-info: 250, 253, 255;
|
|
390
|
-
--color-sf-on-info-container: 0, 51, 91;
|
|
391
|
-
--color-sf-warning: 145, 76, 0;
|
|
392
|
-
--color-sf-warning-container: 254, 236, 222;
|
|
393
|
-
--color-sf-on-warning: 255, 255, 255;
|
|
394
|
-
--color-sf-on-warning-container: 47, 21, 0;
|
|
395
|
-
--color-sf-spreadsheet-gridline: var(--color-sf-surface-variant);
|
|
396
|
-
--color-sf-shadow-focus-ring1: 0 0 0 1px rgb(255, 255, 255), 0 0 0 3px rgb(0, 0, 0);
|
|
397
|
-
--color-sf-diagram-palette-background: --color-sf-white;
|
|
398
|
-
--color-sf-success-text: 255, 255, 255;
|
|
399
|
-
--color-sf-warning-text: 255, 255, 255;
|
|
400
|
-
--color-sf-danger-text: 255, 255, 255;
|
|
401
|
-
--color-sf-info-text: 255, 255, 255;
|
|
402
|
-
--color-sf-content-text-color-alt2: var(--color-sf-on-secondary-container);
|
|
403
|
-
--color-sf-secondary-bg-color: var(--color-sf-surface);
|
|
404
|
-
}
|
|
405
|
-
|
|
406
|
-
.e-dark-mode {
|
|
407
|
-
--color-sf-black: 0, 0, 0;
|
|
408
|
-
--color-sf-white: 255, 255, 255;
|
|
409
|
-
--color-sf-primary: 208, 188, 255;
|
|
410
|
-
--color-sf-primary-container: 79, 55, 139;
|
|
411
|
-
--color-sf-secondary: 204, 194, 220;
|
|
412
|
-
--color-sf-secondary-container: 74, 68, 88;
|
|
413
|
-
--color-sf-tertiary: 239, 184, 200;
|
|
414
|
-
--color-sf-tertiary-container: 99, 59, 72;
|
|
415
|
-
--color-sf-surface: 28, 27, 31;
|
|
416
|
-
--color-sf-surface-variant: 28, 27, 31;
|
|
417
|
-
--color-sf-background: var(--color-sf-surface);
|
|
418
|
-
--color-sf-on-primary: 55, 30, 115;
|
|
419
|
-
--color-sf-on-primary-container: 234, 221, 255;
|
|
420
|
-
--color-sf-on-secondary: 51, 45, 65;
|
|
421
|
-
--color-sf-on-secondary-container: 232, 222, 248;
|
|
422
|
-
--color-sf-on-tertiary: 73, 37, 50;
|
|
423
|
-
--color-sf-on-tertiary-containe: 255, 216, 228;
|
|
424
|
-
--color-sf-on-surface: 230, 225, 229;
|
|
425
|
-
--color-sf-on-surface-variant: 202, 196, 208;
|
|
426
|
-
--color-sf-on-background: 230, 225, 229;
|
|
427
|
-
--color-sf-outline: 147, 143, 153;
|
|
428
|
-
--color-sf-outline-variant: 68, 71, 70;
|
|
429
|
-
--color-sf-shadow: 0, 0, 0;
|
|
430
|
-
--color-sf-surface-tint-color: 208, 188, 255;
|
|
431
|
-
--color-sf-inverse-surface: 230, 225, 229;
|
|
432
|
-
--color-sf-inverse-on-surface: 49, 48, 51;
|
|
433
|
-
--color-sf-inverse-primary: 103, 80, 164;
|
|
434
|
-
--color-sf-scrim: 0, 0, 0;
|
|
435
|
-
--color-sf-error: 242, 184, 181;
|
|
436
|
-
--color-sf-error-container: 140, 29, 24;
|
|
437
|
-
--color-sf-on-error: 96, 20, 16;
|
|
438
|
-
--color-sf-on-error-container: 249, 222, 220;
|
|
439
|
-
--color-sf-success: 83, 202, 23;
|
|
440
|
-
--color-sf-success-container: 22, 62, 2;
|
|
441
|
-
--color-sf-on-success: 13, 39, 0;
|
|
442
|
-
--color-sf-on-success-container: 183, 250, 150;
|
|
443
|
-
--color-sf-info: 71, 172, 251;
|
|
444
|
-
--color-sf-info-container: 0, 67, 120;
|
|
445
|
-
--color-sf-on-info: 0, 51, 91;
|
|
446
|
-
--color-sf-on-info-container: 173, 219, 255;
|
|
447
|
-
--color-sf-warning: 245, 180, 130;
|
|
448
|
-
--color-sf-warning-container: 123, 65, 0;
|
|
449
|
-
--color-sf-on-warning: 99, 52, 0;
|
|
450
|
-
--color-sf-on-warning-container: 255, 220, 193;
|
|
451
|
-
--color-sf-spreadsheet-gridline: 231, 224, 236;
|
|
452
|
-
--color-sf-shadow-focus-ring1: 0 0 0 1px #000000, 0 0 0 3px #ffffff;
|
|
453
|
-
--color-sf-success-text: 0, 0, 0;
|
|
454
|
-
--color-sf-warning-text: 0, 0, 0;
|
|
455
|
-
--color-sf-info-text: 0, 0, 0;
|
|
456
|
-
--color-sf-danger-text: 0, 0, 0;
|
|
457
|
-
--color-sf-diagram-palette-background: var(--color-sf-inverse-surface);
|
|
458
|
-
--color-sf-content-text-color-alt2: var(--color-sf-on-secondary);
|
|
459
|
-
}
|
|
460
|
-
|
|
461
350
|
/* stylelint-disable-line no-empty-source */
|
|
462
351
|
/*! splitbutton layout */
|
|
463
352
|
.e-split-btn-wrapper {
|
|
@@ -810,117 +699,6 @@
|
|
|
810
699
|
border-color: transparent;
|
|
811
700
|
}
|
|
812
701
|
|
|
813
|
-
:root {
|
|
814
|
-
--color-sf-black: 0, 0, 0;
|
|
815
|
-
--color-sf-white: 255, 255, 255;
|
|
816
|
-
--color-sf-primary: 103, 80, 164;
|
|
817
|
-
--color-sf-primary-container: 234, 221, 255;
|
|
818
|
-
--color-sf-secondary: 98, 91, 113;
|
|
819
|
-
--color-sf-secondary-container: 232, 222, 248;
|
|
820
|
-
--color-sf-tertiary: 125, 82, 96;
|
|
821
|
-
--color-sf-tertiary-container: 255, 216, 228;
|
|
822
|
-
--color-sf-surface: 255, 255, 255;
|
|
823
|
-
--color-sf-surface-variant: 231, 224, 236;
|
|
824
|
-
--color-sf-background: var(--color-sf-surface);
|
|
825
|
-
--color-sf-on-primary: 255, 255, 255;
|
|
826
|
-
--color-sf-on-primary-container: 33, 0, 94;
|
|
827
|
-
--color-sf-on-secondary: 255, 255, 255;
|
|
828
|
-
--color-sf-on-secondary-container: 30, 25, 43;
|
|
829
|
-
--color-sf-on-tertiary: 255, 255, 255;
|
|
830
|
-
--color-sf-on-tertiary-containe: 55, 11, 30;
|
|
831
|
-
--color-sf-on-surface: 28, 27, 31;
|
|
832
|
-
--color-sf-on-surface-variant: 73, 69, 78;
|
|
833
|
-
--color-sf-on-background: 28, 27, 31;
|
|
834
|
-
--color-sf-outline: 121, 116, 126;
|
|
835
|
-
--color-sf-outline-variant: 196, 199, 197;
|
|
836
|
-
--color-sf-shadow: 0, 0, 0;
|
|
837
|
-
--color-sf-surface-tint-color: 103, 80, 164;
|
|
838
|
-
--color-sf-inverse-surface: 49, 48, 51;
|
|
839
|
-
--color-sf-inverse-on-surface: 244, 239, 244;
|
|
840
|
-
--color-sf-inverse-primary: 208, 188, 255;
|
|
841
|
-
--color-sf-scrim: 0, 0, 0;
|
|
842
|
-
--color-sf-error: 179, 38, 30;
|
|
843
|
-
--color-sf-error-container: 249, 222, 220;
|
|
844
|
-
--color-sf-on-error: 255, 250, 250;
|
|
845
|
-
--color-sf-on-error-container: 65, 14, 11;
|
|
846
|
-
--color-sf-success: 32, 81, 7;
|
|
847
|
-
--color-sf-success-container: 209, 255, 186;
|
|
848
|
-
--color-sf-on-success: 244, 255, 239;
|
|
849
|
-
--color-sf-on-success-container: 13, 39, 0;
|
|
850
|
-
--color-sf-info: 1, 87, 155;
|
|
851
|
-
--color-sf-info-container: 233, 245, 255;
|
|
852
|
-
--color-sf-on-info: 250, 253, 255;
|
|
853
|
-
--color-sf-on-info-container: 0, 51, 91;
|
|
854
|
-
--color-sf-warning: 145, 76, 0;
|
|
855
|
-
--color-sf-warning-container: 254, 236, 222;
|
|
856
|
-
--color-sf-on-warning: 255, 255, 255;
|
|
857
|
-
--color-sf-on-warning-container: 47, 21, 0;
|
|
858
|
-
--color-sf-spreadsheet-gridline: var(--color-sf-surface-variant);
|
|
859
|
-
--color-sf-shadow-focus-ring1: 0 0 0 1px rgb(255, 255, 255), 0 0 0 3px rgb(0, 0, 0);
|
|
860
|
-
--color-sf-diagram-palette-background: --color-sf-white;
|
|
861
|
-
--color-sf-success-text: 255, 255, 255;
|
|
862
|
-
--color-sf-warning-text: 255, 255, 255;
|
|
863
|
-
--color-sf-danger-text: 255, 255, 255;
|
|
864
|
-
--color-sf-info-text: 255, 255, 255;
|
|
865
|
-
--color-sf-content-text-color-alt2: var(--color-sf-on-secondary-container);
|
|
866
|
-
--color-sf-secondary-bg-color: var(--color-sf-surface);
|
|
867
|
-
}
|
|
868
|
-
|
|
869
|
-
.e-dark-mode {
|
|
870
|
-
--color-sf-black: 0, 0, 0;
|
|
871
|
-
--color-sf-white: 255, 255, 255;
|
|
872
|
-
--color-sf-primary: 208, 188, 255;
|
|
873
|
-
--color-sf-primary-container: 79, 55, 139;
|
|
874
|
-
--color-sf-secondary: 204, 194, 220;
|
|
875
|
-
--color-sf-secondary-container: 74, 68, 88;
|
|
876
|
-
--color-sf-tertiary: 239, 184, 200;
|
|
877
|
-
--color-sf-tertiary-container: 99, 59, 72;
|
|
878
|
-
--color-sf-surface: 28, 27, 31;
|
|
879
|
-
--color-sf-surface-variant: 28, 27, 31;
|
|
880
|
-
--color-sf-background: var(--color-sf-surface);
|
|
881
|
-
--color-sf-on-primary: 55, 30, 115;
|
|
882
|
-
--color-sf-on-primary-container: 234, 221, 255;
|
|
883
|
-
--color-sf-on-secondary: 51, 45, 65;
|
|
884
|
-
--color-sf-on-secondary-container: 232, 222, 248;
|
|
885
|
-
--color-sf-on-tertiary: 73, 37, 50;
|
|
886
|
-
--color-sf-on-tertiary-containe: 255, 216, 228;
|
|
887
|
-
--color-sf-on-surface: 230, 225, 229;
|
|
888
|
-
--color-sf-on-surface-variant: 202, 196, 208;
|
|
889
|
-
--color-sf-on-background: 230, 225, 229;
|
|
890
|
-
--color-sf-outline: 147, 143, 153;
|
|
891
|
-
--color-sf-outline-variant: 68, 71, 70;
|
|
892
|
-
--color-sf-shadow: 0, 0, 0;
|
|
893
|
-
--color-sf-surface-tint-color: 208, 188, 255;
|
|
894
|
-
--color-sf-inverse-surface: 230, 225, 229;
|
|
895
|
-
--color-sf-inverse-on-surface: 49, 48, 51;
|
|
896
|
-
--color-sf-inverse-primary: 103, 80, 164;
|
|
897
|
-
--color-sf-scrim: 0, 0, 0;
|
|
898
|
-
--color-sf-error: 242, 184, 181;
|
|
899
|
-
--color-sf-error-container: 140, 29, 24;
|
|
900
|
-
--color-sf-on-error: 96, 20, 16;
|
|
901
|
-
--color-sf-on-error-container: 249, 222, 220;
|
|
902
|
-
--color-sf-success: 83, 202, 23;
|
|
903
|
-
--color-sf-success-container: 22, 62, 2;
|
|
904
|
-
--color-sf-on-success: 13, 39, 0;
|
|
905
|
-
--color-sf-on-success-container: 183, 250, 150;
|
|
906
|
-
--color-sf-info: 71, 172, 251;
|
|
907
|
-
--color-sf-info-container: 0, 67, 120;
|
|
908
|
-
--color-sf-on-info: 0, 51, 91;
|
|
909
|
-
--color-sf-on-info-container: 173, 219, 255;
|
|
910
|
-
--color-sf-warning: 245, 180, 130;
|
|
911
|
-
--color-sf-warning-container: 123, 65, 0;
|
|
912
|
-
--color-sf-on-warning: 99, 52, 0;
|
|
913
|
-
--color-sf-on-warning-container: 255, 220, 193;
|
|
914
|
-
--color-sf-spreadsheet-gridline: 231, 224, 236;
|
|
915
|
-
--color-sf-shadow-focus-ring1: 0 0 0 1px #000000, 0 0 0 3px #ffffff;
|
|
916
|
-
--color-sf-success-text: 0, 0, 0;
|
|
917
|
-
--color-sf-warning-text: 0, 0, 0;
|
|
918
|
-
--color-sf-info-text: 0, 0, 0;
|
|
919
|
-
--color-sf-danger-text: 0, 0, 0;
|
|
920
|
-
--color-sf-diagram-palette-background: var(--color-sf-inverse-surface);
|
|
921
|
-
--color-sf-content-text-color-alt2: var(--color-sf-on-secondary);
|
|
922
|
-
}
|
|
923
|
-
|
|
924
702
|
/* stylelint-disable */
|
|
925
703
|
*.e-btn-group,
|
|
926
704
|
*.e-css.e-btn-group {
|
|
@@ -1768,117 +1546,6 @@
|
|
|
1768
1546
|
border-right: transparent;
|
|
1769
1547
|
}
|
|
1770
1548
|
|
|
1771
|
-
:root {
|
|
1772
|
-
--color-sf-black: 0, 0, 0;
|
|
1773
|
-
--color-sf-white: 255, 255, 255;
|
|
1774
|
-
--color-sf-primary: 103, 80, 164;
|
|
1775
|
-
--color-sf-primary-container: 234, 221, 255;
|
|
1776
|
-
--color-sf-secondary: 98, 91, 113;
|
|
1777
|
-
--color-sf-secondary-container: 232, 222, 248;
|
|
1778
|
-
--color-sf-tertiary: 125, 82, 96;
|
|
1779
|
-
--color-sf-tertiary-container: 255, 216, 228;
|
|
1780
|
-
--color-sf-surface: 255, 255, 255;
|
|
1781
|
-
--color-sf-surface-variant: 231, 224, 236;
|
|
1782
|
-
--color-sf-background: var(--color-sf-surface);
|
|
1783
|
-
--color-sf-on-primary: 255, 255, 255;
|
|
1784
|
-
--color-sf-on-primary-container: 33, 0, 94;
|
|
1785
|
-
--color-sf-on-secondary: 255, 255, 255;
|
|
1786
|
-
--color-sf-on-secondary-container: 30, 25, 43;
|
|
1787
|
-
--color-sf-on-tertiary: 255, 255, 255;
|
|
1788
|
-
--color-sf-on-tertiary-containe: 55, 11, 30;
|
|
1789
|
-
--color-sf-on-surface: 28, 27, 31;
|
|
1790
|
-
--color-sf-on-surface-variant: 73, 69, 78;
|
|
1791
|
-
--color-sf-on-background: 28, 27, 31;
|
|
1792
|
-
--color-sf-outline: 121, 116, 126;
|
|
1793
|
-
--color-sf-outline-variant: 196, 199, 197;
|
|
1794
|
-
--color-sf-shadow: 0, 0, 0;
|
|
1795
|
-
--color-sf-surface-tint-color: 103, 80, 164;
|
|
1796
|
-
--color-sf-inverse-surface: 49, 48, 51;
|
|
1797
|
-
--color-sf-inverse-on-surface: 244, 239, 244;
|
|
1798
|
-
--color-sf-inverse-primary: 208, 188, 255;
|
|
1799
|
-
--color-sf-scrim: 0, 0, 0;
|
|
1800
|
-
--color-sf-error: 179, 38, 30;
|
|
1801
|
-
--color-sf-error-container: 249, 222, 220;
|
|
1802
|
-
--color-sf-on-error: 255, 250, 250;
|
|
1803
|
-
--color-sf-on-error-container: 65, 14, 11;
|
|
1804
|
-
--color-sf-success: 32, 81, 7;
|
|
1805
|
-
--color-sf-success-container: 209, 255, 186;
|
|
1806
|
-
--color-sf-on-success: 244, 255, 239;
|
|
1807
|
-
--color-sf-on-success-container: 13, 39, 0;
|
|
1808
|
-
--color-sf-info: 1, 87, 155;
|
|
1809
|
-
--color-sf-info-container: 233, 245, 255;
|
|
1810
|
-
--color-sf-on-info: 250, 253, 255;
|
|
1811
|
-
--color-sf-on-info-container: 0, 51, 91;
|
|
1812
|
-
--color-sf-warning: 145, 76, 0;
|
|
1813
|
-
--color-sf-warning-container: 254, 236, 222;
|
|
1814
|
-
--color-sf-on-warning: 255, 255, 255;
|
|
1815
|
-
--color-sf-on-warning-container: 47, 21, 0;
|
|
1816
|
-
--color-sf-spreadsheet-gridline: var(--color-sf-surface-variant);
|
|
1817
|
-
--color-sf-shadow-focus-ring1: 0 0 0 1px rgb(255, 255, 255), 0 0 0 3px rgb(0, 0, 0);
|
|
1818
|
-
--color-sf-diagram-palette-background: --color-sf-white;
|
|
1819
|
-
--color-sf-success-text: 255, 255, 255;
|
|
1820
|
-
--color-sf-warning-text: 255, 255, 255;
|
|
1821
|
-
--color-sf-danger-text: 255, 255, 255;
|
|
1822
|
-
--color-sf-info-text: 255, 255, 255;
|
|
1823
|
-
--color-sf-content-text-color-alt2: var(--color-sf-on-secondary-container);
|
|
1824
|
-
--color-sf-secondary-bg-color: var(--color-sf-surface);
|
|
1825
|
-
}
|
|
1826
|
-
|
|
1827
|
-
.e-dark-mode {
|
|
1828
|
-
--color-sf-black: 0, 0, 0;
|
|
1829
|
-
--color-sf-white: 255, 255, 255;
|
|
1830
|
-
--color-sf-primary: 208, 188, 255;
|
|
1831
|
-
--color-sf-primary-container: 79, 55, 139;
|
|
1832
|
-
--color-sf-secondary: 204, 194, 220;
|
|
1833
|
-
--color-sf-secondary-container: 74, 68, 88;
|
|
1834
|
-
--color-sf-tertiary: 239, 184, 200;
|
|
1835
|
-
--color-sf-tertiary-container: 99, 59, 72;
|
|
1836
|
-
--color-sf-surface: 28, 27, 31;
|
|
1837
|
-
--color-sf-surface-variant: 28, 27, 31;
|
|
1838
|
-
--color-sf-background: var(--color-sf-surface);
|
|
1839
|
-
--color-sf-on-primary: 55, 30, 115;
|
|
1840
|
-
--color-sf-on-primary-container: 234, 221, 255;
|
|
1841
|
-
--color-sf-on-secondary: 51, 45, 65;
|
|
1842
|
-
--color-sf-on-secondary-container: 232, 222, 248;
|
|
1843
|
-
--color-sf-on-tertiary: 73, 37, 50;
|
|
1844
|
-
--color-sf-on-tertiary-containe: 255, 216, 228;
|
|
1845
|
-
--color-sf-on-surface: 230, 225, 229;
|
|
1846
|
-
--color-sf-on-surface-variant: 202, 196, 208;
|
|
1847
|
-
--color-sf-on-background: 230, 225, 229;
|
|
1848
|
-
--color-sf-outline: 147, 143, 153;
|
|
1849
|
-
--color-sf-outline-variant: 68, 71, 70;
|
|
1850
|
-
--color-sf-shadow: 0, 0, 0;
|
|
1851
|
-
--color-sf-surface-tint-color: 208, 188, 255;
|
|
1852
|
-
--color-sf-inverse-surface: 230, 225, 229;
|
|
1853
|
-
--color-sf-inverse-on-surface: 49, 48, 51;
|
|
1854
|
-
--color-sf-inverse-primary: 103, 80, 164;
|
|
1855
|
-
--color-sf-scrim: 0, 0, 0;
|
|
1856
|
-
--color-sf-error: 242, 184, 181;
|
|
1857
|
-
--color-sf-error-container: 140, 29, 24;
|
|
1858
|
-
--color-sf-on-error: 96, 20, 16;
|
|
1859
|
-
--color-sf-on-error-container: 249, 222, 220;
|
|
1860
|
-
--color-sf-success: 83, 202, 23;
|
|
1861
|
-
--color-sf-success-container: 22, 62, 2;
|
|
1862
|
-
--color-sf-on-success: 13, 39, 0;
|
|
1863
|
-
--color-sf-on-success-container: 183, 250, 150;
|
|
1864
|
-
--color-sf-info: 71, 172, 251;
|
|
1865
|
-
--color-sf-info-container: 0, 67, 120;
|
|
1866
|
-
--color-sf-on-info: 0, 51, 91;
|
|
1867
|
-
--color-sf-on-info-container: 173, 219, 255;
|
|
1868
|
-
--color-sf-warning: 245, 180, 130;
|
|
1869
|
-
--color-sf-warning-container: 123, 65, 0;
|
|
1870
|
-
--color-sf-on-warning: 99, 52, 0;
|
|
1871
|
-
--color-sf-on-warning-container: 255, 220, 193;
|
|
1872
|
-
--color-sf-spreadsheet-gridline: 231, 224, 236;
|
|
1873
|
-
--color-sf-shadow-focus-ring1: 0 0 0 1px #000000, 0 0 0 3px #ffffff;
|
|
1874
|
-
--color-sf-success-text: 0, 0, 0;
|
|
1875
|
-
--color-sf-warning-text: 0, 0, 0;
|
|
1876
|
-
--color-sf-info-text: 0, 0, 0;
|
|
1877
|
-
--color-sf-danger-text: 0, 0, 0;
|
|
1878
|
-
--color-sf-diagram-palette-background: var(--color-sf-inverse-surface);
|
|
1879
|
-
--color-sf-content-text-color-alt2: var(--color-sf-on-secondary);
|
|
1880
|
-
}
|
|
1881
|
-
|
|
1882
1549
|
/* stylelint-disable property-no-vendor-prefix */
|
|
1883
1550
|
@keyframes material-spinner-rotate {
|
|
1884
1551
|
0% {
|
package/styles/material3.scss
CHANGED
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
//default
|
|
2
|
+
$progress-btn-color: $grey-light-font !default;
|
|
3
|
+
$progress-btn-bgcolor: rgba($grey-light-font, .3) !default;
|
|
4
|
+
$progress-btn-bgcolor-normal: rgba($grey-light-font, .2) !default;
|
|
5
|
+
$progress-btn-warning-progress-color: $progress-btn-bgcolor !default;
|
|
6
|
+
$progress-btn-circle-opacity: 1 !default;
|
|
7
|
+
|
|
8
|
+
$progress-btn-transition: all .3s linear !default;
|
|
9
|
+
|
|
10
|
+
$progress-btn-spin-btn-padding: 16px !default;
|
|
11
|
+
$progress-btn-small-spin-btn-padding: 14px !default;
|
|
12
|
+
$progress-btn-bigger-spin-btn-padding: 20px !default;
|
|
13
|
+
$progress-btn-bigger-small-spin-btn-padding: 16px !default;
|
|
14
|
+
|
|
15
|
+
$progress-btn-spinner-padding: 12px !default;
|
|
16
|
+
$progress-btn-spinner-padding-small: 10px !default;
|
|
17
|
+
$progress-btn-spinner-padding-bigger: 14px !default;
|
|
18
|
+
$progress-btn-spinner-padding-bigger-small: 12px !default;
|
|
19
|
+
|
|
20
|
+
$progress-btn-flat-primary-progress-color: #ff4081 !default;
|
|
21
|
+
$progress-btn-flat-success-progress-color: #4d841d !default;
|
|
22
|
+
$progress-btn-flat-info-progress-color: #0378d5 !default;
|
|
23
|
+
$progress-btn-flat-warning-progress-color: #c15700 !default;
|
|
24
|
+
$progress-btn-flat-danger-progress-color: #d64113 !default;
|
|
25
|
+
$btn-flat-primary-path-arc: none;
|
|
26
|
+
|
|
27
|
+
//enddefault
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
$progress-btn-color: $grey-light-font !default;
|
|
2
|
+
$progress-btn-bgcolor: rgba($grey-white, .3) !default;
|
|
3
|
+
$progress-btn-bgcolor-normal: rgba($grey-base, .2) !default;
|
|
4
|
+
$progress-btn-warning-progress-color: $progress-btn-bgcolor !default;
|
|
5
|
+
$progress-btn-circle-opacity: 1 !default;
|
|
6
|
+
|
|
7
|
+
$progress-btn-transition: all .3s linear !default;
|
|
8
|
+
|
|
9
|
+
$progress-btn-spinner-padding: 12px !default;
|
|
10
|
+
$progress-btn-spinner-padding-small: 10px !default;
|
|
11
|
+
$progress-btn-spinner-padding-bigger: 14px !default;
|
|
12
|
+
$progress-btn-spinner-padding-bigger-small: 12px !default;
|
|
13
|
+
|
|
14
|
+
$progress-btn-spin-btn-padding: 16px !default;
|
|
15
|
+
$progress-btn-small-spin-btn-padding: 14px !default;
|
|
16
|
+
$progress-btn-bigger-spin-btn-padding: 20px !default;
|
|
17
|
+
$progress-btn-bigger-small-spin-btn-padding: 16px !default;
|
|
18
|
+
|
|
19
|
+
$progress-btn-flat-primary-progress-color: $brand-primary-font !default;
|
|
20
|
+
$progress-btn-flat-success-progress-color: #fff !default;
|
|
21
|
+
$progress-btn-flat-info-progress-color: #fff !default;
|
|
22
|
+
$progress-btn-flat-warning-progress-color: #fff !default;
|
|
23
|
+
$progress-btn-flat-danger-progress-color: #fff !default;
|
|
24
|
+
$btn-flat-primary-path-arc: none;
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
$progress-btn-color: $white !default;
|
|
2
|
+
$progress-btn-bgcolor: rgba($white, .25) !default;
|
|
3
|
+
$progress-btn-bgcolor-normal: rgba($white, .25) !default;
|
|
4
|
+
$progress-btn-warning-progress-color: rgba($gray-900, .25) !default;
|
|
5
|
+
$progress-btn-circle-opacity: 0 !default;
|
|
6
|
+
|
|
7
|
+
$progress-btn-transition: all .3s linear !default;
|
|
8
|
+
|
|
9
|
+
$progress-btn-spinner-padding: 12px !default;
|
|
10
|
+
$progress-btn-spinner-padding-small: 10px !default;
|
|
11
|
+
$progress-btn-spinner-padding-bigger: 14px !default;
|
|
12
|
+
$progress-btn-spinner-padding-bigger-small: 12px !default;
|
|
13
|
+
|
|
14
|
+
$progress-btn-spin-btn-padding: 16px !default;
|
|
15
|
+
$progress-btn-small-spin-btn-padding: 14px !default;
|
|
16
|
+
$progress-btn-bigger-spin-btn-padding: 20px !default;
|
|
17
|
+
$progress-btn-bigger-small-spin-btn-padding: 16px !default;
|
|
18
|
+
|
|
19
|
+
$progress-btn-flat-primary-progress-color: $primary-font !default;
|
|
20
|
+
$progress-btn-flat-success-progress-color: $white !default;
|
|
21
|
+
$progress-btn-flat-info-progress-color: $white !default;
|
|
22
|
+
$progress-btn-flat-warning-progress-color: $gray-900 !default;
|
|
23
|
+
$progress-btn-flat-danger-progress-color: $white !default;
|
|
24
|
+
$btn-flat-primary-path-arc: none;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@import './bootstrap5-definition.scss';
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
//layout variables
|
|
2
|
+
$progress-btn-circle-opacity: .3 !default;
|
|
3
|
+
$progress-btn-transition: all .3s linear !default;
|
|
4
|
+
$progress-btn-spinner-padding: 12px !default;
|
|
5
|
+
$progress-btn-spinner-padding-small: 10px !default;
|
|
6
|
+
$progress-btn-spinner-padding-bigger: 14px !default;
|
|
7
|
+
$progress-btn-spinner-padding-bigger-small: 12px !default;
|
|
8
|
+
$progress-btn-spin-btn-padding: 16px !default;
|
|
9
|
+
$progress-btn-small-spin-btn-padding: 14px !default;
|
|
10
|
+
$progress-btn-bigger-spin-btn-padding: 20px !default;
|
|
11
|
+
$progress-btn-bigger-small-spin-btn-padding: 16px !default;
|
|
12
|
+
$progress-btn-color: $secondary-text-color !default;
|
|
13
|
+
$progress-btn-bgcolor: rgba($icon-color, .2) !default;
|
|
14
|
+
$progress-btn-bgcolor-normal: rgba($white, .2) !default;
|
|
15
|
+
$progress-btn-warning-progress-color: $progress-btn-bgcolor !default;
|
|
16
|
+
$progress-btn-flat-primary-progress-color: rgba($primary-text-color, 1) !default;
|
|
17
|
+
$progress-btn-flat-success-progress-color: rgba($success-text, 1) !default;
|
|
18
|
+
$progress-btn-flat-info-progress-color: rgba($info-text, 1) !default;
|
|
19
|
+
$progress-btn-flat-warning-progress-color: rgba($warning-text, 1) !default;
|
|
20
|
+
$progress-btn-flat-danger-progress-color: rgba($danger-text, 1) !default;
|
|
21
|
+
$btn-flat-primary-path-arc: $white;
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
//default
|
|
2
|
+
$progress-btn-color: $neutral-light-font !default;
|
|
3
|
+
$progress-btn-bgcolor: rgba($neutral-light-font, .2) !default;
|
|
4
|
+
$progress-btn-bgcolor-normal: rgba($neutral-light-font, .2) !default;
|
|
5
|
+
$progress-btn-warning-progress-color: $progress-btn-bgcolor !default;
|
|
6
|
+
$progress-btn-circle-opacity: .8 !default;
|
|
7
|
+
|
|
8
|
+
$progress-btn-transition: all .3s linear !default;
|
|
9
|
+
|
|
10
|
+
$progress-btn-spin-btn-padding: 16px !default;
|
|
11
|
+
$progress-btn-small-spin-btn-padding: 14px !default;
|
|
12
|
+
$progress-btn-bigger-spin-btn-padding: 20px !default;
|
|
13
|
+
$progress-btn-bigger-small-spin-btn-padding: 16px !default;
|
|
14
|
+
|
|
15
|
+
$progress-btn-spinner-padding: 12px !default;
|
|
16
|
+
$progress-btn-spinner-padding-small: 10px !default;
|
|
17
|
+
$progress-btn-spinner-padding-bigger: 14px !default;
|
|
18
|
+
$progress-btn-spinner-padding-bigger-small: 12px !default;
|
|
19
|
+
|
|
20
|
+
$progress-btn-flat-primary-progress-color: #ff4081 !default;
|
|
21
|
+
$progress-btn-flat-success-progress-color: #4d841d !default;
|
|
22
|
+
$progress-btn-flat-info-progress-color: #0378d5 !default;
|
|
23
|
+
$progress-btn-flat-warning-progress-color: #c15700 !default;
|
|
24
|
+
$progress-btn-flat-danger-progress-color: #d64113 !default;
|
|
25
|
+
$btn-flat-primary-path-arc: none;
|
|
26
|
+
|
|
27
|
+
//enddefault
|