@syncfusion/ej2-splitbuttons 21.2.3 → 22.1.34
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/.eslintrc.json +1 -0
- package/CHANGELOG.md +0 -2
- package/dist/ej2-splitbuttons.min.js +2 -2
- package/dist/ej2-splitbuttons.umd.min.js +2 -2
- package/dist/ej2-splitbuttons.umd.min.js.map +1 -1
- package/dist/es6/ej2-splitbuttons.es2015.js +28 -3
- package/dist/es6/ej2-splitbuttons.es2015.js.map +1 -1
- package/dist/es6/ej2-splitbuttons.es5.js +28 -3
- package/dist/es6/ej2-splitbuttons.es5.js.map +1 -1
- package/dist/global/ej2-splitbuttons.min.js +2 -2
- package/dist/global/ej2-splitbuttons.min.js.map +1 -1
- package/dist/global/index.d.ts +1 -1
- package/package.json +11 -8
- package/src/drop-down-button/drop-down-button.js +15 -0
- package/src/progress-button/progress-button-model.d.ts +2 -1
- package/src/progress-button/progress-button.d.ts +2 -1
- package/src/progress-button/progress-button.js +3 -3
- package/src/split-button/split-button.js +10 -0
- package/styles/bootstrap-dark.css +0 -84
- package/styles/bootstrap.css +0 -7
- package/styles/bootstrap4.css +8 -5
- package/styles/bootstrap5-dark.css +0 -7
- package/styles/bootstrap5.css +0 -7
- package/styles/button-group/_layout.scss +7 -1
- package/styles/button-group/_material3-dark-definition.scss +1 -0
- package/styles/button-group/_material3-definition.scss +31 -0
- package/styles/button-group/_theme.scss +67 -1
- package/styles/button-group/material3-dark.css +902 -0
- package/styles/button-group/material3-dark.scss +5 -0
- package/styles/button-group/material3.css +958 -0
- package/styles/button-group/material3.scss +5 -0
- package/styles/drop-down-button/_layout.scss +7 -2
- 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/_theme.scss +6 -1
- package/styles/drop-down-button/icons/_material3-dark.scss +1 -0
- package/styles/drop-down-button/material3-dark.css +293 -0
- package/styles/drop-down-button/material3-dark.scss +7 -0
- package/styles/drop-down-button/material3.css +349 -0
- package/styles/drop-down-button/material3.scss +7 -0
- package/styles/fabric-dark.css +0 -84
- package/styles/fabric.css +0 -7
- package/styles/fluent-dark.css +4 -7
- package/styles/fluent.css +4 -7
- package/styles/highcontrast-light.css +0 -84
- package/styles/highcontrast.css +0 -84
- package/styles/material-dark.css +0 -84
- package/styles/material.css +0 -7
- package/styles/material3-dark.css +2000 -0
- package/styles/material3-dark.scss +6 -0
- package/styles/material3.css +2050 -0
- package/styles/material3.scss +6 -0
- package/styles/progress-button/_material3-dark-definition.scss +1 -0
- package/styles/progress-button/_material3-definition.scss +25 -0
- package/styles/progress-button/_theme.scss +220 -65
- package/styles/progress-button/bootstrap-dark.css +0 -84
- package/styles/progress-button/bootstrap.css +0 -7
- package/styles/progress-button/bootstrap4.css +0 -5
- package/styles/progress-button/bootstrap5-dark.css +0 -7
- package/styles/progress-button/bootstrap5.css +0 -7
- package/styles/progress-button/fabric-dark.css +0 -84
- package/styles/progress-button/fabric.css +0 -7
- package/styles/progress-button/fluent-dark.css +0 -7
- package/styles/progress-button/fluent.css +0 -7
- package/styles/progress-button/highcontrast-light.css +0 -84
- package/styles/progress-button/highcontrast.css +0 -84
- package/styles/progress-button/material-dark.css +0 -84
- package/styles/progress-button/material.css +0 -7
- package/styles/progress-button/material3-dark.css +557 -0
- package/styles/progress-button/material3-dark.scss +6 -0
- package/styles/progress-button/material3.css +613 -0
- package/styles/progress-button/material3.scss +6 -0
- package/styles/progress-button/tailwind-dark.css +0 -5
- package/styles/progress-button/tailwind.css +0 -5
- package/styles/split-button/_layout.scss +59 -2
- package/styles/split-button/_material3-dark-definition.scss +1 -0
- package/styles/split-button/_material3-definition.scss +26 -0
- package/styles/split-button/_theme.scss +21 -1
- package/styles/split-button/bootstrap4.css +8 -0
- package/styles/split-button/fluent-dark.css +4 -0
- package/styles/split-button/fluent.css +4 -0
- package/styles/split-button/material3-dark.css +413 -0
- package/styles/split-button/material3-dark.scss +7 -0
- package/styles/split-button/material3.css +463 -0
- package/styles/split-button/material3.scss +7 -0
- package/styles/split-button/tailwind-dark.css +6 -0
- package/styles/split-button/tailwind.css +6 -0
- package/styles/tailwind-dark.css +6 -5
- package/styles/tailwind.css +6 -5
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@import './material3-definition.scss';
|
|
@@ -0,0 +1,25 @@
|
|
|
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: rgba($secondary-text-color) !default;
|
|
13
|
+
$progress-btn-bgcolor: rgba($secondary-text-color, .12) !default;
|
|
14
|
+
$progress-btn-bgcolor-normal: rgba($secondary-text-color, .12) !default;
|
|
15
|
+
$progress-btn-primary-progress-color: $primary-bg-color-pressed !default;
|
|
16
|
+
$progress-btn-success-progress-color: rgba($success-text, .12) !default;
|
|
17
|
+
$progress-btn-info-progress-color: rgba($info-text, .12) !default;
|
|
18
|
+
$progress-btn-danger-progress-color: rgba($danger-text, .12) !default;
|
|
19
|
+
$progress-btn-warning-progress-color: rgba($warning-text, .12) !default;
|
|
20
|
+
$progress-btn-flat-primary-progress-color: rgba($primary-bg-color, .12) !default;
|
|
21
|
+
$progress-btn-flat-success-progress-color: rgba($success-bg-color, .12) !default;
|
|
22
|
+
$progress-btn-flat-info-progress-color: rgba($info-bg-color, .12) !default;
|
|
23
|
+
$progress-btn-flat-warning-progress-color: rgba($warning-bg-color, .12) !default;
|
|
24
|
+
$progress-btn-flat-danger-progress-color: rgba($danger-bg-color, .12) !default;
|
|
25
|
+
$btn-flat-primary-path-arc: rgba($white);
|
|
@@ -7,7 +7,6 @@
|
|
|
7
7
|
stroke: $progress-btn-color;
|
|
8
8
|
|
|
9
9
|
.e-path-circle {
|
|
10
|
-
stroke: fade-out($btn-color, $progress-btn-circle-opacity);
|
|
11
10
|
@if $skin-name == 'bootstrap4' {
|
|
12
11
|
stroke-width: 1px;
|
|
13
12
|
}
|
|
@@ -34,7 +33,9 @@
|
|
|
34
33
|
stroke: $btn-primary-color;
|
|
35
34
|
|
|
36
35
|
.e-path-circle {
|
|
37
|
-
|
|
36
|
+
@if $skin-name == 'material' or $skin-name == 'fabric' or $skin-name == 'bootstrap' or $skin-name == 'bootstrap4' or $skin-name == 'tailwind' or $skin-name == 'FluentUI' or $skin-name == 'bootstrap5' {
|
|
37
|
+
stroke: fade-out($btn-primary-color, $progress-btn-circle-opacity);
|
|
38
|
+
}
|
|
38
39
|
}
|
|
39
40
|
|
|
40
41
|
.e-path-arc {
|
|
@@ -51,13 +52,13 @@
|
|
|
51
52
|
@if $skin-name == 'tailwind' or $skin-name == 'FluentUI' or $skin-name == 'bootstrap5' {
|
|
52
53
|
stroke: fade-out($btn-flat-primary-path-arc, $progress-btn-circle-opacity);
|
|
53
54
|
}
|
|
54
|
-
@else {
|
|
55
|
+
@else if $skin-name == 'material' or $skin-name == 'fabric' or $skin-name == 'bootstrap4' or $skin-name == 'bootstrap'{
|
|
55
56
|
stroke: fade-out($btn-flat-primary-color, $progress-btn-circle-opacity);
|
|
56
57
|
}
|
|
57
58
|
}
|
|
58
59
|
|
|
59
60
|
.e-path-arc {
|
|
60
|
-
@if $skin-name == 'tailwind' or $skin-name == 'tailwind-dark' or $skin-name == 'bootstrap5' {
|
|
61
|
+
@if $skin-name == 'tailwind' or $skin-name == 'tailwind-dark' or $skin-name == 'bootstrap5' or $skin-name == 'Material3' {
|
|
61
62
|
stroke: $btn-flat-primary-path-arc;
|
|
62
63
|
}
|
|
63
64
|
@else {
|
|
@@ -68,6 +69,26 @@
|
|
|
68
69
|
}
|
|
69
70
|
}
|
|
70
71
|
|
|
72
|
+
#{if(&, '&', '*')}.e-primary.e-outline:hover,
|
|
73
|
+
#{if(&, '&', '*')}.e-primary.e-outline:focus {
|
|
74
|
+
@if $skin-name == 'Material3' {
|
|
75
|
+
.e-spinner-pane .e-spinner-inner svg {
|
|
76
|
+
fill: $btn-primary-bgcolor;
|
|
77
|
+
stroke: $btn-primary-bgcolor;
|
|
78
|
+
|
|
79
|
+
.e-path-circle {
|
|
80
|
+
@if $skin-name == 'material' or $skin-name == 'fabric' or $skin-name == 'bootstrap' or $skin-name == 'bootstrap4' or $skin-name == 'tailwind' or $skin-name == 'FluentUI' or $skin-name == 'bootstrap5' {
|
|
81
|
+
stroke: fade-out($btn-primary-color, $progress-btn-circle-opacity);
|
|
82
|
+
}
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
.e-path-arc {
|
|
86
|
+
stroke: $btn-primary-color;
|
|
87
|
+
}
|
|
88
|
+
}
|
|
89
|
+
}
|
|
90
|
+
}
|
|
91
|
+
|
|
71
92
|
#{if(&, '&', '*')}.e-success,
|
|
72
93
|
#{if(&, '&', '*')}.e-success.e-outline:hover,
|
|
73
94
|
#{if(&, '&', '*')}.e-success.e-outline:focus,
|
|
@@ -78,7 +99,9 @@
|
|
|
78
99
|
stroke: $btn-success-color;
|
|
79
100
|
|
|
80
101
|
.e-path-circle {
|
|
81
|
-
|
|
102
|
+
@if $skin-name == 'material' or $skin-name == 'fabric' or $skin-name == 'bootstrap' or $skin-name == 'bootstrap4' or $skin-name == 'tailwind' or $skin-name == 'FluentUI' or $skin-name == 'bootstrap5' {
|
|
103
|
+
stroke: fade-out($btn-success-color, $progress-btn-circle-opacity);
|
|
104
|
+
}
|
|
82
105
|
}
|
|
83
106
|
|
|
84
107
|
.e-path-arc {
|
|
@@ -96,7 +119,9 @@
|
|
|
96
119
|
stroke: fade-out($btn-flat-primary-path-arc, $progress-btn-circle-opacity);
|
|
97
120
|
}
|
|
98
121
|
@else {
|
|
99
|
-
|
|
122
|
+
@if $skin-name == 'material' or $skin-name == 'fabric' or $skin-name == 'bootstrap' or $skin-name == 'bootstrap4' or $skin-name == 'tailwind' or $skin-name == 'FluentUI' or $skin-name == 'bootstrap5' {
|
|
123
|
+
stroke: fade-out($btn-flat-success-color, $progress-btn-circle-opacity);
|
|
124
|
+
}
|
|
100
125
|
}
|
|
101
126
|
}
|
|
102
127
|
|
|
@@ -112,6 +137,26 @@
|
|
|
112
137
|
}
|
|
113
138
|
}
|
|
114
139
|
|
|
140
|
+
#{if(&, '&', '*')}.e-success.e-outline:hover,
|
|
141
|
+
#{if(&, '&', '*')}.e-success.e-outline:focus {
|
|
142
|
+
@if $skin-name == 'Material3' {
|
|
143
|
+
.e-spinner-pane .e-spinner-inner svg {
|
|
144
|
+
fill: $btn-success-bgcolor;
|
|
145
|
+
stroke: $btn-success-bgcolor;
|
|
146
|
+
|
|
147
|
+
.e-path-circle {
|
|
148
|
+
@if $skin-name == 'material' or $skin-name == 'fabric' or $skin-name == 'bootstrap' or $skin-name == 'bootstrap4' or $skin-name == 'tailwind' or $skin-name == 'FluentUI' or $skin-name == 'bootstrap5' {
|
|
149
|
+
stroke: fade-out($btn-success-color, $progress-btn-circle-opacity);
|
|
150
|
+
}
|
|
151
|
+
}
|
|
152
|
+
|
|
153
|
+
.e-path-arc {
|
|
154
|
+
stroke: $btn-success-color;
|
|
155
|
+
}
|
|
156
|
+
}
|
|
157
|
+
}
|
|
158
|
+
}
|
|
159
|
+
|
|
115
160
|
&.e-info,
|
|
116
161
|
&.e-info.e-outline:hover,
|
|
117
162
|
&.e-info.e-outline:focus,
|
|
@@ -122,7 +167,9 @@
|
|
|
122
167
|
stroke: $btn-info-color;
|
|
123
168
|
|
|
124
169
|
.e-path-circle {
|
|
125
|
-
|
|
170
|
+
@if $skin-name == 'material' or $skin-name == 'fabric' or $skin-name == 'bootstrap' or $skin-name == 'bootstrap4' or $skin-name == 'tailwind' or $skin-name == 'FluentUI' or $skin-name == 'bootstrap5' {
|
|
171
|
+
stroke: fade-out($btn-info-color, $progress-btn-circle-opacity);
|
|
172
|
+
}
|
|
126
173
|
}
|
|
127
174
|
|
|
128
175
|
.e-path-arc {
|
|
@@ -139,7 +186,7 @@
|
|
|
139
186
|
@if $skin-name == 'tailwind' or $skin-name == 'FluentUI' or $skin-name == 'bootstrap5' {
|
|
140
187
|
stroke: fade-out($btn-flat-primary-path-arc, $progress-btn-circle-opacity);
|
|
141
188
|
}
|
|
142
|
-
@else {
|
|
189
|
+
@else if $skin-name == 'material' or $skin-name == 'fabric' or $skin-name == 'bootstrap' or $skin-name == 'bootstrap4' or $skin-name == 'tailwind' or $skin-name == 'FluentUI' or $skin-name == 'bootstrap5' {
|
|
143
190
|
stroke: fade-out($btn-flat-info-color, $progress-btn-circle-opacity);
|
|
144
191
|
}
|
|
145
192
|
}
|
|
@@ -156,6 +203,26 @@
|
|
|
156
203
|
}
|
|
157
204
|
}
|
|
158
205
|
|
|
206
|
+
#{if(&, '&', '*')}.e-info.e-outline:hover,
|
|
207
|
+
#{if(&, '&', '*')}.e-info.e-outline:focus {
|
|
208
|
+
@if $skin-name == 'Material3' {
|
|
209
|
+
.e-spinner-pane .e-spinner-inner svg {
|
|
210
|
+
fill: $btn-info-bgcolor;
|
|
211
|
+
stroke: $btn-info-bgcolor;
|
|
212
|
+
|
|
213
|
+
.e-path-circle {
|
|
214
|
+
@if $skin-name == 'material' or $skin-name == 'fabric' or $skin-name == 'bootstrap' or $skin-name == 'bootstrap4' or $skin-name == 'tailwind' or $skin-name == 'FluentUI' or $skin-name == 'bootstrap5' {
|
|
215
|
+
stroke: fade-out($btn-info-color, $progress-btn-circle-opacity);
|
|
216
|
+
}
|
|
217
|
+
}
|
|
218
|
+
|
|
219
|
+
.e-path-arc {
|
|
220
|
+
stroke: $btn-info-color;
|
|
221
|
+
}
|
|
222
|
+
}
|
|
223
|
+
}
|
|
224
|
+
}
|
|
225
|
+
|
|
159
226
|
&.e-warning,
|
|
160
227
|
&.e-warning.e-outline:hover,
|
|
161
228
|
&.e-warning.e-outline:focus,
|
|
@@ -166,7 +233,9 @@
|
|
|
166
233
|
stroke: $btn-warning-color;
|
|
167
234
|
|
|
168
235
|
.e-path-circle {
|
|
169
|
-
|
|
236
|
+
@if $skin-name == 'material' or $skin-name == 'fabric' or $skin-name == 'bootstrap' or $skin-name == 'bootstrap4' or $skin-name == 'tailwind' or $skin-name == 'FluentUI' or $skin-name == 'bootstrap5' {
|
|
237
|
+
stroke: fade-out($btn-warning-color, $progress-btn-circle-opacity);
|
|
238
|
+
}
|
|
170
239
|
}
|
|
171
240
|
|
|
172
241
|
.e-path-arc {
|
|
@@ -200,6 +269,26 @@
|
|
|
200
269
|
}
|
|
201
270
|
}
|
|
202
271
|
|
|
272
|
+
#{if(&, '&', '*')}.e-warning.e-outline:hover,
|
|
273
|
+
#{if(&, '&', '*')}.e-warning.e-outline:focus {
|
|
274
|
+
@if $skin-name == 'Material3' {
|
|
275
|
+
.e-spinner-pane .e-spinner-inner svg {
|
|
276
|
+
fill: $btn-warning-bgcolor;
|
|
277
|
+
stroke: $btn-warning-bgcolor;
|
|
278
|
+
|
|
279
|
+
.e-path-circle {
|
|
280
|
+
@if $skin-name == 'material' or $skin-name == 'fabric' or $skin-name == 'bootstrap' or $skin-name == 'bootstrap4' or $skin-name == 'tailwind' or $skin-name == 'FluentUI' or $skin-name == 'bootstrap5' {
|
|
281
|
+
stroke: fade-out($btn-warning-color, $progress-btn-circle-opacity);
|
|
282
|
+
}
|
|
283
|
+
}
|
|
284
|
+
|
|
285
|
+
.e-path-arc {
|
|
286
|
+
stroke: $btn-warning-color;
|
|
287
|
+
}
|
|
288
|
+
}
|
|
289
|
+
}
|
|
290
|
+
}
|
|
291
|
+
|
|
203
292
|
&.e-danger,
|
|
204
293
|
&.e-danger.e-outline:hover,
|
|
205
294
|
&.e-danger.e-outline:focus,
|
|
@@ -210,7 +299,9 @@
|
|
|
210
299
|
stroke: $btn-danger-color;
|
|
211
300
|
|
|
212
301
|
.e-path-circle {
|
|
213
|
-
|
|
302
|
+
@if $skin-name == 'material' or $skin-name == 'fabric' or $skin-name == 'bootstrap' or $skin-name == 'bootstrap4' or $skin-name == 'tailwind' or $skin-name == 'FluentUI' or $skin-name == 'bootstrap5' {
|
|
303
|
+
stroke: fade-out($btn-danger-color, $progress-btn-circle-opacity);
|
|
304
|
+
}
|
|
214
305
|
}
|
|
215
306
|
|
|
216
307
|
.e-path-arc {
|
|
@@ -227,7 +318,7 @@
|
|
|
227
318
|
@if $skin-name == 'tailwind' or $skin-name == 'FluentUI' or $skin-name == 'bootstrap5' {
|
|
228
319
|
stroke: fade-out($btn-flat-primary-path-arc, $progress-btn-circle-opacity);
|
|
229
320
|
}
|
|
230
|
-
@else {
|
|
321
|
+
@else if $skin-name == 'material' or $skin-name == 'fabric' or $skin-name == 'bootstrap' or $skin-name == 'bootstrap4' or $skin-name == 'tailwind' or $skin-name == 'FluentUI' or $skin-name == 'bootstrap5' {
|
|
231
322
|
stroke: fade-out($btn-flat-danger-color, $progress-btn-circle-opacity);
|
|
232
323
|
}
|
|
233
324
|
}
|
|
@@ -244,6 +335,26 @@
|
|
|
244
335
|
}
|
|
245
336
|
}
|
|
246
337
|
|
|
338
|
+
#{if(&, '&', '*')}.e-danger.e-outline:hover,
|
|
339
|
+
#{if(&, '&', '*')}.e-danger.e-outline:focus {
|
|
340
|
+
@if $skin-name == 'Material3' {
|
|
341
|
+
.e-spinner-pane .e-spinner-inner svg {
|
|
342
|
+
fill: $btn-danger-bgcolor;
|
|
343
|
+
stroke: $btn-danger-bgcolor;
|
|
344
|
+
|
|
345
|
+
.e-path-circle {
|
|
346
|
+
@if $skin-name == 'material' or $skin-name == 'fabric' or $skin-name == 'bootstrap' or $skin-name == 'bootstrap4' or $skin-name == 'tailwind' or $skin-name == 'FluentUI' or $skin-name == 'bootstrap5' {
|
|
347
|
+
stroke: fade-out($btn-danger-color, $progress-btn-circle-opacity);
|
|
348
|
+
}
|
|
349
|
+
}
|
|
350
|
+
|
|
351
|
+
.e-path-arc {
|
|
352
|
+
stroke: $btn-danger-color;
|
|
353
|
+
}
|
|
354
|
+
}
|
|
355
|
+
}
|
|
356
|
+
}
|
|
357
|
+
|
|
247
358
|
&.e-outline,
|
|
248
359
|
&.e-flat {
|
|
249
360
|
&.e-primary {
|
|
@@ -252,7 +363,9 @@
|
|
|
252
363
|
stroke: $btn-primary-bgcolor;
|
|
253
364
|
|
|
254
365
|
.e-path-circle {
|
|
255
|
-
|
|
366
|
+
@if $skin-name == 'material' or $skin-name == 'fabric' or $skin-name == 'bootstrap' or $skin-name == 'bootstrap4' or $skin-name == 'tailwind' or $skin-name == 'FluentUI' or $skin-name == 'bootstrap5' {
|
|
367
|
+
stroke: fade-out($btn-primary-bgcolor, $progress-btn-circle-opacity);
|
|
368
|
+
}
|
|
256
369
|
}
|
|
257
370
|
|
|
258
371
|
.e-path-arc {
|
|
@@ -267,9 +380,10 @@
|
|
|
267
380
|
stroke: $btn-success-bgcolor;
|
|
268
381
|
|
|
269
382
|
.e-path-circle {
|
|
270
|
-
|
|
383
|
+
@if $skin-name == 'material' or $skin-name == 'fabric' or $skin-name == 'bootstrap' or $skin-name == 'bootstrap4' or $skin-name == 'tailwind' or $skin-name == 'FluentUI' or $skin-name == 'bootstrap5' {
|
|
384
|
+
stroke: fade-out($btn-success-bgcolor, $progress-btn-circle-opacity);
|
|
385
|
+
}
|
|
271
386
|
}
|
|
272
|
-
|
|
273
387
|
.e-path-arc {
|
|
274
388
|
stroke: $btn-success-bgcolor;
|
|
275
389
|
}
|
|
@@ -282,7 +396,9 @@
|
|
|
282
396
|
stroke: $btn-info-bgcolor;
|
|
283
397
|
|
|
284
398
|
.e-path-circle {
|
|
285
|
-
|
|
399
|
+
@if $skin-name == 'material' or $skin-name == 'fabric' or $skin-name == 'bootstrap' or $skin-name == 'bootstrap4' or $skin-name == 'tailwind' or $skin-name == 'FluentUI' or $skin-name == 'bootstrap5' {
|
|
400
|
+
stroke: fade-out($btn-info-bgcolor, $progress-btn-circle-opacity);
|
|
401
|
+
}
|
|
286
402
|
}
|
|
287
403
|
|
|
288
404
|
.e-path-arc {
|
|
@@ -297,7 +413,9 @@
|
|
|
297
413
|
stroke: $btn-warning-bgcolor;
|
|
298
414
|
|
|
299
415
|
.e-path-circle {
|
|
300
|
-
|
|
416
|
+
@if $skin-name == 'material' or $skin-name == 'fabric' or $skin-name == 'bootstrap' or $skin-name == 'bootstrap4' or $skin-name == 'tailwind' or $skin-name == 'FluentUI' or $skin-name == 'bootstrap5' {
|
|
417
|
+
stroke: fade-out($btn-warning-bgcolor, $progress-btn-circle-opacity);
|
|
418
|
+
}
|
|
301
419
|
}
|
|
302
420
|
|
|
303
421
|
.e-path-arc {
|
|
@@ -312,7 +430,9 @@
|
|
|
312
430
|
stroke: $btn-danger-bgcolor;
|
|
313
431
|
|
|
314
432
|
.e-path-circle {
|
|
315
|
-
|
|
433
|
+
@if $skin-name == 'material' or $skin-name == 'fabric' or $skin-name == 'bootstrap' or $skin-name == 'bootstrap4' or $skin-name == 'tailwind' or $skin-name == 'FluentUI' or $skin-name == 'bootstrap5' {
|
|
434
|
+
stroke: fade-out($btn-danger-bgcolor, $progress-btn-circle-opacity);
|
|
435
|
+
}
|
|
316
436
|
}
|
|
317
437
|
|
|
318
438
|
.e-path-arc {
|
|
@@ -328,7 +448,9 @@
|
|
|
328
448
|
stroke: $btn-link-color;
|
|
329
449
|
|
|
330
450
|
.e-path-circle {
|
|
331
|
-
|
|
451
|
+
@if $skin-name == 'material' or $skin-name == 'fabric' or $skin-name == 'bootstrap' or $skin-name == 'bootstrap4' or $skin-name == 'tailwind' or $skin-name == 'FluentUI' or $skin-name == 'bootstrap5' {
|
|
452
|
+
stroke: fade-out($btn-link-color, $progress-btn-circle-opacity);
|
|
453
|
+
}
|
|
332
454
|
}
|
|
333
455
|
|
|
334
456
|
.e-path-arc {
|
|
@@ -351,66 +473,44 @@
|
|
|
351
473
|
}
|
|
352
474
|
}
|
|
353
475
|
|
|
354
|
-
@if $skin-name == 'Material3' {
|
|
355
|
-
#{if(&, '&', '*')}.e-primary {
|
|
356
|
-
.e-progress {
|
|
357
|
-
background: $progress-btn-primary-progress-color;
|
|
358
|
-
}
|
|
359
|
-
}
|
|
360
|
-
|
|
361
|
-
#{if(&, '&', '*')}.e-success {
|
|
362
|
-
.e-progress {
|
|
363
|
-
background: $progress-btn-success-progress-color;
|
|
364
|
-
}
|
|
365
|
-
}
|
|
366
|
-
|
|
367
|
-
#{if(&, '&', '*')}.e-danger {
|
|
368
|
-
.e-progress {
|
|
369
|
-
background: $progress-btn-danger-progress-color;
|
|
370
|
-
}
|
|
371
|
-
}
|
|
372
|
-
|
|
373
|
-
#{if(&, '&', '*')}.e-info {
|
|
374
|
-
.e-progress {
|
|
375
|
-
background: $progress-btn-info-progress-color;
|
|
376
|
-
}
|
|
377
|
-
}
|
|
378
|
-
}
|
|
379
|
-
|
|
380
|
-
#{if(&, '&', '*')}.e-warning {
|
|
381
|
-
.e-progress {
|
|
382
|
-
background: $progress-btn-warning-progress-color;
|
|
383
|
-
}
|
|
384
|
-
}
|
|
385
|
-
|
|
386
476
|
#{if(&, '&', '*')}.e-flat {
|
|
387
477
|
&.e-primary {
|
|
388
478
|
.e-progress {
|
|
389
|
-
|
|
479
|
+
@if $skin-name == 'material' or $skin-name == 'fabric' or $skin-name == 'bootstrap' or $skin-name == 'bootstrap4' or $skin-name == 'tailwind' or $skin-name == 'FluentUI' or $skin-name == 'bootstrap5' {
|
|
480
|
+
background: fade-out($progress-btn-flat-primary-progress-color, .8);
|
|
481
|
+
}
|
|
390
482
|
}
|
|
391
483
|
}
|
|
392
484
|
|
|
393
485
|
&.e-success {
|
|
394
486
|
.e-progress {
|
|
395
|
-
|
|
487
|
+
@if $skin-name == 'material' or $skin-name == 'fabric' or $skin-name == 'bootstrap' or $skin-name == 'bootstrap4' or $skin-name == 'tailwind' or $skin-name == 'FluentUI' or $skin-name == 'bootstrap5' {
|
|
488
|
+
background: fade-out($progress-btn-flat-success-progress-color, .8);
|
|
489
|
+
}
|
|
396
490
|
}
|
|
397
491
|
}
|
|
398
492
|
|
|
399
493
|
&.e-info {
|
|
400
494
|
.e-progress {
|
|
401
|
-
|
|
495
|
+
@if $skin-name == 'material' or $skin-name == 'fabric' or $skin-name == 'bootstrap' or $skin-name == 'bootstrap4' or $skin-name == 'tailwind' or $skin-name == 'FluentUI' or $skin-name == 'bootstrap5' {
|
|
496
|
+
background: fade-out($progress-btn-flat-info-progress-color, .8);
|
|
497
|
+
}
|
|
402
498
|
}
|
|
403
499
|
}
|
|
404
500
|
|
|
405
501
|
&.e-warning {
|
|
406
502
|
.e-progress {
|
|
407
|
-
|
|
503
|
+
@if $skin-name == 'material' or $skin-name == 'fabric' or $skin-name == 'bootstrap' or $skin-name == 'bootstrap4' or $skin-name == 'tailwind' or $skin-name == 'FluentUI' or $skin-name == 'bootstrap5' {
|
|
504
|
+
background: fade-out($progress-btn-flat-warning-progress-color, .8);
|
|
505
|
+
}
|
|
408
506
|
}
|
|
409
507
|
}
|
|
410
508
|
|
|
411
509
|
&.e-danger {
|
|
412
510
|
.e-progress {
|
|
413
|
-
|
|
511
|
+
@if $skin-name == 'material' or $skin-name == 'fabric' or $skin-name == 'bootstrap' or $skin-name == 'bootstrap4' or $skin-name == 'tailwind' or $skin-name == 'FluentUI' or $skin-name == 'bootstrap5' {
|
|
512
|
+
background: fade-out($progress-btn-flat-danger-progress-color, .8);
|
|
513
|
+
}
|
|
414
514
|
}
|
|
415
515
|
}
|
|
416
516
|
}
|
|
@@ -418,31 +518,76 @@
|
|
|
418
518
|
#{if(&, '&', '*')}.e-outline:not(:focus) {
|
|
419
519
|
&.e-primary {
|
|
420
520
|
.e-progress {
|
|
421
|
-
|
|
521
|
+
@if $skin-name == 'material' or $skin-name == 'fabric' or $skin-name == 'bootstrap' or $skin-name == 'bootstrap4' or $skin-name == 'tailwind' or $skin-name == 'FluentUI' or $skin-name == 'bootstrap5' {
|
|
522
|
+
background: fade-out($btn-primary-bgcolor, .8);
|
|
523
|
+
}
|
|
422
524
|
}
|
|
423
525
|
}
|
|
424
526
|
|
|
425
527
|
&.e-success {
|
|
426
528
|
.e-progress {
|
|
427
|
-
|
|
529
|
+
@if $skin-name == 'material' or $skin-name == 'fabric' or $skin-name == 'bootstrap' or $skin-name == 'bootstrap4' or $skin-name == 'tailwind' or $skin-name == 'FluentUI' or $skin-name == 'bootstrap5' {
|
|
530
|
+
background: fade-out($btn-success-bgcolor, .8);
|
|
531
|
+
}
|
|
428
532
|
}
|
|
429
533
|
}
|
|
430
534
|
|
|
431
535
|
&.e-info {
|
|
432
536
|
.e-progress {
|
|
433
|
-
|
|
537
|
+
@if $skin-name == 'material' or $skin-name == 'fabric' or $skin-name == 'bootstrap' or $skin-name == 'bootstrap4' or $skin-name == 'tailwind' or $skin-name == 'FluentUI' or $skin-name == 'bootstrap5' {
|
|
538
|
+
background: fade-out($btn-info-bgcolor, .8);
|
|
539
|
+
}
|
|
434
540
|
}
|
|
435
541
|
}
|
|
436
542
|
|
|
437
543
|
&.e-warning {
|
|
438
544
|
.e-progress {
|
|
439
|
-
|
|
545
|
+
@if $skin-name == 'material' or $skin-name == 'fabric' or $skin-name == 'bootstrap' or $skin-name == 'bootstrap4' or $skin-name == 'tailwind' or $skin-name == 'FluentUI' or $skin-name == 'bootstrap5' {
|
|
546
|
+
background: fade-out($btn-warning-bgcolor, .8);
|
|
547
|
+
}
|
|
440
548
|
}
|
|
441
549
|
}
|
|
442
550
|
|
|
443
551
|
&.e-danger {
|
|
444
552
|
.e-progress {
|
|
445
|
-
|
|
553
|
+
@if $skin-name == 'material' or $skin-name == 'fabric' or $skin-name == 'bootstrap' or $skin-name == 'bootstrap4' or $skin-name == 'tailwind' or $skin-name == 'FluentUI' or $skin-name == 'bootstrap5' {
|
|
554
|
+
background: fade-out($btn-danger-bgcolor, .8);
|
|
555
|
+
}
|
|
556
|
+
}
|
|
557
|
+
}
|
|
558
|
+
}
|
|
559
|
+
|
|
560
|
+
@if $skin-name == 'Material3' {
|
|
561
|
+
#{if(&, '&', '*')}.e-flat,
|
|
562
|
+
#{if(&, '&', '*')}.e-flat:not(:focus) {
|
|
563
|
+
&.e-primary {
|
|
564
|
+
.e-progress {
|
|
565
|
+
background: $progress-btn-flat-primary-progress-color;
|
|
566
|
+
}
|
|
567
|
+
}
|
|
568
|
+
|
|
569
|
+
&.e-success {
|
|
570
|
+
.e-progress {
|
|
571
|
+
background: $progress-btn-flat-success-progress-color;
|
|
572
|
+
}
|
|
573
|
+
}
|
|
574
|
+
|
|
575
|
+
&.e-info {
|
|
576
|
+
.e-progress {
|
|
577
|
+
background: $progress-btn-flat-info-progress-color;
|
|
578
|
+
}
|
|
579
|
+
}
|
|
580
|
+
|
|
581
|
+
&.e-warning {
|
|
582
|
+
.e-progress {
|
|
583
|
+
background: $progress-btn-flat-warning-progress-color;
|
|
584
|
+
}
|
|
585
|
+
}
|
|
586
|
+
|
|
587
|
+
&.e-danger {
|
|
588
|
+
.e-progress {
|
|
589
|
+
background: $progress-btn-flat-danger-progress-color;
|
|
590
|
+
}
|
|
446
591
|
}
|
|
447
592
|
}
|
|
448
593
|
}
|
|
@@ -451,31 +596,41 @@
|
|
|
451
596
|
@if $skin-name == 'bootstrap5' or $skin-name == 'tailwind' or $skin-name == 'FluentUI' {
|
|
452
597
|
&.e-primary {
|
|
453
598
|
.e-progress {
|
|
454
|
-
|
|
599
|
+
@if $skin-name == 'material' or $skin-name == 'fabric' or $skin-name == 'bootstrap' or $skin-name == 'bootstrap4' or $skin-name == 'tailwind' or $skin-name == 'FluentUI' or $skin-name == 'bootstrap5' {
|
|
600
|
+
background: fade-out($btn-primary-bgcolor, .8);
|
|
601
|
+
}
|
|
455
602
|
}
|
|
456
603
|
}
|
|
457
604
|
|
|
458
605
|
&.e-success {
|
|
459
606
|
.e-progress {
|
|
460
|
-
|
|
607
|
+
@if $skin-name == 'material' or $skin-name == 'fabric' or $skin-name == 'bootstrap' or $skin-name == 'bootstrap4' or $skin-name == 'tailwind' or $skin-name == 'FluentUI' or $skin-name == 'bootstrap5' {
|
|
608
|
+
background: fade-out($btn-success-bgcolor, .8);
|
|
609
|
+
}
|
|
461
610
|
}
|
|
462
611
|
}
|
|
463
612
|
|
|
464
613
|
&.e-info {
|
|
465
614
|
.e-progress {
|
|
466
|
-
|
|
615
|
+
@if $skin-name == 'material' or $skin-name == 'fabric' or $skin-name == 'bootstrap' or $skin-name == 'bootstrap4' or $skin-name == 'tailwind' or $skin-name == 'FluentUI' or $skin-name == 'bootstrap5' {
|
|
616
|
+
background: fade-out($btn-info-bgcolor, .8);
|
|
617
|
+
}
|
|
467
618
|
}
|
|
468
619
|
}
|
|
469
620
|
|
|
470
621
|
&.e-warning {
|
|
471
622
|
.e-progress {
|
|
472
|
-
|
|
623
|
+
@if $skin-name == 'material' or $skin-name == 'fabric' or $skin-name == 'bootstrap' or $skin-name == 'bootstrap4' or $skin-name == 'tailwind' or $skin-name == 'FluentUI' or $skin-name == 'bootstrap5' {
|
|
624
|
+
background: fade-out($btn-warning-bgcolor, .8);
|
|
625
|
+
}
|
|
473
626
|
}
|
|
474
627
|
}
|
|
475
628
|
|
|
476
629
|
&.e-danger {
|
|
477
630
|
.e-progress {
|
|
478
|
-
|
|
631
|
+
@if $skin-name == 'material' or $skin-name == 'fabric' or $skin-name == 'bootstrap' or $skin-name == 'bootstrap4' or $skin-name == 'tailwind' or $skin-name == 'FluentUI' or $skin-name == 'bootstrap5' {
|
|
632
|
+
background: fade-out($btn-danger-bgcolor, .8);
|
|
633
|
+
}
|
|
479
634
|
}
|
|
480
635
|
}
|
|
481
636
|
}
|