@syncfusion/ej2-angular-splitbuttons 20.4.38-ngcc → 20.4.38
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 +27 -13
- package/schematics/utils/lib-details.d.ts +2 -2
- 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/bootstrap-dark.css +0 -21
- package/styles/bootstrap.css +0 -21
- package/styles/bootstrap4.css +28 -49
- package/styles/bootstrap5-dark.css +0 -21
- package/styles/bootstrap5.css +0 -21
- 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 +288 -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-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 +386 -0
- package/styles/button-group/bootstrap-dark.scss +4 -1
- package/styles/button-group/bootstrap.scss +4 -1
- package/styles/button-group/bootstrap4.css +24 -24
- 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/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 +218 -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-definition.scss +50 -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 +78 -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.css +1 -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.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/tailwind-dark.scss +6 -1
- package/styles/drop-down-button/tailwind.scss +6 -1
- package/styles/fabric-dark.css +0 -21
- package/styles/fabric.css +0 -21
- package/styles/fluent-dark.css +0 -21
- package/styles/fluent.css +0 -21
- package/styles/highcontrast-light.css +0 -21
- package/styles/highcontrast.css +0 -21
- package/styles/material-dark.css +0 -21
- package/styles/material.css +0 -21
- 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-definition.scss +21 -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 +457 -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/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 +420 -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-definition.scss +24 -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 +136 -0
- package/styles/split-button/bootstrap-dark.css +0 -21
- package/styles/split-button/bootstrap-dark.scss +6 -1
- package/styles/split-button/bootstrap.css +0 -21
- package/styles/split-button/bootstrap.scss +6 -1
- package/styles/split-button/bootstrap4.css +3 -24
- package/styles/split-button/bootstrap4.scss +6 -1
- package/styles/split-button/bootstrap5-dark.css +0 -21
- package/styles/split-button/bootstrap5-dark.scss +6 -1
- package/styles/split-button/bootstrap5.css +0 -21
- package/styles/split-button/bootstrap5.scss +6 -1
- package/styles/split-button/fabric-dark.css +0 -21
- package/styles/split-button/fabric-dark.scss +6 -1
- package/styles/split-button/fabric.css +0 -21
- package/styles/split-button/fabric.scss +6 -1
- package/styles/split-button/fluent-dark.css +0 -21
- package/styles/split-button/fluent-dark.scss +6 -1
- package/styles/split-button/fluent.css +0 -21
- package/styles/split-button/fluent.scss +6 -1
- package/styles/split-button/highcontrast-light.css +0 -21
- package/styles/split-button/highcontrast-light.scss +6 -1
- package/styles/split-button/highcontrast.css +0 -21
- package/styles/split-button/highcontrast.scss +6 -1
- package/styles/split-button/material-dark.css +0 -21
- package/styles/split-button/material-dark.scss +6 -1
- package/styles/split-button/material.css +0 -21
- package/styles/split-button/material.scss +6 -1
- package/styles/split-button/tailwind-dark.css +0 -21
- package/styles/split-button/tailwind-dark.scss +6 -1
- package/styles/split-button/tailwind.css +0 -21
- package/styles/split-button/tailwind.scss +6 -1
- package/styles/tailwind-dark.css +0 -21
- package/styles/tailwind.css +0 -21
- 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 -242
- 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
package/styles/fluent.css
CHANGED
|
@@ -304,9 +304,6 @@
|
|
|
304
304
|
outline: 0;
|
|
305
305
|
outline-offset: 0;
|
|
306
306
|
}
|
|
307
|
-
.e-split-btn-wrapper .e-btn.e-inherit:focus, .e-split-btn-wrapper .e-btn.e-inherit:active {
|
|
308
|
-
box-shadow: none;
|
|
309
|
-
}
|
|
310
307
|
.e-split-btn-wrapper.e-rtl .e-split-btn {
|
|
311
308
|
border-bottom-left-radius: 0;
|
|
312
309
|
border-bottom-right-radius: 0;
|
|
@@ -465,9 +462,6 @@
|
|
|
465
462
|
.e-split-btn-wrapper .e-split-btn:disabled {
|
|
466
463
|
border-right-color: #f3f2f1;
|
|
467
464
|
}
|
|
468
|
-
.e-split-btn-wrapper .e-split-btn.e-inherit {
|
|
469
|
-
border-color: transparent;
|
|
470
|
-
}
|
|
471
465
|
.e-split-btn-wrapper:hover :not(e-active) .e-split-btn {
|
|
472
466
|
border-right-color: #8a8886;
|
|
473
467
|
}
|
|
@@ -490,9 +484,6 @@
|
|
|
490
484
|
border-left-color: #f3f2f1;
|
|
491
485
|
border-right-color: #f3f2f1;
|
|
492
486
|
}
|
|
493
|
-
.e-split-btn-wrapper.e-rtl .e-split-btn.e-inherit {
|
|
494
|
-
border-color: transparent;
|
|
495
|
-
}
|
|
496
487
|
.e-split-btn-wrapper.e-rtl:hover .e-split-btn :not(e-active) {
|
|
497
488
|
border-left-color: #8a8886;
|
|
498
489
|
border-right-color: #8a8886;
|
|
@@ -504,9 +495,6 @@
|
|
|
504
495
|
border-bottom-color: #8a8886;
|
|
505
496
|
border-right-color: #8a8886;
|
|
506
497
|
}
|
|
507
|
-
.e-split-btn-wrapper.e-vertical .e-split-btn.e-inherit, .e-split-btn-wrapper.e-vertical .e-split-btn.e-inherit:focus, .e-split-btn-wrapper.e-vertical .e-split-btn.e-inherit:active, .e-split-btn-wrapper.e-vertical .e-split-btn.e-inherit:disabled {
|
|
508
|
-
border-color: transparent;
|
|
509
|
-
}
|
|
510
498
|
.e-split-btn-wrapper.e-vertical .e-split-btn:focus {
|
|
511
499
|
border-bottom-color: #8a8886;
|
|
512
500
|
border-right-color: #8a8886;
|
|
@@ -523,18 +511,12 @@
|
|
|
523
511
|
border-bottom-color: #8a8886;
|
|
524
512
|
border-right-color: #8a8886;
|
|
525
513
|
}
|
|
526
|
-
.e-split-btn-wrapper.e-vertical:hover .e-split-btn.e-inherit, .e-split-btn-wrapper.e-vertical:hover .e-split-btn.e-inherit:disabled {
|
|
527
|
-
border-color: transparent;
|
|
528
|
-
}
|
|
529
514
|
.e-split-btn-wrapper.e-vertical:hover .e-split-btn:disabled {
|
|
530
515
|
border-bottom-color: #f3f2f1;
|
|
531
516
|
}
|
|
532
517
|
.e-split-btn-wrapper.e-vertical.e-rtl .e-split-btn {
|
|
533
518
|
border-left-color: #8a8886;
|
|
534
519
|
}
|
|
535
|
-
.e-split-btn-wrapper.e-vertical.e-rtl .e-split-btn.e-inherit, .e-split-btn-wrapper.e-vertical.e-rtl .e-split-btn.e-inherit:focus, .e-split-btn-wrapper.e-vertical.e-rtl .e-split-btn.e-inherit:active, .e-split-btn-wrapper.e-vertical.e-rtl .e-split-btn.e-inherit:disabled {
|
|
536
|
-
border-color: transparent;
|
|
537
|
-
}
|
|
538
520
|
.e-split-btn-wrapper.e-vertical.e-rtl .e-split-btn:focus {
|
|
539
521
|
border-left-color: #8a8886;
|
|
540
522
|
}
|
|
@@ -547,9 +529,6 @@
|
|
|
547
529
|
.e-split-btn-wrapper.e-vertical.e-rtl:hover .e-split-btn {
|
|
548
530
|
border-left-color: #8a8886;
|
|
549
531
|
}
|
|
550
|
-
.e-split-btn-wrapper.e-vertical.e-rtl:hover .e-split-btn.e-inherit {
|
|
551
|
-
border-color: transparent;
|
|
552
|
-
}
|
|
553
532
|
|
|
554
533
|
/* stylelint-disable */
|
|
555
534
|
*.e-btn-group,
|
|
@@ -314,9 +314,6 @@
|
|
|
314
314
|
.e-split-btn-wrapper .e-btn:disabled {
|
|
315
315
|
box-shadow: none;
|
|
316
316
|
}
|
|
317
|
-
.e-split-btn-wrapper .e-btn.e-inherit:focus, .e-split-btn-wrapper .e-btn.e-inherit:active {
|
|
318
|
-
box-shadow: none;
|
|
319
|
-
}
|
|
320
317
|
.e-split-btn-wrapper.e-rtl .e-split-btn {
|
|
321
318
|
border-bottom-left-radius: 0;
|
|
322
319
|
border-bottom-right-radius: 0;
|
|
@@ -475,9 +472,6 @@
|
|
|
475
472
|
.e-split-btn-wrapper .e-split-btn:disabled {
|
|
476
473
|
border-right-color: #fff;
|
|
477
474
|
}
|
|
478
|
-
.e-split-btn-wrapper .e-split-btn.e-inherit {
|
|
479
|
-
border-color: transparent;
|
|
480
|
-
}
|
|
481
475
|
.e-split-btn-wrapper:hover :not(e-active) .e-split-btn {
|
|
482
476
|
border-right-color: #000;
|
|
483
477
|
}
|
|
@@ -500,9 +494,6 @@
|
|
|
500
494
|
border-left-color: #757575;
|
|
501
495
|
border-right-color: #757575;
|
|
502
496
|
}
|
|
503
|
-
.e-split-btn-wrapper.e-rtl .e-split-btn.e-inherit {
|
|
504
|
-
border-color: transparent;
|
|
505
|
-
}
|
|
506
497
|
.e-split-btn-wrapper.e-rtl:hover .e-split-btn :not(e-active) {
|
|
507
498
|
border-left-color: #000;
|
|
508
499
|
border-right-color: #000;
|
|
@@ -514,9 +505,6 @@
|
|
|
514
505
|
border-bottom-color: #000;
|
|
515
506
|
border-right-color: #000;
|
|
516
507
|
}
|
|
517
|
-
.e-split-btn-wrapper.e-vertical .e-split-btn.e-inherit, .e-split-btn-wrapper.e-vertical .e-split-btn.e-inherit:focus, .e-split-btn-wrapper.e-vertical .e-split-btn.e-inherit:active, .e-split-btn-wrapper.e-vertical .e-split-btn.e-inherit:disabled {
|
|
518
|
-
border-color: transparent;
|
|
519
|
-
}
|
|
520
508
|
.e-split-btn-wrapper.e-vertical .e-split-btn:focus {
|
|
521
509
|
border-bottom-color: #000;
|
|
522
510
|
border-right-color: #000;
|
|
@@ -533,18 +521,12 @@
|
|
|
533
521
|
border-bottom-color: #000;
|
|
534
522
|
border-right-color: #000;
|
|
535
523
|
}
|
|
536
|
-
.e-split-btn-wrapper.e-vertical:hover .e-split-btn.e-inherit, .e-split-btn-wrapper.e-vertical:hover .e-split-btn.e-inherit:disabled {
|
|
537
|
-
border-color: transparent;
|
|
538
|
-
}
|
|
539
524
|
.e-split-btn-wrapper.e-vertical:hover .e-split-btn:disabled {
|
|
540
525
|
border-bottom-color: #757575;
|
|
541
526
|
}
|
|
542
527
|
.e-split-btn-wrapper.e-vertical.e-rtl .e-split-btn {
|
|
543
528
|
border-left-color: #000;
|
|
544
529
|
}
|
|
545
|
-
.e-split-btn-wrapper.e-vertical.e-rtl .e-split-btn.e-inherit, .e-split-btn-wrapper.e-vertical.e-rtl .e-split-btn.e-inherit:focus, .e-split-btn-wrapper.e-vertical.e-rtl .e-split-btn.e-inherit:active, .e-split-btn-wrapper.e-vertical.e-rtl .e-split-btn.e-inherit:disabled {
|
|
546
|
-
border-color: transparent;
|
|
547
|
-
}
|
|
548
530
|
.e-split-btn-wrapper.e-vertical.e-rtl .e-split-btn:focus {
|
|
549
531
|
border-left-color: #000;
|
|
550
532
|
}
|
|
@@ -557,9 +539,6 @@
|
|
|
557
539
|
.e-split-btn-wrapper.e-vertical.e-rtl:hover .e-split-btn {
|
|
558
540
|
border-left-color: #000;
|
|
559
541
|
}
|
|
560
|
-
.e-split-btn-wrapper.e-vertical.e-rtl:hover .e-split-btn.e-inherit {
|
|
561
|
-
border-color: transparent;
|
|
562
|
-
}
|
|
563
542
|
|
|
564
543
|
/* stylelint-disable */
|
|
565
544
|
*.e-btn-group,
|
package/styles/highcontrast.css
CHANGED
|
@@ -314,9 +314,6 @@
|
|
|
314
314
|
.e-split-btn-wrapper .e-btn:disabled {
|
|
315
315
|
box-shadow: none;
|
|
316
316
|
}
|
|
317
|
-
.e-split-btn-wrapper .e-btn.e-inherit:focus, .e-split-btn-wrapper .e-btn.e-inherit:active {
|
|
318
|
-
box-shadow: none;
|
|
319
|
-
}
|
|
320
317
|
.e-split-btn-wrapper.e-rtl .e-split-btn {
|
|
321
318
|
border-bottom-left-radius: 0;
|
|
322
319
|
border-bottom-right-radius: 0;
|
|
@@ -475,9 +472,6 @@
|
|
|
475
472
|
.e-split-btn-wrapper .e-split-btn:disabled {
|
|
476
473
|
border-right-color: #000;
|
|
477
474
|
}
|
|
478
|
-
.e-split-btn-wrapper .e-split-btn.e-inherit {
|
|
479
|
-
border-color: transparent;
|
|
480
|
-
}
|
|
481
475
|
.e-split-btn-wrapper:hover :not(e-active) .e-split-btn {
|
|
482
476
|
border-right-color: #fff;
|
|
483
477
|
}
|
|
@@ -500,9 +494,6 @@
|
|
|
500
494
|
border-left-color: #757575;
|
|
501
495
|
border-right-color: #757575;
|
|
502
496
|
}
|
|
503
|
-
.e-split-btn-wrapper.e-rtl .e-split-btn.e-inherit {
|
|
504
|
-
border-color: transparent;
|
|
505
|
-
}
|
|
506
497
|
.e-split-btn-wrapper.e-rtl:hover .e-split-btn :not(e-active) {
|
|
507
498
|
border-left-color: #fff;
|
|
508
499
|
border-right-color: #fff;
|
|
@@ -514,9 +505,6 @@
|
|
|
514
505
|
border-bottom-color: #fff;
|
|
515
506
|
border-right-color: #fff;
|
|
516
507
|
}
|
|
517
|
-
.e-split-btn-wrapper.e-vertical .e-split-btn.e-inherit, .e-split-btn-wrapper.e-vertical .e-split-btn.e-inherit:focus, .e-split-btn-wrapper.e-vertical .e-split-btn.e-inherit:active, .e-split-btn-wrapper.e-vertical .e-split-btn.e-inherit:disabled {
|
|
518
|
-
border-color: transparent;
|
|
519
|
-
}
|
|
520
508
|
.e-split-btn-wrapper.e-vertical .e-split-btn:focus {
|
|
521
509
|
border-bottom-color: #fff;
|
|
522
510
|
border-right-color: #fff;
|
|
@@ -533,18 +521,12 @@
|
|
|
533
521
|
border-bottom-color: #fff;
|
|
534
522
|
border-right-color: #fff;
|
|
535
523
|
}
|
|
536
|
-
.e-split-btn-wrapper.e-vertical:hover .e-split-btn.e-inherit, .e-split-btn-wrapper.e-vertical:hover .e-split-btn.e-inherit:disabled {
|
|
537
|
-
border-color: transparent;
|
|
538
|
-
}
|
|
539
524
|
.e-split-btn-wrapper.e-vertical:hover .e-split-btn:disabled {
|
|
540
525
|
border-bottom-color: #757575;
|
|
541
526
|
}
|
|
542
527
|
.e-split-btn-wrapper.e-vertical.e-rtl .e-split-btn {
|
|
543
528
|
border-left-color: #fff;
|
|
544
529
|
}
|
|
545
|
-
.e-split-btn-wrapper.e-vertical.e-rtl .e-split-btn.e-inherit, .e-split-btn-wrapper.e-vertical.e-rtl .e-split-btn.e-inherit:focus, .e-split-btn-wrapper.e-vertical.e-rtl .e-split-btn.e-inherit:active, .e-split-btn-wrapper.e-vertical.e-rtl .e-split-btn.e-inherit:disabled {
|
|
546
|
-
border-color: transparent;
|
|
547
|
-
}
|
|
548
530
|
.e-split-btn-wrapper.e-vertical.e-rtl .e-split-btn:focus {
|
|
549
531
|
border-left-color: #fff;
|
|
550
532
|
}
|
|
@@ -557,9 +539,6 @@
|
|
|
557
539
|
.e-split-btn-wrapper.e-vertical.e-rtl:hover .e-split-btn {
|
|
558
540
|
border-left-color: #fff;
|
|
559
541
|
}
|
|
560
|
-
.e-split-btn-wrapper.e-vertical.e-rtl:hover .e-split-btn.e-inherit {
|
|
561
|
-
border-color: transparent;
|
|
562
|
-
}
|
|
563
542
|
|
|
564
543
|
/* stylelint-disable */
|
|
565
544
|
*.e-btn-group,
|
package/styles/material-dark.css
CHANGED
|
@@ -315,9 +315,6 @@
|
|
|
315
315
|
.e-split-btn-wrapper .e-btn:disabled {
|
|
316
316
|
box-shadow: none;
|
|
317
317
|
}
|
|
318
|
-
.e-split-btn-wrapper .e-btn.e-inherit:focus, .e-split-btn-wrapper .e-btn.e-inherit:active {
|
|
319
|
-
box-shadow: none;
|
|
320
|
-
}
|
|
321
318
|
.e-split-btn-wrapper.e-rtl .e-split-btn {
|
|
322
319
|
border-bottom-left-radius: 0;
|
|
323
320
|
border-bottom-right-radius: 2px;
|
|
@@ -476,9 +473,6 @@
|
|
|
476
473
|
.e-split-btn-wrapper .e-split-btn:disabled {
|
|
477
474
|
border-right-color: rgba(255, 255, 255, 0.1);
|
|
478
475
|
}
|
|
479
|
-
.e-split-btn-wrapper .e-split-btn.e-inherit {
|
|
480
|
-
border-color: transparent;
|
|
481
|
-
}
|
|
482
476
|
.e-split-btn-wrapper:hover :not(e-active) .e-split-btn {
|
|
483
477
|
border-right-color: transparent;
|
|
484
478
|
}
|
|
@@ -501,9 +495,6 @@
|
|
|
501
495
|
border-left-color: transparent;
|
|
502
496
|
border-right-color: transparent;
|
|
503
497
|
}
|
|
504
|
-
.e-split-btn-wrapper.e-rtl .e-split-btn.e-inherit {
|
|
505
|
-
border-color: transparent;
|
|
506
|
-
}
|
|
507
498
|
.e-split-btn-wrapper.e-rtl:hover .e-split-btn :not(e-active) {
|
|
508
499
|
border-left-color: transparent;
|
|
509
500
|
border-right-color: transparent;
|
|
@@ -515,9 +506,6 @@
|
|
|
515
506
|
border-bottom-color: transparent;
|
|
516
507
|
border-right-color: transparent;
|
|
517
508
|
}
|
|
518
|
-
.e-split-btn-wrapper.e-vertical .e-split-btn.e-inherit, .e-split-btn-wrapper.e-vertical .e-split-btn.e-inherit:focus, .e-split-btn-wrapper.e-vertical .e-split-btn.e-inherit:active, .e-split-btn-wrapper.e-vertical .e-split-btn.e-inherit:disabled {
|
|
519
|
-
border-color: transparent;
|
|
520
|
-
}
|
|
521
509
|
.e-split-btn-wrapper.e-vertical .e-split-btn:focus {
|
|
522
510
|
border-bottom-color: transparent;
|
|
523
511
|
border-right-color: transparent;
|
|
@@ -534,18 +522,12 @@
|
|
|
534
522
|
border-bottom-color: transparent;
|
|
535
523
|
border-right-color: transparent;
|
|
536
524
|
}
|
|
537
|
-
.e-split-btn-wrapper.e-vertical:hover .e-split-btn.e-inherit, .e-split-btn-wrapper.e-vertical:hover .e-split-btn.e-inherit:disabled {
|
|
538
|
-
border-color: transparent;
|
|
539
|
-
}
|
|
540
525
|
.e-split-btn-wrapper.e-vertical:hover .e-split-btn:disabled {
|
|
541
526
|
border-bottom-color: transparent;
|
|
542
527
|
}
|
|
543
528
|
.e-split-btn-wrapper.e-vertical.e-rtl .e-split-btn {
|
|
544
529
|
border-left-color: transparent;
|
|
545
530
|
}
|
|
546
|
-
.e-split-btn-wrapper.e-vertical.e-rtl .e-split-btn.e-inherit, .e-split-btn-wrapper.e-vertical.e-rtl .e-split-btn.e-inherit:focus, .e-split-btn-wrapper.e-vertical.e-rtl .e-split-btn.e-inherit:active, .e-split-btn-wrapper.e-vertical.e-rtl .e-split-btn.e-inherit:disabled {
|
|
547
|
-
border-color: transparent;
|
|
548
|
-
}
|
|
549
531
|
.e-split-btn-wrapper.e-vertical.e-rtl .e-split-btn:focus {
|
|
550
532
|
border-left-color: transparent;
|
|
551
533
|
}
|
|
@@ -558,9 +540,6 @@
|
|
|
558
540
|
.e-split-btn-wrapper.e-vertical.e-rtl:hover .e-split-btn {
|
|
559
541
|
border-left-color: transparent;
|
|
560
542
|
}
|
|
561
|
-
.e-split-btn-wrapper.e-vertical.e-rtl:hover .e-split-btn.e-inherit {
|
|
562
|
-
border-color: transparent;
|
|
563
|
-
}
|
|
564
543
|
|
|
565
544
|
/* stylelint-disable */
|
|
566
545
|
*.e-btn-group,
|
package/styles/material.css
CHANGED
|
@@ -315,9 +315,6 @@
|
|
|
315
315
|
.e-split-btn-wrapper .e-btn:disabled {
|
|
316
316
|
box-shadow: none;
|
|
317
317
|
}
|
|
318
|
-
.e-split-btn-wrapper .e-btn.e-inherit:focus, .e-split-btn-wrapper .e-btn.e-inherit:active {
|
|
319
|
-
box-shadow: none;
|
|
320
|
-
}
|
|
321
318
|
.e-split-btn-wrapper.e-rtl .e-split-btn {
|
|
322
319
|
border-bottom-left-radius: 0;
|
|
323
320
|
border-bottom-right-radius: 2px;
|
|
@@ -476,9 +473,6 @@
|
|
|
476
473
|
.e-split-btn-wrapper .e-split-btn:disabled {
|
|
477
474
|
border-right-color: rgba(0, 0, 0, 0.12);
|
|
478
475
|
}
|
|
479
|
-
.e-split-btn-wrapper .e-split-btn.e-inherit {
|
|
480
|
-
border-color: transparent;
|
|
481
|
-
}
|
|
482
476
|
.e-split-btn-wrapper:hover :not(e-active) .e-split-btn {
|
|
483
477
|
border-right-color: transparent;
|
|
484
478
|
}
|
|
@@ -498,9 +492,6 @@
|
|
|
498
492
|
border-left-color: transparent;
|
|
499
493
|
border-right-color: transparent;
|
|
500
494
|
}
|
|
501
|
-
.e-split-btn-wrapper.e-rtl .e-split-btn.e-inherit {
|
|
502
|
-
border-color: transparent;
|
|
503
|
-
}
|
|
504
495
|
.e-split-btn-wrapper.e-rtl:hover .e-split-btn :not(e-active) {
|
|
505
496
|
border-left-color: transparent;
|
|
506
497
|
border-right-color: transparent;
|
|
@@ -512,9 +503,6 @@
|
|
|
512
503
|
border-bottom-color: transparent;
|
|
513
504
|
border-right-color: transparent;
|
|
514
505
|
}
|
|
515
|
-
.e-split-btn-wrapper.e-vertical .e-split-btn.e-inherit, .e-split-btn-wrapper.e-vertical .e-split-btn.e-inherit:focus, .e-split-btn-wrapper.e-vertical .e-split-btn.e-inherit:active, .e-split-btn-wrapper.e-vertical .e-split-btn.e-inherit:disabled {
|
|
516
|
-
border-color: transparent;
|
|
517
|
-
}
|
|
518
506
|
.e-split-btn-wrapper.e-vertical .e-split-btn:focus {
|
|
519
507
|
border-bottom-color: transparent;
|
|
520
508
|
border-right-color: transparent;
|
|
@@ -531,18 +519,12 @@
|
|
|
531
519
|
border-bottom-color: transparent;
|
|
532
520
|
border-right-color: transparent;
|
|
533
521
|
}
|
|
534
|
-
.e-split-btn-wrapper.e-vertical:hover .e-split-btn.e-inherit, .e-split-btn-wrapper.e-vertical:hover .e-split-btn.e-inherit:disabled {
|
|
535
|
-
border-color: transparent;
|
|
536
|
-
}
|
|
537
522
|
.e-split-btn-wrapper.e-vertical:hover .e-split-btn:disabled {
|
|
538
523
|
border-bottom-color: transparent;
|
|
539
524
|
}
|
|
540
525
|
.e-split-btn-wrapper.e-vertical.e-rtl .e-split-btn {
|
|
541
526
|
border-left-color: transparent;
|
|
542
527
|
}
|
|
543
|
-
.e-split-btn-wrapper.e-vertical.e-rtl .e-split-btn.e-inherit, .e-split-btn-wrapper.e-vertical.e-rtl .e-split-btn.e-inherit:focus, .e-split-btn-wrapper.e-vertical.e-rtl .e-split-btn.e-inherit:active, .e-split-btn-wrapper.e-vertical.e-rtl .e-split-btn.e-inherit:disabled {
|
|
544
|
-
border-color: transparent;
|
|
545
|
-
}
|
|
546
528
|
.e-split-btn-wrapper.e-vertical.e-rtl .e-split-btn:focus {
|
|
547
529
|
border-left-color: transparent;
|
|
548
530
|
}
|
|
@@ -555,9 +537,6 @@
|
|
|
555
537
|
.e-split-btn-wrapper.e-vertical.e-rtl:hover .e-split-btn {
|
|
556
538
|
border-left-color: transparent;
|
|
557
539
|
}
|
|
558
|
-
.e-split-btn-wrapper.e-vertical.e-rtl:hover .e-split-btn.e-inherit {
|
|
559
|
-
border-color: transparent;
|
|
560
|
-
}
|
|
561
540
|
|
|
562
541
|
/* stylelint-disable */
|
|
563
542
|
*.e-btn-group,
|
|
@@ -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
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
$progress-btn-color: $neutral-light-font !default;
|
|
2
|
+
$progress-btn-bgcolor: rgba($neutral-black, .2) !default;
|
|
3
|
+
$progress-btn-bgcolor-normal: rgba($neutral-black, .2) !default;
|
|
4
|
+
$progress-btn-warning-progress-color: $progress-btn-bgcolor !default;
|
|
5
|
+
$progress-btn-circle-opacity: .8 !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: 20px !default;
|
|
15
|
+
$progress-btn-small-spin-btn-padding: 16px !default;
|
|
16
|
+
$progress-btn-bigger-spin-btn-padding: 24px !default;
|
|
17
|
+
$progress-btn-bigger-small-spin-btn-padding: 22px !default;
|
|
18
|
+
|
|
19
|
+
$progress-btn-flat-primary-progress-color: $neutral-black !default;
|
|
20
|
+
$progress-btn-flat-success-progress-color: $neutral-black !default;
|
|
21
|
+
$progress-btn-flat-info-progress-color: $neutral-black !default;
|
|
22
|
+
$progress-btn-flat-warning-progress-color: $neutral-black !default;
|
|
23
|
+
$progress-btn-flat-danger-progress-color: $neutral-black !default;
|
|
24
|
+
$btn-flat-primary-path-arc: none;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@import './fluent-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($icon-color, .5) !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,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,24 @@
|
|
|
1
|
+
$progress-btn-color: $content-font !default;
|
|
2
|
+
$progress-btn-bgcolor: rgba($bg-base-0, .3) !default;
|
|
3
|
+
$progress-btn-bgcolor-normal: rgba($bg-base-100, .3) !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: 20px !default;
|
|
15
|
+
$progress-btn-small-spin-btn-padding: 16px !default;
|
|
16
|
+
$progress-btn-bigger-spin-btn-padding: 24px !default;
|
|
17
|
+
$progress-btn-bigger-small-spin-btn-padding: 22px !default;
|
|
18
|
+
|
|
19
|
+
$progress-btn-flat-primary-progress-color: $bg-base-0 !default;
|
|
20
|
+
$progress-btn-flat-success-progress-color: $bg-base-0 !default;
|
|
21
|
+
$progress-btn-flat-info-progress-color: $bg-base-0 !default;
|
|
22
|
+
$progress-btn-flat-warning-progress-color: $bg-base-0 !default;
|
|
23
|
+
$progress-btn-flat-danger-progress-color: $bg-base-0 !default;
|
|
24
|
+
$btn-flat-primary-path-arc: none;
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
$progress-btn-color: $content-font !default;
|
|
2
|
+
$progress-btn-bgcolor: rgba($bg-base-0, .3) !default;
|
|
3
|
+
$progress-btn-bgcolor-normal: rgba($bg-base-100, .3) !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-spin-btn-padding: 16px !default;
|
|
10
|
+
$progress-btn-small-spin-btn-padding: 14px !default;
|
|
11
|
+
$progress-btn-bigger-spin-btn-padding: 20px !default;
|
|
12
|
+
$progress-btn-bigger-small-spin-btn-padding: 16px !default;
|
|
13
|
+
|
|
14
|
+
$progress-btn-spinner-padding: 12px !default;
|
|
15
|
+
$progress-btn-spinner-padding-small: 10px !default;
|
|
16
|
+
$progress-btn-spinner-padding-bigger: 14px !default;
|
|
17
|
+
$progress-btn-spinner-padding-bigger-small: 12px !default;
|
|
18
|
+
|
|
19
|
+
$progress-btn-flat-primary-progress-color: #ff4081 !default;
|
|
20
|
+
$progress-btn-flat-success-progress-color: #4d841d !default;
|
|
21
|
+
$progress-btn-flat-info-progress-color: #0378d5 !default;
|
|
22
|
+
$progress-btn-flat-warning-progress-color: #c15700 !default;
|
|
23
|
+
$progress-btn-flat-danger-progress-color: #d64113 !default;
|
|
24
|
+
$btn-flat-primary-path-arc: none;
|