@syncfusion/ej2-angular-splitbuttons 20.2.38-ngcc → 20.2.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.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/button-group/_all.scss +2 -0
- package/styles/button-group/_bootstrap-dark-definition.scss +32 -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 +32 -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 +32 -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.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.css +15 -15
- 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 +50 -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 +51 -0
- package/styles/drop-down-button/_fabric-dark-definition.scss +50 -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 +51 -0
- package/styles/drop-down-button/_highcontrast-definition.scss +48 -0
- package/styles/drop-down-button/_highcontrast-light-definition.scss +49 -0
- package/styles/drop-down-button/_layout.scss +217 -0
- package/styles/drop-down-button/_material-dark-definition.scss +50 -0
- package/styles/drop-down-button/_material-definition.scss +48 -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 +50 -0
- package/styles/drop-down-button/_theme.scss +57 -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.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/fluent-dark.css +40 -40
- package/styles/progress-button/_all.scss +2 -0
- package/styles/progress-button/_bootstrap-dark-definition.scss +26 -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 +26 -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 +395 -0
- package/styles/progress-button/_material-dark-definition.scss +26 -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 +456 -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.css +25 -25
- 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 +25 -0
- package/styles/split-button/_bootstrap-definition.scss +23 -0
- package/styles/split-button/_bootstrap4-definition.scss +25 -0
- package/styles/split-button/_bootstrap5-dark-definition.scss +1 -0
- package/styles/split-button/_bootstrap5-definition.scss +25 -0
- package/styles/split-button/_fabric-dark-definition.scss +25 -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 +25 -0
- package/styles/split-button/_fusionnew-definition.scss +25 -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 +419 -0
- package/styles/split-button/_material-dark-definition.scss +25 -0
- package/styles/split-button/_material-definition.scss +23 -0
- package/styles/split-button/_material3-definition.scss +25 -0
- package/styles/split-button/_tailwind-dark-definition.scss +1 -0
- package/styles/split-button/_tailwind-definition.scss +25 -0
- package/styles/split-button/_theme.scss +136 -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/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 -244
- 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/schematics/collection.json +0 -25
- package/schematics/generators/dropdownbutton-default/index.d.ts +0 -3
- package/schematics/generators/dropdownbutton-default/index.js +0 -8
- package/schematics/generators/dropdownbutton-default/sample-details.d.ts +0 -5
- package/schematics/generators/dropdownbutton-default/sample-details.js +0 -7
- package/schematics/generators/dropdownbutton-default/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -49
- package/schematics/generators/dropdownbutton-default/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -18
- package/schematics/generators/dropdownbutton-default/schema.d.ts +0 -3
- package/schematics/generators/dropdownbutton-default/schema.js +0 -2
- package/schematics/generators/dropdownbutton-default/schema.json +0 -125
- package/schematics/generators/progressbutton-default/index.d.ts +0 -3
- package/schematics/generators/progressbutton-default/index.js +0 -8
- package/schematics/generators/progressbutton-default/sample-details.d.ts +0 -5
- package/schematics/generators/progressbutton-default/sample-details.js +0 -7
- package/schematics/generators/progressbutton-default/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -47
- package/schematics/generators/progressbutton-default/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -53
- package/schematics/generators/progressbutton-default/schema.d.ts +0 -3
- package/schematics/generators/progressbutton-default/schema.js +0 -2
- package/schematics/generators/progressbutton-default/schema.json +0 -125
- package/schematics/generators/splitbutton-default/index.d.ts +0 -3
- package/schematics/generators/splitbutton-default/index.js +0 -8
- package/schematics/generators/splitbutton-default/sample-details.d.ts +0 -5
- package/schematics/generators/splitbutton-default/sample-details.js +0 -7
- package/schematics/generators/splitbutton-default/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -37
- package/schematics/generators/splitbutton-default/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -18
- package/schematics/generators/splitbutton-default/schema.d.ts +0 -3
- package/schematics/generators/splitbutton-default/schema.js +0 -2
- package/schematics/generators/splitbutton-default/schema.json +0 -125
- package/schematics/ng-add/index.d.ts +0 -3
- package/schematics/ng-add/index.js +0 -9
- package/schematics/ng-add/schema.d.ts +0 -13
- package/schematics/ng-add/schema.js +0 -2
- package/schematics/ng-add/schema.json +0 -34
- package/schematics/tsconfig.json +0 -25
- package/schematics/utils/lib-details.d.ts +0 -4
- package/schematics/utils/lib-details.js +0 -6
|
@@ -0,0 +1,456 @@
|
|
|
1
|
+
@include export-module('progress-button-theme') {
|
|
2
|
+
/*! Progress Button Theme */
|
|
3
|
+
.e-progress-btn {
|
|
4
|
+
.e-spinner-pane .e-spinner-inner svg {
|
|
5
|
+
fill: $progress-btn-color;
|
|
6
|
+
stroke: $progress-btn-color;
|
|
7
|
+
|
|
8
|
+
.e-path-circle {
|
|
9
|
+
stroke: fade-out($btn-color, $progress-btn-circle-opacity);
|
|
10
|
+
@if $skin-name == 'bootstrap4' {
|
|
11
|
+
stroke-width: 1px;
|
|
12
|
+
}
|
|
13
|
+
@else if $skin-name == 'tailwind' or $skin-name == 'tailwind-dark' {
|
|
14
|
+
stroke-width: 3px;
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
.e-path-arc {
|
|
19
|
+
stroke: $btn-color;
|
|
20
|
+
@if $skin-name == 'tailwind' or $skin-name == 'tailwind-dark' {
|
|
21
|
+
stroke-width: 3px;
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
#{if(&, '&', '*')}.e-primary,
|
|
27
|
+
#{if(&, '&', '*')}.e-primary.e-outline:hover,
|
|
28
|
+
#{if(&, '&', '*')}.e-primary.e-outline:focus,
|
|
29
|
+
#{if(&, '&', '*')}.e-primary.e-flat:hover,
|
|
30
|
+
#{if(&, '&', '*')}.e-primary.e-flat:focus {
|
|
31
|
+
.e-spinner-pane .e-spinner-inner svg {
|
|
32
|
+
fill: $btn-primary-color;
|
|
33
|
+
stroke: $btn-primary-color;
|
|
34
|
+
|
|
35
|
+
.e-path-circle {
|
|
36
|
+
stroke: fade-out($btn-primary-color, $progress-btn-circle-opacity);
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
.e-path-arc {
|
|
40
|
+
stroke: $btn-primary-color;
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
&.e-flat {
|
|
45
|
+
.e-spinner-pane .e-spinner-inner svg {
|
|
46
|
+
fill: $btn-flat-primary-color;
|
|
47
|
+
stroke: $btn-flat-primary-color;
|
|
48
|
+
|
|
49
|
+
.e-path-circle {
|
|
50
|
+
@if $skin-name == 'tailwind' or $skin-name == 'FluentUI' or $skin-name == 'bootstrap5' {
|
|
51
|
+
stroke: fade-out($btn-flat-primary-path-arc, $progress-btn-circle-opacity);
|
|
52
|
+
}
|
|
53
|
+
@else {
|
|
54
|
+
stroke: fade-out($btn-flat-primary-color, $progress-btn-circle-opacity);
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
.e-path-arc {
|
|
59
|
+
@if $skin-name == 'tailwind' or $skin-name == 'tailwind-dark' or $skin-name == 'bootstrap5' {
|
|
60
|
+
stroke: $btn-flat-primary-path-arc;
|
|
61
|
+
}
|
|
62
|
+
@else {
|
|
63
|
+
stroke: $btn-flat-primary-color;
|
|
64
|
+
}
|
|
65
|
+
}
|
|
66
|
+
}
|
|
67
|
+
}
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
#{if(&, '&', '*')}.e-success,
|
|
71
|
+
#{if(&, '&', '*')}.e-success.e-outline:hover,
|
|
72
|
+
#{if(&, '&', '*')}.e-success.e-outline:focus,
|
|
73
|
+
#{if(&, '&', '*')}.e-success.e-flat:hover,
|
|
74
|
+
#{if(&, '&', '*')}.e-success.e-flat:focus {
|
|
75
|
+
.e-spinner-pane .e-spinner-inner svg {
|
|
76
|
+
fill: $btn-success-color;
|
|
77
|
+
stroke: $btn-success-color;
|
|
78
|
+
|
|
79
|
+
.e-path-circle {
|
|
80
|
+
stroke: fade-out($btn-success-color, $progress-btn-circle-opacity);
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
.e-path-arc {
|
|
84
|
+
stroke: $btn-success-color;
|
|
85
|
+
}
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
&.e-flat {
|
|
89
|
+
.e-spinner-pane .e-spinner-inner svg {
|
|
90
|
+
fill: $btn-flat-success-color;
|
|
91
|
+
stroke: $btn-flat-success-color;
|
|
92
|
+
|
|
93
|
+
.e-path-circle {
|
|
94
|
+
@if $skin-name == 'tailwind' or $skin-name == 'FluentUI' or $skin-name == 'bootstrap5' {
|
|
95
|
+
stroke: fade-out($btn-flat-primary-path-arc, $progress-btn-circle-opacity);
|
|
96
|
+
}
|
|
97
|
+
@else {
|
|
98
|
+
stroke: fade-out($btn-flat-success-color, $progress-btn-circle-opacity);
|
|
99
|
+
}
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
.e-path-arc {
|
|
103
|
+
@if $skin-name == 'tailwind' or $skin-name == 'tailwind-dark' {
|
|
104
|
+
stroke: $btn-flat-primary-path-arc;
|
|
105
|
+
}
|
|
106
|
+
@else {
|
|
107
|
+
stroke: $btn-flat-success-color;
|
|
108
|
+
}
|
|
109
|
+
}
|
|
110
|
+
}
|
|
111
|
+
}
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
&.e-info,
|
|
115
|
+
&.e-info.e-outline:hover,
|
|
116
|
+
&.e-info.e-outline:focus,
|
|
117
|
+
&.e-info.e-flat:hover,
|
|
118
|
+
&.e-info.e-flat:focus {
|
|
119
|
+
.e-spinner-pane .e-spinner-inner svg {
|
|
120
|
+
fill: $btn-info-color;
|
|
121
|
+
stroke: $btn-info-color;
|
|
122
|
+
|
|
123
|
+
.e-path-circle {
|
|
124
|
+
stroke: fade-out($btn-info-color, $progress-btn-circle-opacity);
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
.e-path-arc {
|
|
128
|
+
stroke: $btn-info-color;
|
|
129
|
+
}
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
&.e-flat {
|
|
133
|
+
.e-spinner-pane .e-spinner-inner svg {
|
|
134
|
+
fill: $btn-flat-info-color;
|
|
135
|
+
stroke: $btn-flat-info-color;
|
|
136
|
+
|
|
137
|
+
.e-path-circle {
|
|
138
|
+
@if $skin-name == 'tailwind' or $skin-name == 'FluentUI' or $skin-name == 'bootstrap5' {
|
|
139
|
+
stroke: fade-out($btn-flat-primary-path-arc, $progress-btn-circle-opacity);
|
|
140
|
+
}
|
|
141
|
+
@else {
|
|
142
|
+
stroke: fade-out($btn-flat-info-color, $progress-btn-circle-opacity);
|
|
143
|
+
}
|
|
144
|
+
}
|
|
145
|
+
|
|
146
|
+
.e-path-arc {
|
|
147
|
+
@if $skin-name == 'tailwind' or $skin-name == 'tailwind-dark' {
|
|
148
|
+
stroke: $btn-flat-primary-path-arc;
|
|
149
|
+
}
|
|
150
|
+
@else {
|
|
151
|
+
stroke: $btn-flat-info-color;
|
|
152
|
+
}
|
|
153
|
+
}
|
|
154
|
+
}
|
|
155
|
+
}
|
|
156
|
+
}
|
|
157
|
+
|
|
158
|
+
&.e-warning,
|
|
159
|
+
&.e-warning.e-outline:hover,
|
|
160
|
+
&.e-warning.e-outline:focus,
|
|
161
|
+
&.e-warning.e-flat:hover,
|
|
162
|
+
&.e-warning.e-flat:focus {
|
|
163
|
+
.e-spinner-pane .e-spinner-inner svg {
|
|
164
|
+
fill: $btn-warning-color;
|
|
165
|
+
stroke: $btn-warning-color;
|
|
166
|
+
|
|
167
|
+
.e-path-circle {
|
|
168
|
+
stroke: fade-out($btn-warning-color, $progress-btn-circle-opacity);
|
|
169
|
+
}
|
|
170
|
+
|
|
171
|
+
.e-path-arc {
|
|
172
|
+
stroke: $btn-warning-color;
|
|
173
|
+
}
|
|
174
|
+
}
|
|
175
|
+
|
|
176
|
+
&.e-flat {
|
|
177
|
+
.e-spinner-pane .e-spinner-inner svg {
|
|
178
|
+
fill: $btn-flat-warning-color;
|
|
179
|
+
stroke: $btn-flat-warning-color;
|
|
180
|
+
|
|
181
|
+
.e-path-circle {
|
|
182
|
+
@if $skin-name == 'tailwind' or $skin-name == 'FluentUI' or $skin-name == 'bootstrap5' {
|
|
183
|
+
stroke: fade-out($btn-flat-primary-path-arc, $progress-btn-circle-opacity);
|
|
184
|
+
}
|
|
185
|
+
@else {
|
|
186
|
+
stroke: fade-out($btn-flat-warning-color, $progress-btn-circle-opacity);
|
|
187
|
+
}
|
|
188
|
+
}
|
|
189
|
+
|
|
190
|
+
.e-path-arc {
|
|
191
|
+
@if $skin-name == 'tailwind' or $skin-name == 'tailwind-dark' {
|
|
192
|
+
stroke: $btn-flat-primary-path-arc;
|
|
193
|
+
}
|
|
194
|
+
@else {
|
|
195
|
+
stroke: $btn-flat-warning-color;
|
|
196
|
+
}
|
|
197
|
+
}
|
|
198
|
+
}
|
|
199
|
+
}
|
|
200
|
+
}
|
|
201
|
+
|
|
202
|
+
&.e-danger,
|
|
203
|
+
&.e-danger.e-outline:hover,
|
|
204
|
+
&.e-danger.e-outline:focus,
|
|
205
|
+
&.e-danger.e-flat:hover,
|
|
206
|
+
&.e-danger.e-flat:focus {
|
|
207
|
+
.e-spinner-pane .e-spinner-inner svg {
|
|
208
|
+
fill: $btn-danger-color;
|
|
209
|
+
stroke: $btn-danger-color;
|
|
210
|
+
|
|
211
|
+
.e-path-circle {
|
|
212
|
+
stroke: fade-out($btn-danger-color, $progress-btn-circle-opacity);
|
|
213
|
+
}
|
|
214
|
+
|
|
215
|
+
.e-path-arc {
|
|
216
|
+
stroke: $btn-danger-color;
|
|
217
|
+
}
|
|
218
|
+
}
|
|
219
|
+
|
|
220
|
+
&.e-flat {
|
|
221
|
+
.e-spinner-pane .e-spinner-inner svg {
|
|
222
|
+
fill: $btn-flat-danger-color;
|
|
223
|
+
stroke: $btn-flat-danger-color;
|
|
224
|
+
|
|
225
|
+
.e-path-circle {
|
|
226
|
+
@if $skin-name == 'tailwind' or $skin-name == 'FluentUI' or $skin-name == 'bootstrap5' {
|
|
227
|
+
stroke: fade-out($btn-flat-primary-path-arc, $progress-btn-circle-opacity);
|
|
228
|
+
}
|
|
229
|
+
@else {
|
|
230
|
+
stroke: fade-out($btn-flat-danger-color, $progress-btn-circle-opacity);
|
|
231
|
+
}
|
|
232
|
+
}
|
|
233
|
+
|
|
234
|
+
.e-path-arc {
|
|
235
|
+
@if $skin-name == 'tailwind' or $skin-name == 'tailwind-dark' {
|
|
236
|
+
stroke: $btn-flat-primary-path-arc;
|
|
237
|
+
}
|
|
238
|
+
@else {
|
|
239
|
+
stroke: $btn-flat-danger-color;
|
|
240
|
+
}
|
|
241
|
+
}
|
|
242
|
+
}
|
|
243
|
+
}
|
|
244
|
+
}
|
|
245
|
+
|
|
246
|
+
&.e-outline,
|
|
247
|
+
&.e-flat {
|
|
248
|
+
&.e-primary {
|
|
249
|
+
.e-spinner-pane .e-spinner-inner svg {
|
|
250
|
+
fill: $btn-primary-bgcolor;
|
|
251
|
+
stroke: $btn-primary-bgcolor;
|
|
252
|
+
|
|
253
|
+
.e-path-circle {
|
|
254
|
+
stroke: fade-out($btn-primary-bgcolor, $progress-btn-circle-opacity);
|
|
255
|
+
}
|
|
256
|
+
|
|
257
|
+
.e-path-arc {
|
|
258
|
+
stroke: $btn-primary-bgcolor;
|
|
259
|
+
}
|
|
260
|
+
}
|
|
261
|
+
}
|
|
262
|
+
|
|
263
|
+
&.e-success {
|
|
264
|
+
.e-spinner-pane .e-spinner-inner svg {
|
|
265
|
+
fill: $btn-success-bgcolor;
|
|
266
|
+
stroke: $btn-success-bgcolor;
|
|
267
|
+
|
|
268
|
+
.e-path-circle {
|
|
269
|
+
stroke: fade-out($btn-success-bgcolor, $progress-btn-circle-opacity);
|
|
270
|
+
}
|
|
271
|
+
|
|
272
|
+
.e-path-arc {
|
|
273
|
+
stroke: $btn-success-bgcolor;
|
|
274
|
+
}
|
|
275
|
+
}
|
|
276
|
+
}
|
|
277
|
+
|
|
278
|
+
&.e-info {
|
|
279
|
+
.e-spinner-pane .e-spinner-inner svg {
|
|
280
|
+
fill: $btn-info-bgcolor;
|
|
281
|
+
stroke: $btn-info-bgcolor;
|
|
282
|
+
|
|
283
|
+
.e-path-circle {
|
|
284
|
+
stroke: fade-out($btn-info-bgcolor, $progress-btn-circle-opacity);
|
|
285
|
+
}
|
|
286
|
+
|
|
287
|
+
.e-path-arc {
|
|
288
|
+
stroke: $btn-info-bgcolor;
|
|
289
|
+
}
|
|
290
|
+
}
|
|
291
|
+
}
|
|
292
|
+
|
|
293
|
+
&.e-warning {
|
|
294
|
+
.e-spinner-pane .e-spinner-inner svg {
|
|
295
|
+
fill: $btn-warning-bgcolor;
|
|
296
|
+
stroke: $btn-warning-bgcolor;
|
|
297
|
+
|
|
298
|
+
.e-path-circle {
|
|
299
|
+
stroke: fade-out($btn-warning-bgcolor, $progress-btn-circle-opacity);
|
|
300
|
+
}
|
|
301
|
+
|
|
302
|
+
.e-path-arc {
|
|
303
|
+
stroke: $btn-warning-bgcolor;
|
|
304
|
+
}
|
|
305
|
+
}
|
|
306
|
+
}
|
|
307
|
+
|
|
308
|
+
&.e-danger {
|
|
309
|
+
.e-spinner-pane .e-spinner-inner svg {
|
|
310
|
+
fill: $btn-danger-bgcolor;
|
|
311
|
+
stroke: $btn-danger-bgcolor;
|
|
312
|
+
|
|
313
|
+
.e-path-circle {
|
|
314
|
+
stroke: fade-out($btn-danger-bgcolor, $progress-btn-circle-opacity);
|
|
315
|
+
}
|
|
316
|
+
|
|
317
|
+
.e-path-arc {
|
|
318
|
+
stroke: $btn-danger-bgcolor;
|
|
319
|
+
}
|
|
320
|
+
}
|
|
321
|
+
}
|
|
322
|
+
}
|
|
323
|
+
|
|
324
|
+
&.e-link {
|
|
325
|
+
.e-spinner-pane .e-spinner-inner svg {
|
|
326
|
+
fill: $btn-link-color;
|
|
327
|
+
stroke: $btn-link-color;
|
|
328
|
+
|
|
329
|
+
.e-path-circle {
|
|
330
|
+
stroke: fade-out($btn-link-color, $progress-btn-circle-opacity);
|
|
331
|
+
}
|
|
332
|
+
|
|
333
|
+
.e-path-arc {
|
|
334
|
+
stroke: $btn-link-color;
|
|
335
|
+
}
|
|
336
|
+
}
|
|
337
|
+
}
|
|
338
|
+
}
|
|
339
|
+
|
|
340
|
+
.e-progress {
|
|
341
|
+
background-color: $progress-btn-bgcolor-normal;
|
|
342
|
+
}
|
|
343
|
+
|
|
344
|
+
#{if(&, '&', '*')}.e-primary,
|
|
345
|
+
#{if(&, '&', '*')}.e-success,
|
|
346
|
+
#{if(&, '&', '*')}.e-danger,
|
|
347
|
+
#{if(&, '&', '*')}.e-info {
|
|
348
|
+
.e-progress {
|
|
349
|
+
background-color: $progress-btn-bgcolor;
|
|
350
|
+
}
|
|
351
|
+
}
|
|
352
|
+
|
|
353
|
+
#{if(&, '&', '*')}.e-warning {
|
|
354
|
+
.e-progress {
|
|
355
|
+
background-color: $progress-btn-warning-progress-color;
|
|
356
|
+
}
|
|
357
|
+
}
|
|
358
|
+
|
|
359
|
+
#{if(&, '&', '*')}.e-flat {
|
|
360
|
+
&.e-primary {
|
|
361
|
+
.e-progress {
|
|
362
|
+
background-color: fade-out($progress-btn-flat-primary-progress-color, .8);
|
|
363
|
+
}
|
|
364
|
+
}
|
|
365
|
+
|
|
366
|
+
&.e-success {
|
|
367
|
+
.e-progress {
|
|
368
|
+
background-color: fade-out($progress-btn-flat-success-progress-color, .8);
|
|
369
|
+
}
|
|
370
|
+
}
|
|
371
|
+
|
|
372
|
+
&.e-info {
|
|
373
|
+
.e-progress {
|
|
374
|
+
background-color: fade-out($progress-btn-flat-info-progress-color, .8);
|
|
375
|
+
}
|
|
376
|
+
}
|
|
377
|
+
|
|
378
|
+
&.e-warning {
|
|
379
|
+
.e-progress {
|
|
380
|
+
background-color: fade-out($progress-btn-flat-warning-progress-color, .8);
|
|
381
|
+
}
|
|
382
|
+
}
|
|
383
|
+
|
|
384
|
+
&.e-danger {
|
|
385
|
+
.e-progress {
|
|
386
|
+
background-color: fade-out($progress-btn-flat-danger-progress-color, .8);
|
|
387
|
+
}
|
|
388
|
+
}
|
|
389
|
+
}
|
|
390
|
+
|
|
391
|
+
#{if(&, '&', '*')}.e-outline:not(:focus) {
|
|
392
|
+
&.e-primary {
|
|
393
|
+
.e-progress {
|
|
394
|
+
background-color: fade-out($btn-primary-bgcolor, .8);
|
|
395
|
+
}
|
|
396
|
+
}
|
|
397
|
+
|
|
398
|
+
&.e-success {
|
|
399
|
+
.e-progress {
|
|
400
|
+
background-color: fade-out($btn-success-bgcolor, .8);
|
|
401
|
+
}
|
|
402
|
+
}
|
|
403
|
+
|
|
404
|
+
&.e-info {
|
|
405
|
+
.e-progress {
|
|
406
|
+
background-color: fade-out($btn-info-bgcolor, .8);
|
|
407
|
+
}
|
|
408
|
+
}
|
|
409
|
+
|
|
410
|
+
&.e-warning {
|
|
411
|
+
.e-progress {
|
|
412
|
+
background-color: fade-out($btn-warning-bgcolor, .8);
|
|
413
|
+
}
|
|
414
|
+
}
|
|
415
|
+
|
|
416
|
+
&.e-danger {
|
|
417
|
+
.e-progress {
|
|
418
|
+
background-color: fade-out($btn-danger-bgcolor, .8);
|
|
419
|
+
}
|
|
420
|
+
}
|
|
421
|
+
}
|
|
422
|
+
|
|
423
|
+
#{if(&, '&', '*')}.e-flat:not(:focus) {
|
|
424
|
+
@if $skin-name == 'bootstrap5' or $skin-name == 'tailwind' or $skin-name == 'FluentUI' {
|
|
425
|
+
&.e-primary {
|
|
426
|
+
.e-progress {
|
|
427
|
+
background-color: fade-out($btn-primary-bgcolor, .8);
|
|
428
|
+
}
|
|
429
|
+
}
|
|
430
|
+
|
|
431
|
+
&.e-success {
|
|
432
|
+
.e-progress {
|
|
433
|
+
background-color: fade-out($btn-success-bgcolor, .8);
|
|
434
|
+
}
|
|
435
|
+
}
|
|
436
|
+
|
|
437
|
+
&.e-info {
|
|
438
|
+
.e-progress {
|
|
439
|
+
background-color: fade-out($btn-info-bgcolor, .8);
|
|
440
|
+
}
|
|
441
|
+
}
|
|
442
|
+
|
|
443
|
+
&.e-warning {
|
|
444
|
+
.e-progress {
|
|
445
|
+
background-color: fade-out($btn-warning-bgcolor, .8);
|
|
446
|
+
}
|
|
447
|
+
}
|
|
448
|
+
|
|
449
|
+
&.e-danger {
|
|
450
|
+
.e-progress {
|
|
451
|
+
background-color: fade-out($btn-danger-bgcolor, .8);
|
|
452
|
+
}
|
|
453
|
+
}
|
|
454
|
+
}
|
|
455
|
+
}
|
|
456
|
+
}
|
|
@@ -1 +1,5 @@
|
|
|
1
|
-
@import 'ej2-
|
|
1
|
+
@import 'ej2-base/styles/bootstrap-dark-definition.scss';
|
|
2
|
+
@import 'ej2-buttons/styles/button/bootstrap-dark-definition.scss';
|
|
3
|
+
@import 'ej2-popups/styles/spinner/bootstrap-dark-definition.scss';
|
|
4
|
+
@import 'bootstrap-dark-definition.scss';
|
|
5
|
+
@import 'all.scss';
|
|
@@ -1 +1,5 @@
|
|
|
1
|
-
@import 'ej2-
|
|
1
|
+
@import 'ej2-base/styles/bootstrap-definition.scss';
|
|
2
|
+
@import 'ej2-buttons/styles/button/bootstrap-definition.scss';
|
|
3
|
+
@import 'ej2-popups/styles/spinner/bootstrap-definition.scss';
|
|
4
|
+
@import 'bootstrap-definition.scss';
|
|
5
|
+
@import 'all.scss';
|
|
@@ -1 +1,5 @@
|
|
|
1
|
-
@import 'ej2-
|
|
1
|
+
@import 'ej2-base/styles/bootstrap4-definition.scss';
|
|
2
|
+
@import 'ej2-buttons/styles/button/bootstrap4-definition.scss';
|
|
3
|
+
@import 'ej2-popups/styles/spinner/bootstrap4-definition.scss';
|
|
4
|
+
@import 'bootstrap4-definition.scss';
|
|
5
|
+
@import 'all.scss';
|
|
@@ -1 +1,5 @@
|
|
|
1
|
-
@import 'ej2-
|
|
1
|
+
@import 'ej2-base/styles/bootstrap5-dark-definition.scss';
|
|
2
|
+
@import 'ej2-buttons/styles/button/bootstrap5-dark-definition.scss';
|
|
3
|
+
@import 'ej2-popups/styles/spinner/bootstrap5-dark-definition.scss';
|
|
4
|
+
@import 'bootstrap5-dark-definition.scss';
|
|
5
|
+
@import 'all.scss';
|
|
@@ -1 +1,5 @@
|
|
|
1
|
-
@import 'ej2-
|
|
1
|
+
@import 'ej2-base/styles/bootstrap5-definition.scss';
|
|
2
|
+
@import 'ej2-buttons/styles/button/bootstrap5-definition.scss';
|
|
3
|
+
@import 'ej2-popups/styles/spinner/bootstrap5-definition.scss';
|
|
4
|
+
@import 'bootstrap5-definition.scss';
|
|
5
|
+
@import 'all.scss';
|
|
@@ -1 +1,5 @@
|
|
|
1
|
-
@import 'ej2-
|
|
1
|
+
@import 'ej2-base/styles/fabric-dark-definition.scss';
|
|
2
|
+
@import 'ej2-buttons/styles/button/fabric-dark-definition.scss';
|
|
3
|
+
@import 'ej2-popups/styles/spinner/fabric-dark-definition.scss';
|
|
4
|
+
@import 'fabric-dark-definition.scss';
|
|
5
|
+
@import 'all.scss';
|
|
@@ -1 +1,5 @@
|
|
|
1
|
-
@import 'ej2-
|
|
1
|
+
@import 'ej2-base/styles/fabric-definition.scss';
|
|
2
|
+
@import 'ej2-buttons/styles/button/fabric-definition.scss';
|
|
3
|
+
@import 'ej2-popups/styles/spinner/fabric-definition.scss';
|
|
4
|
+
@import 'fabric-definition.scss';
|
|
5
|
+
@import 'all.scss';
|
|
@@ -320,14 +320,14 @@
|
|
|
320
320
|
stroke: #fff;
|
|
321
321
|
}
|
|
322
322
|
.e-progress-btn.e-primary .e-spinner-pane .e-spinner-inner svg, .e-progress-btn.e-primary.e-outline:hover .e-spinner-pane .e-spinner-inner svg, .e-progress-btn.e-primary.e-outline:focus .e-spinner-pane .e-spinner-inner svg, .e-progress-btn.e-primary.e-flat:hover .e-spinner-pane .e-spinner-inner svg, .e-progress-btn.e-primary.e-flat:focus .e-spinner-pane .e-spinner-inner svg {
|
|
323
|
-
fill: #
|
|
324
|
-
stroke: #
|
|
323
|
+
fill: #fff;
|
|
324
|
+
stroke: #fff;
|
|
325
325
|
}
|
|
326
326
|
.e-progress-btn.e-primary .e-spinner-pane .e-spinner-inner svg .e-path-circle, .e-progress-btn.e-primary.e-outline:hover .e-spinner-pane .e-spinner-inner svg .e-path-circle, .e-progress-btn.e-primary.e-outline:focus .e-spinner-pane .e-spinner-inner svg .e-path-circle, .e-progress-btn.e-primary.e-flat:hover .e-spinner-pane .e-spinner-inner svg .e-path-circle, .e-progress-btn.e-primary.e-flat:focus .e-spinner-pane .e-spinner-inner svg .e-path-circle {
|
|
327
|
-
stroke: rgba(
|
|
327
|
+
stroke: rgba(255, 255, 255, 0.7);
|
|
328
328
|
}
|
|
329
329
|
.e-progress-btn.e-primary .e-spinner-pane .e-spinner-inner svg .e-path-arc, .e-progress-btn.e-primary.e-outline:hover .e-spinner-pane .e-spinner-inner svg .e-path-arc, .e-progress-btn.e-primary.e-outline:focus .e-spinner-pane .e-spinner-inner svg .e-path-arc, .e-progress-btn.e-primary.e-flat:hover .e-spinner-pane .e-spinner-inner svg .e-path-arc, .e-progress-btn.e-primary.e-flat:focus .e-spinner-pane .e-spinner-inner svg .e-path-arc {
|
|
330
|
-
stroke: #
|
|
330
|
+
stroke: #fff;
|
|
331
331
|
}
|
|
332
332
|
.e-progress-btn.e-primary.e-flat .e-spinner-pane .e-spinner-inner svg, .e-progress-btn.e-primary.e-outline:hover.e-flat .e-spinner-pane .e-spinner-inner svg, .e-progress-btn.e-primary.e-outline:focus.e-flat .e-spinner-pane .e-spinner-inner svg, .e-progress-btn.e-primary.e-flat:hover.e-flat .e-spinner-pane .e-spinner-inner svg, .e-progress-btn.e-primary.e-flat:focus.e-flat .e-spinner-pane .e-spinner-inner svg {
|
|
333
333
|
fill: #0078d4;
|
|
@@ -340,14 +340,14 @@
|
|
|
340
340
|
stroke: #0078d4;
|
|
341
341
|
}
|
|
342
342
|
.e-progress-btn.e-success .e-spinner-pane .e-spinner-inner svg, .e-progress-btn.e-success.e-outline:hover .e-spinner-pane .e-spinner-inner svg, .e-progress-btn.e-success.e-outline:focus .e-spinner-pane .e-spinner-inner svg, .e-progress-btn.e-success.e-flat:hover .e-spinner-pane .e-spinner-inner svg, .e-progress-btn.e-success.e-flat:focus .e-spinner-pane .e-spinner-inner svg {
|
|
343
|
-
fill: #
|
|
344
|
-
stroke: #
|
|
343
|
+
fill: #fff;
|
|
344
|
+
stroke: #fff;
|
|
345
345
|
}
|
|
346
346
|
.e-progress-btn.e-success .e-spinner-pane .e-spinner-inner svg .e-path-circle, .e-progress-btn.e-success.e-outline:hover .e-spinner-pane .e-spinner-inner svg .e-path-circle, .e-progress-btn.e-success.e-outline:focus .e-spinner-pane .e-spinner-inner svg .e-path-circle, .e-progress-btn.e-success.e-flat:hover .e-spinner-pane .e-spinner-inner svg .e-path-circle, .e-progress-btn.e-success.e-flat:focus .e-spinner-pane .e-spinner-inner svg .e-path-circle {
|
|
347
|
-
stroke: rgba(
|
|
347
|
+
stroke: rgba(255, 255, 255, 0.7);
|
|
348
348
|
}
|
|
349
349
|
.e-progress-btn.e-success .e-spinner-pane .e-spinner-inner svg .e-path-arc, .e-progress-btn.e-success.e-outline:hover .e-spinner-pane .e-spinner-inner svg .e-path-arc, .e-progress-btn.e-success.e-outline:focus .e-spinner-pane .e-spinner-inner svg .e-path-arc, .e-progress-btn.e-success.e-flat:hover .e-spinner-pane .e-spinner-inner svg .e-path-arc, .e-progress-btn.e-success.e-flat:focus .e-spinner-pane .e-spinner-inner svg .e-path-arc {
|
|
350
|
-
stroke: #
|
|
350
|
+
stroke: #fff;
|
|
351
351
|
}
|
|
352
352
|
.e-progress-btn.e-success.e-flat .e-spinner-pane .e-spinner-inner svg, .e-progress-btn.e-success.e-outline:hover.e-flat .e-spinner-pane .e-spinner-inner svg, .e-progress-btn.e-success.e-outline:focus.e-flat .e-spinner-pane .e-spinner-inner svg, .e-progress-btn.e-success.e-flat:hover.e-flat .e-spinner-pane .e-spinner-inner svg, .e-progress-btn.e-success.e-flat:focus.e-flat .e-spinner-pane .e-spinner-inner svg {
|
|
353
353
|
fill: #0b6a0b;
|
|
@@ -360,14 +360,14 @@
|
|
|
360
360
|
stroke: #0b6a0b;
|
|
361
361
|
}
|
|
362
362
|
.e-progress-btn.e-info .e-spinner-pane .e-spinner-inner svg, .e-progress-btn.e-info.e-outline:hover .e-spinner-pane .e-spinner-inner svg, .e-progress-btn.e-info.e-outline:focus .e-spinner-pane .e-spinner-inner svg, .e-progress-btn.e-info.e-flat:hover .e-spinner-pane .e-spinner-inner svg, .e-progress-btn.e-info.e-flat:focus .e-spinner-pane .e-spinner-inner svg {
|
|
363
|
-
fill: #
|
|
364
|
-
stroke: #
|
|
363
|
+
fill: #fff;
|
|
364
|
+
stroke: #fff;
|
|
365
365
|
}
|
|
366
366
|
.e-progress-btn.e-info .e-spinner-pane .e-spinner-inner svg .e-path-circle, .e-progress-btn.e-info.e-outline:hover .e-spinner-pane .e-spinner-inner svg .e-path-circle, .e-progress-btn.e-info.e-outline:focus .e-spinner-pane .e-spinner-inner svg .e-path-circle, .e-progress-btn.e-info.e-flat:hover .e-spinner-pane .e-spinner-inner svg .e-path-circle, .e-progress-btn.e-info.e-flat:focus .e-spinner-pane .e-spinner-inner svg .e-path-circle {
|
|
367
|
-
stroke: rgba(
|
|
367
|
+
stroke: rgba(255, 255, 255, 0.7);
|
|
368
368
|
}
|
|
369
369
|
.e-progress-btn.e-info .e-spinner-pane .e-spinner-inner svg .e-path-arc, .e-progress-btn.e-info.e-outline:hover .e-spinner-pane .e-spinner-inner svg .e-path-arc, .e-progress-btn.e-info.e-outline:focus .e-spinner-pane .e-spinner-inner svg .e-path-arc, .e-progress-btn.e-info.e-flat:hover .e-spinner-pane .e-spinner-inner svg .e-path-arc, .e-progress-btn.e-info.e-flat:focus .e-spinner-pane .e-spinner-inner svg .e-path-arc {
|
|
370
|
-
stroke: #
|
|
370
|
+
stroke: #fff;
|
|
371
371
|
}
|
|
372
372
|
.e-progress-btn.e-info.e-flat .e-spinner-pane .e-spinner-inner svg, .e-progress-btn.e-info.e-outline:hover.e-flat .e-spinner-pane .e-spinner-inner svg, .e-progress-btn.e-info.e-outline:focus.e-flat .e-spinner-pane .e-spinner-inner svg, .e-progress-btn.e-info.e-flat:hover.e-flat .e-spinner-pane .e-spinner-inner svg, .e-progress-btn.e-info.e-flat:focus.e-flat .e-spinner-pane .e-spinner-inner svg {
|
|
373
373
|
fill: #038387;
|
|
@@ -380,14 +380,14 @@
|
|
|
380
380
|
stroke: #038387;
|
|
381
381
|
}
|
|
382
382
|
.e-progress-btn.e-warning .e-spinner-pane .e-spinner-inner svg, .e-progress-btn.e-warning.e-outline:hover .e-spinner-pane .e-spinner-inner svg, .e-progress-btn.e-warning.e-outline:focus .e-spinner-pane .e-spinner-inner svg, .e-progress-btn.e-warning.e-flat:hover .e-spinner-pane .e-spinner-inner svg, .e-progress-btn.e-warning.e-flat:focus .e-spinner-pane .e-spinner-inner svg {
|
|
383
|
-
fill: #
|
|
384
|
-
stroke: #
|
|
383
|
+
fill: #fff;
|
|
384
|
+
stroke: #fff;
|
|
385
385
|
}
|
|
386
386
|
.e-progress-btn.e-warning .e-spinner-pane .e-spinner-inner svg .e-path-circle, .e-progress-btn.e-warning.e-outline:hover .e-spinner-pane .e-spinner-inner svg .e-path-circle, .e-progress-btn.e-warning.e-outline:focus .e-spinner-pane .e-spinner-inner svg .e-path-circle, .e-progress-btn.e-warning.e-flat:hover .e-spinner-pane .e-spinner-inner svg .e-path-circle, .e-progress-btn.e-warning.e-flat:focus .e-spinner-pane .e-spinner-inner svg .e-path-circle {
|
|
387
|
-
stroke: rgba(
|
|
387
|
+
stroke: rgba(255, 255, 255, 0.7);
|
|
388
388
|
}
|
|
389
389
|
.e-progress-btn.e-warning .e-spinner-pane .e-spinner-inner svg .e-path-arc, .e-progress-btn.e-warning.e-outline:hover .e-spinner-pane .e-spinner-inner svg .e-path-arc, .e-progress-btn.e-warning.e-outline:focus .e-spinner-pane .e-spinner-inner svg .e-path-arc, .e-progress-btn.e-warning.e-flat:hover .e-spinner-pane .e-spinner-inner svg .e-path-arc, .e-progress-btn.e-warning.e-flat:focus .e-spinner-pane .e-spinner-inner svg .e-path-arc {
|
|
390
|
-
stroke: #
|
|
390
|
+
stroke: #fff;
|
|
391
391
|
}
|
|
392
392
|
.e-progress-btn.e-warning.e-flat .e-spinner-pane .e-spinner-inner svg, .e-progress-btn.e-warning.e-outline:hover.e-flat .e-spinner-pane .e-spinner-inner svg, .e-progress-btn.e-warning.e-outline:focus.e-flat .e-spinner-pane .e-spinner-inner svg, .e-progress-btn.e-warning.e-flat:hover.e-flat .e-spinner-pane .e-spinner-inner svg, .e-progress-btn.e-warning.e-flat:focus.e-flat .e-spinner-pane .e-spinner-inner svg {
|
|
393
393
|
fill: #ca5010;
|
|
@@ -400,14 +400,14 @@
|
|
|
400
400
|
stroke: #ca5010;
|
|
401
401
|
}
|
|
402
402
|
.e-progress-btn.e-danger .e-spinner-pane .e-spinner-inner svg, .e-progress-btn.e-danger.e-outline:hover .e-spinner-pane .e-spinner-inner svg, .e-progress-btn.e-danger.e-outline:focus .e-spinner-pane .e-spinner-inner svg, .e-progress-btn.e-danger.e-flat:hover .e-spinner-pane .e-spinner-inner svg, .e-progress-btn.e-danger.e-flat:focus .e-spinner-pane .e-spinner-inner svg {
|
|
403
|
-
fill: #
|
|
404
|
-
stroke: #
|
|
403
|
+
fill: #fff;
|
|
404
|
+
stroke: #fff;
|
|
405
405
|
}
|
|
406
406
|
.e-progress-btn.e-danger .e-spinner-pane .e-spinner-inner svg .e-path-circle, .e-progress-btn.e-danger.e-outline:hover .e-spinner-pane .e-spinner-inner svg .e-path-circle, .e-progress-btn.e-danger.e-outline:focus .e-spinner-pane .e-spinner-inner svg .e-path-circle, .e-progress-btn.e-danger.e-flat:hover .e-spinner-pane .e-spinner-inner svg .e-path-circle, .e-progress-btn.e-danger.e-flat:focus .e-spinner-pane .e-spinner-inner svg .e-path-circle {
|
|
407
|
-
stroke: rgba(
|
|
407
|
+
stroke: rgba(255, 255, 255, 0.7);
|
|
408
408
|
}
|
|
409
409
|
.e-progress-btn.e-danger .e-spinner-pane .e-spinner-inner svg .e-path-arc, .e-progress-btn.e-danger.e-outline:hover .e-spinner-pane .e-spinner-inner svg .e-path-arc, .e-progress-btn.e-danger.e-outline:focus .e-spinner-pane .e-spinner-inner svg .e-path-arc, .e-progress-btn.e-danger.e-flat:hover .e-spinner-pane .e-spinner-inner svg .e-path-arc, .e-progress-btn.e-danger.e-flat:focus .e-spinner-pane .e-spinner-inner svg .e-path-arc {
|
|
410
|
-
stroke: #
|
|
410
|
+
stroke: #fff;
|
|
411
411
|
}
|
|
412
412
|
.e-progress-btn.e-danger.e-flat .e-spinner-pane .e-spinner-inner svg, .e-progress-btn.e-danger.e-outline:hover.e-flat .e-spinner-pane .e-spinner-inner svg, .e-progress-btn.e-danger.e-outline:focus.e-flat .e-spinner-pane .e-spinner-inner svg, .e-progress-btn.e-danger.e-flat:hover.e-flat .e-spinner-pane .e-spinner-inner svg, .e-progress-btn.e-danger.e-flat:focus.e-flat .e-spinner-pane .e-spinner-inner svg {
|
|
413
413
|
fill: #d13438;
|
|
@@ -496,19 +496,19 @@
|
|
|
496
496
|
}
|
|
497
497
|
|
|
498
498
|
*.e-flat.e-primary .e-progress {
|
|
499
|
-
background-color: rgba(
|
|
499
|
+
background-color: rgba(255, 255, 255, 0.2);
|
|
500
500
|
}
|
|
501
501
|
*.e-flat.e-success .e-progress {
|
|
502
|
-
background-color: rgba(
|
|
502
|
+
background-color: rgba(255, 255, 255, 0.2);
|
|
503
503
|
}
|
|
504
504
|
*.e-flat.e-info .e-progress {
|
|
505
|
-
background-color: rgba(
|
|
505
|
+
background-color: rgba(255, 255, 255, 0.2);
|
|
506
506
|
}
|
|
507
507
|
*.e-flat.e-warning .e-progress {
|
|
508
|
-
background-color: rgba(
|
|
508
|
+
background-color: rgba(255, 255, 255, 0.2);
|
|
509
509
|
}
|
|
510
510
|
*.e-flat.e-danger .e-progress {
|
|
511
|
-
background-color: rgba(
|
|
511
|
+
background-color: rgba(255, 255, 255, 0.2);
|
|
512
512
|
}
|
|
513
513
|
|
|
514
514
|
*.e-outline:not(:focus).e-primary .e-progress {
|
|
@@ -1 +1,5 @@
|
|
|
1
|
-
@import 'ej2-
|
|
1
|
+
@import 'ej2-base/styles/fluent-dark-definition.scss';
|
|
2
|
+
@import 'ej2-buttons/styles/button/fluent-dark-definition.scss';
|
|
3
|
+
@import 'ej2-popups/styles/spinner/fluent-dark-definition.scss';
|
|
4
|
+
@import 'fluent-dark-definition.scss';
|
|
5
|
+
@import 'all.scss';
|
|
@@ -1 +1,5 @@
|
|
|
1
|
-
@import 'ej2-
|
|
1
|
+
@import 'ej2-base/styles/fluent-definition.scss';
|
|
2
|
+
@import 'ej2-buttons/styles/button/fluent-definition.scss';
|
|
3
|
+
@import 'ej2-popups/styles/spinner/fluent-definition.scss';
|
|
4
|
+
@import 'fluent-definition.scss';
|
|
5
|
+
@import 'all.scss';
|
|
@@ -1 +1,5 @@
|
|
|
1
|
-
@import 'ej2-
|
|
1
|
+
@import 'ej2-base/styles/highcontrast-light-definition.scss';
|
|
2
|
+
@import 'ej2-buttons/styles/button/highcontrast-light-definition.scss';
|
|
3
|
+
@import 'ej2-popups/styles/spinner/highcontrast-light-definition.scss';
|
|
4
|
+
@import 'highcontrast-light-definition.scss';
|
|
5
|
+
@import 'all.scss';
|
|
@@ -1 +1,5 @@
|
|
|
1
|
-
@import 'ej2-
|
|
1
|
+
@import 'ej2-base/styles/highcontrast-definition.scss';
|
|
2
|
+
@import 'ej2-buttons/styles/button/highcontrast-definition.scss';
|
|
3
|
+
@import 'ej2-popups/styles/spinner/highcontrast-definition.scss';
|
|
4
|
+
@import 'highcontrast-definition.scss';
|
|
5
|
+
@import 'all.scss';
|
|
@@ -1 +1,5 @@
|
|
|
1
|
-
@import 'ej2-
|
|
1
|
+
@import 'ej2-base/styles/material-dark-definition.scss';
|
|
2
|
+
@import 'ej2-buttons/styles/button/material-dark-definition.scss';
|
|
3
|
+
@import 'ej2-popups/styles/spinner/material-dark-definition.scss';
|
|
4
|
+
@import 'material-dark-definition.scss';
|
|
5
|
+
@import 'all.scss';
|