@syncfusion/ej2-splitbuttons 25.2.4 → 26.2.4
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 +3 -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 +29 -48
- package/dist/es6/ej2-splitbuttons.es2015.js.map +1 -1
- package/dist/es6/ej2-splitbuttons.es5.js +30 -45
- 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 +8 -8
- package/src/drop-down-button/drop-down-button.js +6 -1
- package/src/progress-button/progress-button.js +3 -3
- package/src/split-button/split-button.js +2 -1
- package/styles/bootstrap-dark.css +263 -97
- package/styles/bootstrap-dark.scss +14 -4
- package/styles/bootstrap.css +263 -97
- package/styles/bootstrap.scss +14 -4
- package/styles/bootstrap4.css +227 -80
- package/styles/bootstrap4.scss +14 -4
- package/styles/bootstrap5-dark.css +227 -174
- package/styles/bootstrap5-dark.scss +14 -4
- package/styles/bootstrap5.css +227 -174
- package/styles/bootstrap5.scss +14 -4
- package/styles/button-group/_bootstrap-dark-definition.scss +0 -2
- package/styles/button-group/_bootstrap5.3-definition.scss +31 -0
- package/styles/button-group/_fabric-dark-definition.scss +0 -2
- package/styles/button-group/_fluent2-definition.scss +31 -0
- package/styles/button-group/_group-button-mixin.scss +21 -0
- package/styles/button-group/_highcontrast-light-definition.scss +0 -2
- package/styles/button-group/_layout.scss +5 -13
- package/styles/button-group/_material-dark-definition.scss +0 -2
- package/styles/button-group/_theme.scss +30 -84
- package/styles/button-group/bootstrap-dark.css +93 -57
- package/styles/button-group/bootstrap.css +93 -57
- package/styles/button-group/bootstrap4.css +69 -46
- package/styles/button-group/bootstrap5-dark.css +69 -46
- package/styles/button-group/bootstrap5.css +69 -46
- package/styles/button-group/fabric-dark.css +93 -57
- package/styles/button-group/fabric.css +98 -62
- package/styles/button-group/fluent-dark.css +109 -65
- package/styles/button-group/fluent.css +109 -65
- package/styles/button-group/fluent2.css +1849 -0
- package/styles/button-group/fluent2.scss +4 -0
- package/styles/button-group/highcontrast-light.css +93 -57
- package/styles/button-group/highcontrast.css +93 -57
- package/styles/button-group/material-dark.css +107 -64
- package/styles/button-group/material.css +109 -65
- package/styles/button-group/material3-dark.css +151 -77
- package/styles/button-group/material3.css +151 -77
- package/styles/button-group/tailwind-dark.css +91 -57
- package/styles/button-group/tailwind.css +91 -57
- package/styles/drop-down-button/_bds-definition.scss +5 -5
- package/styles/drop-down-button/_bootstrap-dark-definition.scss +0 -3
- package/styles/drop-down-button/_bootstrap5-definition.scss +0 -1
- package/styles/drop-down-button/_bootstrap5.3-definition.scss +49 -0
- package/styles/drop-down-button/_fabric-dark-definition.scss +0 -3
- package/styles/drop-down-button/_fluent-definition.scss +0 -1
- package/styles/drop-down-button/_fluent2-definition.scss +48 -0
- package/styles/drop-down-button/_fusionnew-definition.scss +0 -1
- package/styles/drop-down-button/_highcontrast-light-definition.scss +0 -3
- package/styles/drop-down-button/_layout.scss +51 -6
- package/styles/drop-down-button/_material-dark-definition.scss +0 -3
- package/styles/drop-down-button/_material3-definition.scss +0 -1
- package/styles/drop-down-button/_tailwind-definition.scss +0 -1
- package/styles/drop-down-button/_theme.scss +8 -8
- package/styles/drop-down-button/bootstrap-dark.css +27 -14
- package/styles/drop-down-button/bootstrap.css +27 -14
- package/styles/drop-down-button/bootstrap4.css +23 -12
- package/styles/drop-down-button/bootstrap5-dark.css +23 -12
- package/styles/drop-down-button/bootstrap5.css +23 -12
- package/styles/drop-down-button/fabric-dark.css +27 -14
- package/styles/drop-down-button/fabric.css +27 -14
- package/styles/drop-down-button/fluent-dark.css +27 -14
- package/styles/drop-down-button/fluent.css +27 -14
- package/styles/drop-down-button/fluent2.css +1308 -0
- package/styles/drop-down-button/fluent2.scss +6 -0
- package/styles/drop-down-button/highcontrast-light.css +27 -14
- package/styles/drop-down-button/highcontrast.css +27 -14
- package/styles/drop-down-button/icons/_bootstrap5.3.scss +10 -0
- package/styles/drop-down-button/icons/_fluent2.scss +10 -0
- package/styles/drop-down-button/material-dark.css +27 -14
- package/styles/drop-down-button/material.css +27 -14
- package/styles/drop-down-button/material3-dark.css +33 -17
- package/styles/drop-down-button/material3.css +33 -17
- package/styles/drop-down-button/tailwind-dark.css +27 -14
- package/styles/drop-down-button/tailwind.css +27 -14
- package/styles/fabric-dark.css +263 -97
- package/styles/fabric-dark.scss +14 -4
- package/styles/fabric.css +268 -102
- package/styles/fabric.scss +14 -4
- package/styles/fluent-dark.css +271 -102
- package/styles/fluent-dark.scss +14 -4
- package/styles/fluent.css +271 -102
- package/styles/fluent.scss +14 -4
- package/styles/fluent2.css +3068 -0
- package/styles/fluent2.scss +14 -0
- package/styles/highcontrast-light.css +263 -97
- package/styles/highcontrast-light.scss +14 -4
- package/styles/highcontrast.css +263 -97
- package/styles/highcontrast.scss +14 -4
- package/styles/material-dark.css +277 -104
- package/styles/material-dark.scss +14 -4
- package/styles/material.css +279 -105
- package/styles/material.scss +14 -4
- package/styles/material3-dark.css +357 -134
- package/styles/material3-dark.scss +14 -4
- package/styles/material3.css +353 -132
- package/styles/material3.scss +14 -4
- package/styles/progress-button/_bds-definition.scss +0 -5
- package/styles/progress-button/_bootstrap-dark-definition.scss +0 -3
- package/styles/progress-button/_bootstrap5-definition.scss +0 -1
- package/styles/progress-button/_bootstrap5.3-definition.scss +20 -0
- package/styles/progress-button/_fabric-dark-definition.scss +0 -3
- package/styles/progress-button/_fluent-definition.scss +0 -1
- package/styles/progress-button/_fluent2-definition.scss +21 -0
- package/styles/progress-button/_fusionnew-definition.scss +0 -1
- package/styles/progress-button/_layout.scss +0 -2
- package/styles/progress-button/_material-dark-definition.scss +0 -3
- package/styles/progress-button/_material3-definition.scss +0 -1
- package/styles/progress-button/_tailwind-definition.scss +0 -1
- package/styles/progress-button/_theme.scss +115 -50
- package/styles/progress-button/bootstrap-dark.css +118 -13
- package/styles/progress-button/bootstrap.css +118 -13
- package/styles/progress-button/bootstrap4.css +118 -13
- package/styles/progress-button/bootstrap5-dark.css +118 -106
- package/styles/progress-button/bootstrap5.css +118 -106
- package/styles/progress-button/fabric-dark.css +118 -13
- package/styles/progress-button/fabric.css +118 -13
- package/styles/progress-button/fluent-dark.css +118 -13
- package/styles/progress-button/fluent.css +118 -13
- package/styles/progress-button/fluent2.css +1632 -0
- package/styles/progress-button/fluent2.scss +5 -0
- package/styles/progress-button/highcontrast-light.css +118 -13
- package/styles/progress-button/highcontrast.css +118 -13
- package/styles/progress-button/material-dark.css +118 -13
- package/styles/progress-button/material.css +118 -13
- package/styles/progress-button/material3-dark.css +119 -14
- package/styles/progress-button/material3.css +119 -14
- package/styles/progress-button/tailwind-dark.css +118 -13
- package/styles/progress-button/tailwind.css +118 -13
- package/styles/split-button/_bds-definition.scss +0 -1
- package/styles/split-button/_bootstrap-dark-definition.scss +0 -3
- package/styles/split-button/_bootstrap4-definition.scss +0 -3
- package/styles/split-button/_bootstrap5-definition.scss +0 -1
- package/styles/split-button/_bootstrap5.3-definition.scss +23 -0
- package/styles/split-button/_fabric-dark-definition.scss +0 -3
- package/styles/split-button/_fluent-definition.scss +0 -1
- package/styles/split-button/_fluent2-definition.scss +23 -0
- package/styles/split-button/_fusionnew-definition.scss +0 -1
- package/styles/split-button/_highcontrast-light-definition.scss +0 -3
- package/styles/split-button/_layout.scss +16 -4
- package/styles/split-button/_theme.scss +0 -2
- package/styles/split-button/bootstrap-dark.css +25 -13
- package/styles/split-button/bootstrap.css +25 -13
- package/styles/split-button/bootstrap4.css +17 -9
- package/styles/split-button/bootstrap5-dark.css +17 -9
- package/styles/split-button/bootstrap5.css +17 -9
- package/styles/split-button/fabric-dark.css +25 -13
- package/styles/split-button/fabric.css +25 -13
- package/styles/split-button/fluent-dark.css +17 -9
- package/styles/split-button/fluent.css +17 -9
- package/styles/split-button/fluent2.css +1379 -0
- package/styles/split-button/fluent2.scss +6 -0
- package/styles/split-button/highcontrast-light.css +25 -13
- package/styles/split-button/highcontrast.css +25 -13
- package/styles/split-button/material-dark.css +25 -13
- package/styles/split-button/material.css +25 -13
- package/styles/split-button/material3-dark.css +57 -28
- package/styles/split-button/material3.css +53 -26
- package/styles/split-button/tailwind-dark.css +25 -13
- package/styles/split-button/tailwind.css +25 -13
- package/styles/tailwind-dark.css +261 -98
- package/styles/tailwind-dark.scss +14 -4
- package/styles/tailwind.css +261 -98
- package/styles/tailwind.scss +14 -4
- package/CHANGELOG.md +0 -373
|
@@ -1,11 +1,14 @@
|
|
|
1
1
|
/* stylelint-disable */
|
|
2
2
|
*.e-btn-group,
|
|
3
3
|
*.e-css.e-btn-group {
|
|
4
|
+
display: -webkit-inline-box;
|
|
4
5
|
display: -ms-inline-flexbox;
|
|
5
6
|
display: inline-flex;
|
|
6
7
|
border-radius: 4px;
|
|
7
|
-
-
|
|
8
|
-
|
|
8
|
+
-webkit-box-orient: horizontal;
|
|
9
|
+
-webkit-box-direction: normal;
|
|
10
|
+
-ms-flex-direction: row;
|
|
11
|
+
flex-direction: row;
|
|
9
12
|
position: relative;
|
|
10
13
|
}
|
|
11
14
|
*.e-btn-group input + label.e-btn,
|
|
@@ -40,8 +43,9 @@
|
|
|
40
43
|
*.e-css.e-btn-group:not(.e-rtl):not(.e-vertical) .e-btn:not(:first-of-type):not(:last-of-type) {
|
|
41
44
|
border-radius: 0;
|
|
42
45
|
}
|
|
43
|
-
*.e-btn-group:not(.e-rtl):not(.e-vertical) .e-btn:first-of-type,
|
|
44
|
-
*.e-css.e-btn-group:not(.e-rtl):not(.e-vertical) .e-btn:first-of-type
|
|
46
|
+
*.e-btn-group:not(.e-rtl):not(.e-vertical) .e-btn:first-of-type, *.e-btn-group:not(.e-rtl):not(.e-vertical) .e-btn:last-of-type:not(:last-child),
|
|
47
|
+
*.e-css.e-btn-group:not(.e-rtl):not(.e-vertical) .e-btn:first-of-type,
|
|
48
|
+
*.e-css.e-btn-group:not(.e-rtl):not(.e-vertical) .e-btn:last-of-type:not(:last-child) {
|
|
45
49
|
border-bottom-right-radius: 0;
|
|
46
50
|
border-top-right-radius: 0;
|
|
47
51
|
}
|
|
@@ -50,11 +54,6 @@
|
|
|
50
54
|
border-bottom-left-radius: 0;
|
|
51
55
|
border-top-left-radius: 0;
|
|
52
56
|
}
|
|
53
|
-
*.e-btn-group:not(.e-rtl):not(.e-vertical) .e-btn:last-of-type:not(:last-child),
|
|
54
|
-
*.e-css.e-btn-group:not(.e-rtl):not(.e-vertical) .e-btn:last-of-type:not(:last-child) {
|
|
55
|
-
border-bottom-right-radius: 0;
|
|
56
|
-
border-top-right-radius: 0;
|
|
57
|
-
}
|
|
58
57
|
*.e-btn-group:not(.e-rtl):not(.e-vertical) .e-split-btn-wrapper + .e-btn,
|
|
59
58
|
*.e-css.e-btn-group:not(.e-rtl):not(.e-vertical) .e-split-btn-wrapper + .e-btn {
|
|
60
59
|
border-bottom-left-radius: 0;
|
|
@@ -88,8 +87,9 @@
|
|
|
88
87
|
*.e-css.e-btn-group.e-rtl .e-btn:not(:first-of-type):not(:last-of-type) {
|
|
89
88
|
border-radius: 0;
|
|
90
89
|
}
|
|
91
|
-
*.e-btn-group.e-rtl .e-btn:first-of-type,
|
|
92
|
-
*.e-css.e-btn-group.e-rtl .e-btn:first-of-type
|
|
90
|
+
*.e-btn-group.e-rtl .e-btn:first-of-type, *.e-btn-group.e-rtl .e-btn:last-of-type:not(:last-child),
|
|
91
|
+
*.e-css.e-btn-group.e-rtl .e-btn:first-of-type,
|
|
92
|
+
*.e-css.e-btn-group.e-rtl .e-btn:last-of-type:not(:last-child) {
|
|
93
93
|
border-bottom-left-radius: 0;
|
|
94
94
|
border-top-left-radius: 0;
|
|
95
95
|
}
|
|
@@ -98,11 +98,6 @@
|
|
|
98
98
|
border-bottom-right-radius: 0;
|
|
99
99
|
border-top-right-radius: 0;
|
|
100
100
|
}
|
|
101
|
-
*.e-btn-group.e-rtl .e-btn:last-of-type:not(:last-child),
|
|
102
|
-
*.e-css.e-btn-group.e-rtl .e-btn:last-of-type:not(:last-child) {
|
|
103
|
-
border-bottom-left-radius: 0;
|
|
104
|
-
border-top-left-radius: 0;
|
|
105
|
-
}
|
|
106
101
|
*.e-btn-group.e-rtl .e-split-btn-wrapper + .e-btn,
|
|
107
102
|
*.e-css.e-btn-group.e-rtl .e-split-btn-wrapper + .e-btn {
|
|
108
103
|
border-bottom-right-radius: 0;
|
|
@@ -130,8 +125,10 @@
|
|
|
130
125
|
}
|
|
131
126
|
*.e-btn-group.e-vertical,
|
|
132
127
|
*.e-css.e-btn-group.e-vertical {
|
|
133
|
-
-
|
|
134
|
-
|
|
128
|
+
-webkit-box-orient: vertical;
|
|
129
|
+
-webkit-box-direction: normal;
|
|
130
|
+
-ms-flex-direction: column;
|
|
131
|
+
flex-direction: column;
|
|
135
132
|
}
|
|
136
133
|
*.e-btn-group.e-vertical input,
|
|
137
134
|
*.e-css.e-btn-group.e-vertical input {
|
|
@@ -238,11 +235,13 @@
|
|
|
238
235
|
/* stylelint-disable */
|
|
239
236
|
.e-btn-group:not(.e-outline),
|
|
240
237
|
.e-css.e-btn-group:not(.e-outline) {
|
|
241
|
-
box-shadow: none;
|
|
238
|
+
-webkit-box-shadow: none;
|
|
239
|
+
box-shadow: none;
|
|
242
240
|
}
|
|
243
241
|
.e-btn-group .e-btn:hover,
|
|
244
242
|
.e-css.e-btn-group .e-btn:hover {
|
|
245
|
-
box-shadow: none;
|
|
243
|
+
-webkit-box-shadow: none;
|
|
244
|
+
box-shadow: none;
|
|
246
245
|
}
|
|
247
246
|
.e-btn-group .e-btn:focus,
|
|
248
247
|
.e-btn-group input:focus-visible + label.e-btn,
|
|
@@ -255,8 +254,10 @@
|
|
|
255
254
|
color: #323130;
|
|
256
255
|
outline: 1px solid;
|
|
257
256
|
outline-offset: -3px;
|
|
258
|
-
box-shadow: 0 0 rgba(0, 0, 0, 0);
|
|
259
|
-
|
|
257
|
+
-webkit-box-shadow: 0 0 rgba(0, 0, 0, 0);
|
|
258
|
+
box-shadow: 0 0 rgba(0, 0, 0, 0);
|
|
259
|
+
-webkit-box-shadow: none;
|
|
260
|
+
box-shadow: none;
|
|
260
261
|
outline-color: inherit;
|
|
261
262
|
}
|
|
262
263
|
.e-btn-group .e-btn:focus.e-primary,
|
|
@@ -269,8 +270,10 @@
|
|
|
269
270
|
border-color: #0078d4;
|
|
270
271
|
color: #fff;
|
|
271
272
|
outline: 1px solid;
|
|
272
|
-
box-shadow: 0 0 rgba(0, 0, 0, 0);
|
|
273
|
-
|
|
273
|
+
-webkit-box-shadow: 0 0 rgba(0, 0, 0, 0);
|
|
274
|
+
box-shadow: 0 0 rgba(0, 0, 0, 0);
|
|
275
|
+
-webkit-box-shadow: none;
|
|
276
|
+
box-shadow: none;
|
|
274
277
|
outline-color: inherit;
|
|
275
278
|
}
|
|
276
279
|
.e-btn-group .e-btn:focus.e-success,
|
|
@@ -282,8 +285,10 @@
|
|
|
282
285
|
background: #0a5f0a;
|
|
283
286
|
border-color: #0b6a0b;
|
|
284
287
|
color: #fff;
|
|
285
|
-
box-shadow: 0 0 rgba(0, 0, 0, 0);
|
|
286
|
-
|
|
288
|
+
-webkit-box-shadow: 0 0 rgba(0, 0, 0, 0);
|
|
289
|
+
box-shadow: 0 0 rgba(0, 0, 0, 0);
|
|
290
|
+
-webkit-box-shadow: none;
|
|
291
|
+
box-shadow: none;
|
|
287
292
|
outline-color: inherit;
|
|
288
293
|
}
|
|
289
294
|
.e-btn-group .e-btn:focus.e-info,
|
|
@@ -295,8 +300,10 @@
|
|
|
295
300
|
background: #03767a;
|
|
296
301
|
border-color: #038387;
|
|
297
302
|
color: #fff;
|
|
298
|
-
box-shadow: 0 0 rgba(0, 0, 0, 0);
|
|
299
|
-
|
|
303
|
+
-webkit-box-shadow: 0 0 rgba(0, 0, 0, 0);
|
|
304
|
+
box-shadow: 0 0 rgba(0, 0, 0, 0);
|
|
305
|
+
-webkit-box-shadow: none;
|
|
306
|
+
box-shadow: none;
|
|
300
307
|
outline-color: inherit;
|
|
301
308
|
}
|
|
302
309
|
.e-btn-group .e-btn:focus.e-warning,
|
|
@@ -308,8 +315,10 @@
|
|
|
308
315
|
background: #cf6228;
|
|
309
316
|
border-color: #ca5010;
|
|
310
317
|
color: #fff;
|
|
311
|
-
box-shadow: 0 0 rgba(0, 0, 0, 0);
|
|
312
|
-
|
|
318
|
+
-webkit-box-shadow: 0 0 rgba(0, 0, 0, 0);
|
|
319
|
+
box-shadow: 0 0 rgba(0, 0, 0, 0);
|
|
320
|
+
-webkit-box-shadow: none;
|
|
321
|
+
box-shadow: none;
|
|
313
322
|
outline-color: inherit;
|
|
314
323
|
}
|
|
315
324
|
.e-btn-group .e-btn:focus.e-danger,
|
|
@@ -321,8 +330,10 @@
|
|
|
321
330
|
background: #bc2f32;
|
|
322
331
|
border-color: #d13438;
|
|
323
332
|
color: #fff;
|
|
324
|
-
box-shadow: 0 0 rgba(0, 0, 0, 0);
|
|
325
|
-
|
|
333
|
+
-webkit-box-shadow: 0 0 rgba(0, 0, 0, 0);
|
|
334
|
+
box-shadow: 0 0 rgba(0, 0, 0, 0);
|
|
335
|
+
-webkit-box-shadow: none;
|
|
336
|
+
box-shadow: none;
|
|
326
337
|
outline-color: inherit;
|
|
327
338
|
}
|
|
328
339
|
.e-btn-group .e-btn:focus.e-link,
|
|
@@ -336,7 +347,8 @@
|
|
|
336
347
|
color: #0060aa;
|
|
337
348
|
background-color: transparent;
|
|
338
349
|
border-color: transparent;
|
|
339
|
-
box-shadow: none;
|
|
350
|
+
-webkit-box-shadow: none;
|
|
351
|
+
box-shadow: none;
|
|
340
352
|
outline: none;
|
|
341
353
|
}
|
|
342
354
|
.e-btn-group .e-btn:focus.e-outline,
|
|
@@ -345,8 +357,10 @@
|
|
|
345
357
|
.e-css.e-btn-group .e-btn:focus.e-outline,
|
|
346
358
|
.e-css.e-btn-group input:focus-visible + label.e-btn.e-outline,
|
|
347
359
|
.e-css.e-btn-group input:focus + label.e-btn.e-outline {
|
|
348
|
-
box-shadow: 0 0 rgba(0, 0, 0, 0);
|
|
349
|
-
|
|
360
|
+
-webkit-box-shadow: 0 0 rgba(0, 0, 0, 0);
|
|
361
|
+
box-shadow: 0 0 rgba(0, 0, 0, 0);
|
|
362
|
+
-webkit-box-shadow: none;
|
|
363
|
+
box-shadow: none;
|
|
350
364
|
}
|
|
351
365
|
.e-btn-group .e-btn:focus.e-outline.e-primary,
|
|
352
366
|
.e-btn-group input:focus-visible + label.e-btn.e-outline.e-primary,
|
|
@@ -354,7 +368,8 @@
|
|
|
354
368
|
.e-css.e-btn-group .e-btn:focus.e-outline.e-primary,
|
|
355
369
|
.e-css.e-btn-group input:focus-visible + label.e-btn.e-outline.e-primary,
|
|
356
370
|
.e-css.e-btn-group input:focus + label.e-btn.e-outline.e-primary {
|
|
357
|
-
box-shadow: none;
|
|
371
|
+
-webkit-box-shadow: none;
|
|
372
|
+
box-shadow: none;
|
|
358
373
|
}
|
|
359
374
|
.e-btn-group .e-btn:focus.e-outline.e-success,
|
|
360
375
|
.e-btn-group input:focus-visible + label.e-btn.e-outline.e-success,
|
|
@@ -362,7 +377,8 @@
|
|
|
362
377
|
.e-css.e-btn-group .e-btn:focus.e-outline.e-success,
|
|
363
378
|
.e-css.e-btn-group input:focus-visible + label.e-btn.e-outline.e-success,
|
|
364
379
|
.e-css.e-btn-group input:focus + label.e-btn.e-outline.e-success {
|
|
365
|
-
box-shadow: none;
|
|
380
|
+
-webkit-box-shadow: none;
|
|
381
|
+
box-shadow: none;
|
|
366
382
|
}
|
|
367
383
|
.e-btn-group .e-btn:focus.e-outline.e-info,
|
|
368
384
|
.e-btn-group input:focus-visible + label.e-btn.e-outline.e-info,
|
|
@@ -370,7 +386,8 @@
|
|
|
370
386
|
.e-css.e-btn-group .e-btn:focus.e-outline.e-info,
|
|
371
387
|
.e-css.e-btn-group input:focus-visible + label.e-btn.e-outline.e-info,
|
|
372
388
|
.e-css.e-btn-group input:focus + label.e-btn.e-outline.e-info {
|
|
373
|
-
box-shadow: none;
|
|
389
|
+
-webkit-box-shadow: none;
|
|
390
|
+
box-shadow: none;
|
|
374
391
|
}
|
|
375
392
|
.e-btn-group .e-btn:focus.e-outline.e-warning,
|
|
376
393
|
.e-btn-group input:focus-visible + label.e-btn.e-outline.e-warning,
|
|
@@ -378,7 +395,8 @@
|
|
|
378
395
|
.e-css.e-btn-group .e-btn:focus.e-outline.e-warning,
|
|
379
396
|
.e-css.e-btn-group input:focus-visible + label.e-btn.e-outline.e-warning,
|
|
380
397
|
.e-css.e-btn-group input:focus + label.e-btn.e-outline.e-warning {
|
|
381
|
-
box-shadow: none;
|
|
398
|
+
-webkit-box-shadow: none;
|
|
399
|
+
box-shadow: none;
|
|
382
400
|
}
|
|
383
401
|
.e-btn-group .e-btn:focus.e-outline.e-danger,
|
|
384
402
|
.e-btn-group input:focus-visible + label.e-btn.e-outline.e-danger,
|
|
@@ -386,7 +404,8 @@
|
|
|
386
404
|
.e-css.e-btn-group .e-btn:focus.e-outline.e-danger,
|
|
387
405
|
.e-css.e-btn-group input:focus-visible + label.e-btn.e-outline.e-danger,
|
|
388
406
|
.e-css.e-btn-group input:focus + label.e-btn.e-outline.e-danger {
|
|
389
|
-
box-shadow: none;
|
|
407
|
+
-webkit-box-shadow: none;
|
|
408
|
+
box-shadow: none;
|
|
390
409
|
}
|
|
391
410
|
.e-btn-group .e-btn:active,
|
|
392
411
|
.e-btn-group input:active + label.e-btn,
|
|
@@ -397,7 +416,8 @@
|
|
|
397
416
|
background: #edebe9;
|
|
398
417
|
border-color: #8a8886;
|
|
399
418
|
color: #323130;
|
|
400
|
-
box-shadow: none;
|
|
419
|
+
-webkit-box-shadow: none;
|
|
420
|
+
box-shadow: none;
|
|
401
421
|
}
|
|
402
422
|
.e-btn-group .e-btn:active.e-primary,
|
|
403
423
|
.e-btn-group input:active + label.e-btn.e-primary,
|
|
@@ -408,7 +428,8 @@
|
|
|
408
428
|
background: #0060aa;
|
|
409
429
|
border-color: #0060aa;
|
|
410
430
|
color: #fff;
|
|
411
|
-
box-shadow: none;
|
|
431
|
+
-webkit-box-shadow: none;
|
|
432
|
+
box-shadow: none;
|
|
412
433
|
}
|
|
413
434
|
.e-btn-group .e-btn:active.e-success,
|
|
414
435
|
.e-btn-group input:active + label.e-btn.e-success,
|
|
@@ -419,7 +440,8 @@
|
|
|
419
440
|
background: #095509;
|
|
420
441
|
border-color: #095509;
|
|
421
442
|
color: #fff;
|
|
422
|
-
box-shadow: none;
|
|
443
|
+
-webkit-box-shadow: none;
|
|
444
|
+
box-shadow: none;
|
|
423
445
|
}
|
|
424
446
|
.e-btn-group .e-btn:active.e-info,
|
|
425
447
|
.e-btn-group input:active + label.e-btn.e-info,
|
|
@@ -430,7 +452,8 @@
|
|
|
430
452
|
background: #359c9f;
|
|
431
453
|
color: #fff;
|
|
432
454
|
border-color: #359c9f;
|
|
433
|
-
box-shadow: none;
|
|
455
|
+
-webkit-box-shadow: none;
|
|
456
|
+
box-shadow: none;
|
|
434
457
|
}
|
|
435
458
|
.e-btn-group .e-btn:active.e-warning,
|
|
436
459
|
.e-btn-group input:active + label.e-btn.e-warning,
|
|
@@ -441,7 +464,8 @@
|
|
|
441
464
|
background: #d57340;
|
|
442
465
|
border-color: #d57340;
|
|
443
466
|
color: #fff;
|
|
444
|
-
box-shadow: none;
|
|
467
|
+
-webkit-box-shadow: none;
|
|
468
|
+
box-shadow: none;
|
|
445
469
|
}
|
|
446
470
|
.e-btn-group .e-btn:active.e-danger,
|
|
447
471
|
.e-btn-group input:active + label.e-btn.e-danger,
|
|
@@ -452,7 +476,8 @@
|
|
|
452
476
|
background: #a72a2d;
|
|
453
477
|
border-color: #a72a2d;
|
|
454
478
|
color: #fff;
|
|
455
|
-
box-shadow: none;
|
|
479
|
+
-webkit-box-shadow: none;
|
|
480
|
+
box-shadow: none;
|
|
456
481
|
}
|
|
457
482
|
.e-btn-group .e-btn:active.e-outline,
|
|
458
483
|
.e-btn-group input:active + label.e-btn.e-outline,
|
|
@@ -462,7 +487,8 @@
|
|
|
462
487
|
.e-css.e-btn-group input:checked + label.e-btn.e-outline {
|
|
463
488
|
background: #edebe9;
|
|
464
489
|
border-color: #8a8886;
|
|
465
|
-
box-shadow: none;
|
|
490
|
+
-webkit-box-shadow: none;
|
|
491
|
+
box-shadow: none;
|
|
466
492
|
color: #323130;
|
|
467
493
|
}
|
|
468
494
|
.e-btn-group .e-btn:active.e-outline.e-primary,
|
|
@@ -473,7 +499,8 @@
|
|
|
473
499
|
.e-css.e-btn-group input:checked + label.e-btn.e-outline.e-primary {
|
|
474
500
|
background: #0060aa;
|
|
475
501
|
border-color: #0078d4;
|
|
476
|
-
box-shadow: none;
|
|
502
|
+
-webkit-box-shadow: none;
|
|
503
|
+
box-shadow: none;
|
|
477
504
|
color: #fff;
|
|
478
505
|
}
|
|
479
506
|
.e-btn-group .e-btn:active.e-outline.e-success,
|
|
@@ -484,7 +511,8 @@
|
|
|
484
511
|
.e-css.e-btn-group input:checked + label.e-btn.e-outline.e-success {
|
|
485
512
|
background: #095509;
|
|
486
513
|
border-color: #095509;
|
|
487
|
-
box-shadow: none;
|
|
514
|
+
-webkit-box-shadow: none;
|
|
515
|
+
box-shadow: none;
|
|
488
516
|
color: #fff;
|
|
489
517
|
}
|
|
490
518
|
.e-btn-group .e-btn:active.e-outline.e-info,
|
|
@@ -495,7 +523,8 @@
|
|
|
495
523
|
.e-css.e-btn-group input:checked + label.e-btn.e-outline.e-info {
|
|
496
524
|
background: #359c9f;
|
|
497
525
|
border-color: #359c9f;
|
|
498
|
-
box-shadow: none;
|
|
526
|
+
-webkit-box-shadow: none;
|
|
527
|
+
box-shadow: none;
|
|
499
528
|
color: #fff;
|
|
500
529
|
}
|
|
501
530
|
.e-btn-group .e-btn:active.e-outline.e-warning,
|
|
@@ -506,7 +535,8 @@
|
|
|
506
535
|
.e-css.e-btn-group input:checked + label.e-btn.e-outline.e-warning {
|
|
507
536
|
background: #d57340;
|
|
508
537
|
border-color: #d57340;
|
|
509
|
-
box-shadow: none;
|
|
538
|
+
-webkit-box-shadow: none;
|
|
539
|
+
box-shadow: none;
|
|
510
540
|
color: #fff;
|
|
511
541
|
}
|
|
512
542
|
.e-btn-group .e-btn:active.e-outline.e-danger,
|
|
@@ -517,7 +547,8 @@
|
|
|
517
547
|
.e-css.e-btn-group input:checked + label.e-btn.e-outline.e-danger {
|
|
518
548
|
background: #a72a2d;
|
|
519
549
|
border-color: #a72a2d;
|
|
520
|
-
box-shadow: none;
|
|
550
|
+
-webkit-box-shadow: none;
|
|
551
|
+
box-shadow: none;
|
|
521
552
|
color: #fff;
|
|
522
553
|
}
|
|
523
554
|
.e-btn-group .e-btn:disabled,
|
|
@@ -526,7 +557,8 @@
|
|
|
526
557
|
.e-css.e-btn-group input:disabled + label.e-btn {
|
|
527
558
|
background-color: #f3f2f1;
|
|
528
559
|
border-color: #f3f2f1;
|
|
529
|
-
box-shadow: none;
|
|
560
|
+
-webkit-box-shadow: none;
|
|
561
|
+
box-shadow: none;
|
|
530
562
|
color: #a19f9d;
|
|
531
563
|
border-color: #8a8886;
|
|
532
564
|
}
|
|
@@ -536,7 +568,8 @@
|
|
|
536
568
|
.e-css.e-btn-group input:disabled + label.e-btn.e-primary {
|
|
537
569
|
background: #f3f2f1;
|
|
538
570
|
border-color: #f3f2f1;
|
|
539
|
-
box-shadow: none;
|
|
571
|
+
-webkit-box-shadow: none;
|
|
572
|
+
box-shadow: none;
|
|
540
573
|
color: #a19f9d;
|
|
541
574
|
outline: none;
|
|
542
575
|
border-color: #0078d4;
|
|
@@ -547,7 +580,8 @@
|
|
|
547
580
|
.e-css.e-btn-group input:disabled + label.e-btn.e-success {
|
|
548
581
|
background: #f3f2f1;
|
|
549
582
|
border-color: #f3f2f1;
|
|
550
|
-
box-shadow: none;
|
|
583
|
+
-webkit-box-shadow: none;
|
|
584
|
+
box-shadow: none;
|
|
551
585
|
color: #a19f9d;
|
|
552
586
|
outline: none;
|
|
553
587
|
border-color: #0b6a0b;
|
|
@@ -558,7 +592,8 @@
|
|
|
558
592
|
.e-css.e-btn-group input:disabled + label.e-btn.e-info {
|
|
559
593
|
background: #f3f2f1;
|
|
560
594
|
border-color: #f3f2f1;
|
|
561
|
-
box-shadow: none;
|
|
595
|
+
-webkit-box-shadow: none;
|
|
596
|
+
box-shadow: none;
|
|
562
597
|
color: #a19f9d;
|
|
563
598
|
outline: none;
|
|
564
599
|
border-color: #038387;
|
|
@@ -569,7 +604,8 @@
|
|
|
569
604
|
.e-css.e-btn-group input:disabled + label.e-btn.e-warning {
|
|
570
605
|
background: #f3f2f1;
|
|
571
606
|
border-color: #f3f2f1;
|
|
572
|
-
box-shadow: none;
|
|
607
|
+
-webkit-box-shadow: none;
|
|
608
|
+
box-shadow: none;
|
|
573
609
|
color: #a19f9d;
|
|
574
610
|
outline: none;
|
|
575
611
|
border-color: #ca5010;
|
|
@@ -580,7 +616,8 @@
|
|
|
580
616
|
.e-css.e-btn-group input:disabled + label.e-btn.e-danger {
|
|
581
617
|
background: #f3f2f1;
|
|
582
618
|
border-color: #f3f2f1;
|
|
583
|
-
box-shadow: none;
|
|
619
|
+
-webkit-box-shadow: none;
|
|
620
|
+
box-shadow: none;
|
|
584
621
|
color: #a19f9d;
|
|
585
622
|
outline: none;
|
|
586
623
|
border-color: #d13438;
|
|
@@ -591,7 +628,8 @@
|
|
|
591
628
|
.e-css.e-btn-group input:disabled + label.e-btn.e-link {
|
|
592
629
|
color: #a19f9d;
|
|
593
630
|
background: transparent;
|
|
594
|
-
box-shadow: none;
|
|
631
|
+
-webkit-box-shadow: none;
|
|
632
|
+
box-shadow: none;
|
|
595
633
|
text-decoration: none;
|
|
596
634
|
outline: none;
|
|
597
635
|
border-color: transparent;
|
|
@@ -602,7 +640,8 @@
|
|
|
602
640
|
.e-css.e-btn-group input:disabled + label.e-btn.e-outline {
|
|
603
641
|
background: transparent;
|
|
604
642
|
border-color: #f3f2f1;
|
|
605
|
-
box-shadow: none;
|
|
643
|
+
-webkit-box-shadow: none;
|
|
644
|
+
box-shadow: none;
|
|
606
645
|
color: #a19f9d;
|
|
607
646
|
border-color: #8a8886;
|
|
608
647
|
}
|
|
@@ -612,7 +651,8 @@
|
|
|
612
651
|
.e-css.e-btn-group input:disabled + label.e-btn.e-outline.e-primary {
|
|
613
652
|
background: transparent;
|
|
614
653
|
border-color: #f3f2f1;
|
|
615
|
-
box-shadow: none;
|
|
654
|
+
-webkit-box-shadow: none;
|
|
655
|
+
box-shadow: none;
|
|
616
656
|
color: #a19f9d;
|
|
617
657
|
border-color: #0078d4;
|
|
618
658
|
}
|
|
@@ -622,7 +662,8 @@
|
|
|
622
662
|
.e-css.e-btn-group input:disabled + label.e-btn.e-outline.e-success {
|
|
623
663
|
background: transparent;
|
|
624
664
|
border-color: #f3f2f1;
|
|
625
|
-
box-shadow: none;
|
|
665
|
+
-webkit-box-shadow: none;
|
|
666
|
+
box-shadow: none;
|
|
626
667
|
color: #a19f9d;
|
|
627
668
|
border-color: #0b6a0b;
|
|
628
669
|
}
|
|
@@ -632,7 +673,8 @@
|
|
|
632
673
|
.e-css.e-btn-group input:disabled + label.e-btn.e-outline.e-info {
|
|
633
674
|
background: transparent;
|
|
634
675
|
border-color: #f3f2f1;
|
|
635
|
-
box-shadow: none;
|
|
676
|
+
-webkit-box-shadow: none;
|
|
677
|
+
box-shadow: none;
|
|
636
678
|
color: #a19f9d;
|
|
637
679
|
border-color: #038387;
|
|
638
680
|
}
|
|
@@ -642,7 +684,8 @@
|
|
|
642
684
|
.e-css.e-btn-group input:disabled + label.e-btn.e-outline.e-warning {
|
|
643
685
|
background: transparent;
|
|
644
686
|
border-color: #f3f2f1;
|
|
645
|
-
box-shadow: none;
|
|
687
|
+
-webkit-box-shadow: none;
|
|
688
|
+
box-shadow: none;
|
|
646
689
|
color: #a19f9d;
|
|
647
690
|
border-color: #ca5010;
|
|
648
691
|
}
|
|
@@ -652,7 +695,8 @@
|
|
|
652
695
|
.e-css.e-btn-group input:disabled + label.e-btn.e-outline.e-danger {
|
|
653
696
|
background: transparent;
|
|
654
697
|
border-color: #f3f2f1;
|
|
655
|
-
box-shadow: none;
|
|
698
|
+
-webkit-box-shadow: none;
|
|
699
|
+
box-shadow: none;
|
|
656
700
|
color: #a19f9d;
|
|
657
701
|
border-color: #d13438;
|
|
658
702
|
}
|