@syncfusion/ej2-splitbuttons 20.1.55 → 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.
Files changed (66) hide show
  1. package/CHANGELOG.md +0 -6
  2. package/dist/ej2-splitbuttons.umd.min.js +2 -2
  3. package/dist/ej2-splitbuttons.umd.min.js.map +1 -1
  4. package/dist/es6/ej2-splitbuttons.es2015.js +3 -2
  5. package/dist/es6/ej2-splitbuttons.es2015.js.map +1 -1
  6. package/dist/es6/ej2-splitbuttons.es5.js +3 -2
  7. package/dist/es6/ej2-splitbuttons.es5.js.map +1 -1
  8. package/dist/global/ej2-splitbuttons.min.js +2 -2
  9. package/dist/global/ej2-splitbuttons.min.js.map +1 -1
  10. package/dist/global/index.d.ts +1 -1
  11. package/helpers/e2e/dropdownbuttonHelper.js +55 -38
  12. package/helpers/e2e/index.js +10 -8
  13. package/helpers/e2e/progressbuttonHelper.js +52 -35
  14. package/helpers/e2e/splitbuttonHelper.js +58 -41
  15. package/package.json +7 -7
  16. package/src/drop-down-button/drop-down-button.js +3 -2
  17. package/styles/bootstrap-dark.css +0 -8
  18. package/styles/bootstrap.css +0 -8
  19. package/styles/bootstrap4.css +0 -8
  20. package/styles/bootstrap5-dark.css +14 -0
  21. package/styles/bootstrap5.css +14 -0
  22. package/styles/button-group/_fusionnew-definition.scss +31 -0
  23. package/styles/button-group/_layout.scss +1 -1
  24. package/styles/button-group/_material3-definition.scss +31 -0
  25. package/styles/button-group/_theme.scss +48 -12
  26. package/styles/button-group/bootstrap-dark.css +0 -8
  27. package/styles/button-group/bootstrap.css +0 -8
  28. package/styles/button-group/bootstrap4.css +0 -8
  29. package/styles/button-group/bootstrap5-dark.css +12 -0
  30. package/styles/button-group/bootstrap5.css +12 -0
  31. package/styles/button-group/fabric-dark.css +0 -8
  32. package/styles/button-group/fabric.css +0 -8
  33. package/styles/button-group/fluent-dark.css +15 -23
  34. package/styles/button-group/fluent.css +0 -8
  35. package/styles/button-group/highcontrast-light.css +0 -8
  36. package/styles/button-group/highcontrast.css +0 -8
  37. package/styles/button-group/material-dark.css +0 -8
  38. package/styles/button-group/material.css +0 -8
  39. package/styles/button-group/tailwind-dark.css +8 -12
  40. package/styles/button-group/tailwind.css +8 -12
  41. package/styles/drop-down-button/_fusionnew-definition.scss +51 -0
  42. package/styles/drop-down-button/_layout.scss +4 -2
  43. package/styles/drop-down-button/_material3-definition.scss +51 -0
  44. package/styles/drop-down-button/bootstrap5-dark.css +2 -0
  45. package/styles/drop-down-button/bootstrap5.css +2 -0
  46. package/styles/drop-down-button/icons/_fusionnew.scss +10 -0
  47. package/styles/drop-down-button/icons/_material3.scss +10 -0
  48. package/styles/drop-down-button/tailwind-dark.css +2 -0
  49. package/styles/drop-down-button/tailwind.css +2 -0
  50. package/styles/fabric-dark.css +0 -8
  51. package/styles/fabric.css +0 -8
  52. package/styles/fluent-dark.css +41 -49
  53. package/styles/fluent.css +1 -9
  54. package/styles/highcontrast-light.css +0 -8
  55. package/styles/highcontrast.css +0 -8
  56. package/styles/material-dark.css +0 -8
  57. package/styles/material.css +0 -8
  58. package/styles/progress-button/_fluent-definition.scss +1 -1
  59. package/styles/progress-button/_fusionnew-definition.scss +21 -0
  60. package/styles/progress-button/_material3-definition.scss +21 -0
  61. package/styles/progress-button/fluent-dark.css +26 -26
  62. package/styles/progress-button/fluent.css +1 -1
  63. package/styles/split-button/_fusionnew-definition.scss +25 -0
  64. package/styles/split-button/_material3-definition.scss +25 -0
  65. package/styles/tailwind-dark.css +10 -12
  66. package/styles/tailwind.css +10 -12
@@ -12,7 +12,7 @@
12
12
  input:focus+label.e-btn,
13
13
  .e-btn:focus,
14
14
  .e-btn:hover {
15
- @if $skin-name != 'tailwind' and $skin-name != 'tailwind-dark' {
15
+ @if $skin-name == 'tailwind' or $skin-name == 'bootstrap5' {
16
16
  z-index: 2;
17
17
  }
18
18
  }
@@ -0,0 +1,31 @@
1
+ //layout variables
2
+ $btn-grp-margin: -1px !default;
3
+ $btn-grp-margin-left: -1px !default;
4
+ $btn-grp-wrapper-border: 4px !default;
5
+ $btn-grp-round-radius: 20px !default;
6
+ $btn-grp-icon-font-size: 16px !default;
7
+ $btn-grp-icon-font-size-bigger: 20px !default;
8
+
9
+ //Normal Outline GroupButton
10
+ $btn-grp-outline-focus-border-color: $secondary-border-color !default;
11
+ $btn-grp-outline-focus-color: inherit !default;
12
+
13
+ //Outline Primary
14
+ $btn-grp-outline-primary-focus-border-color: $primary !default;
15
+ $btn-grp-outline-focus-primary-color: inherit !default;
16
+
17
+ //Outline Success
18
+ $btn-grp-outline-success-focus-border-color: $btn-success-focus-border-color !default;
19
+ $btn-grp-outline-focus-success-color: inherit !default;
20
+
21
+ //Outline Info
22
+ $btn-grp-outline-info-focus-border-color: $btn-info-focus-border-color !default;
23
+ $btn-grp-outline-focus-info-color: inherit !default;
24
+
25
+ //Outline warning
26
+ $btn-grp-outline-warning-focus-border-color: $btn-warning-focus-border-color !default;
27
+ $btn-grp-outline-focus-warning-color: inherit !default;
28
+
29
+ //Outline danger
30
+ $btn-grp-outline-danger-focus-border-color: $btn-danger-focus-border-color !default;
31
+ $btn-grp-outline-focus-danger-color: inherit !default;
@@ -22,9 +22,12 @@
22
22
  .e-btn:focus,
23
23
  input:focus+label.e-btn {
24
24
  @include button-focus;
25
- @if $skin-name != 'bootstrap5' {
25
+ @if $skin-name != 'bootstrap5' and $skin-name != 'tailwind' {
26
26
  box-shadow: none;
27
27
  }
28
+ @if $skin-name == 'bootstrap5' {
29
+ border-color: $btn-focus-bgcolor;
30
+ }
28
31
  outline-color: $btn-grp-outline-focus-color;
29
32
  @if $skin-name == 'fabric' {
30
33
  outline-offset: -2px;
@@ -36,9 +39,12 @@
36
39
 
37
40
  &.e-primary {
38
41
  @include primary-focus;
39
- @if $skin-name != 'bootstrap5' {
42
+ @if $skin-name != 'bootstrap5' and $skin-name != 'tailwind' {
40
43
  box-shadow: none;
41
44
  }
45
+ @if $skin-name == 'bootstrap5' {
46
+ border-color: $btn-primary-focus-bgcolor;
47
+ }
42
48
  outline-color: $btn-grp-outline-focus-primary-color;
43
49
  @if $skin-name == 'fabric' {
44
50
  border-color: transparent;
@@ -47,9 +53,12 @@
47
53
 
48
54
  &.e-success {
49
55
  @include success-focus;
50
- @if $skin-name != 'bootstrap5' {
56
+ @if $skin-name != 'bootstrap5' and $skin-name != 'tailwind' {
51
57
  box-shadow: none;
52
58
  }
59
+ @if $skin-name == 'bootstrap5' {
60
+ border-color: $btn-success-focus-bgcolor;
61
+ }
53
62
  outline-color: $btn-grp-outline-focus-success-color;
54
63
  @if $skin-name == 'fabric' {
55
64
  border-color: transparent;
@@ -58,9 +67,12 @@
58
67
 
59
68
  &.e-info {
60
69
  @include info-focus;
61
- @if $skin-name != 'bootstrap5' {
70
+ @if $skin-name != 'bootstrap5' and $skin-name != 'tailwind' {
62
71
  box-shadow: none;
63
72
  }
73
+ @if $skin-name == 'bootstrap5' {
74
+ border-color: $btn-info-focus-bgcolor;
75
+ }
64
76
  outline-color: $btn-grp-outline-focus-info-color;
65
77
  @if $skin-name == 'fabric' {
66
78
  border-color: transparent;
@@ -69,9 +81,12 @@
69
81
 
70
82
  &.e-warning {
71
83
  @include warning-focus;
72
- @if $skin-name != 'bootstrap5' {
84
+ @if $skin-name != 'bootstrap5' and $skin-name != 'tailwind' {
73
85
  box-shadow: none;
74
86
  }
87
+ @if $skin-name == 'bootstrap5' {
88
+ border-color: $btn-warning-focus-bgcolor;
89
+ }
75
90
  outline-color: $btn-grp-outline-focus-warning-color;
76
91
  @if $skin-name == 'fabric' {
77
92
  border-color: transparent;
@@ -80,9 +95,12 @@
80
95
 
81
96
  &.e-danger {
82
97
  @include danger-focus;
83
- @if $skin-name != 'bootstrap5' {
98
+ @if $skin-name != 'bootstrap5' and $skin-name != 'tailwind' {
84
99
  box-shadow: none;
85
100
  }
101
+ @if $skin-name == 'bootstrap5' {
102
+ border-color: $btn-danger-focus-bgcolor;
103
+ }
86
104
  outline-color: $btn-grp-outline-focus-danger-color;
87
105
  @if $skin-name == 'fabric' {
88
106
  border-color: transparent;
@@ -99,43 +117,61 @@
99
117
 
100
118
  &.e-outline {
101
119
  @include outline-focus;
102
- @if $skin-name != 'bootstrap5' {
120
+ @if $skin-name != 'bootstrap5' and $skin-name != 'tailwind' {
103
121
  box-shadow: none;
104
122
  }
123
+ @if $skin-name == 'bootstrap5' {
124
+ border-color: $btn-outline-focus-bgcolor;
125
+ }
105
126
 
106
127
  &.e-primary {
107
128
  @include outline-primary-focus;
108
- @if $skin-name != 'bootstrap5' {
129
+ @if $skin-name != 'bootstrap5' and $skin-name != 'tailwind' {
109
130
  box-shadow: none;
110
131
  }
132
+ @if $skin-name == 'bootstrap5' {
133
+ border-color: $btn-outline-primary-focus-bgcolor;
134
+ }
111
135
  }
112
136
 
113
137
  &.e-success {
114
138
  @include outline-success-focus;
115
- @if $skin-name != 'bootstrap5' {
139
+ @if $skin-name != 'bootstrap5' and $skin-name != 'tailwind' {
116
140
  box-shadow: none;
117
141
  }
142
+ @if $skin-name == 'bootstrap5' {
143
+ border-color: $btn-success-focus-bgcolor;
144
+ }
118
145
  }
119
146
 
120
147
  &.e-info {
121
148
  @include outline-info-focus;
122
- @if $skin-name != 'bootstrap5' {
149
+ @if $skin-name != 'bootstrap5' and $skin-name != 'tailwind' {
123
150
  box-shadow: none;
124
151
  }
152
+ @if $skin-name == 'bootstrap5' {
153
+ border-color: $btn-info-hover-bgcolor;
154
+ }
125
155
  }
126
156
 
127
157
  &.e-warning {
128
158
  @include outline-warning-focus;
129
- @if $skin-name != 'bootstrap5' {
159
+ @if $skin-name != 'bootstrap5' and $skin-name != 'tailwind' {
130
160
  box-shadow: none;
131
161
  }
162
+ @if $skin-name == 'bootstrap5' {
163
+ border-color: $btn-warning-hover-bgcolor;
164
+ }
132
165
  }
133
166
 
134
167
  &.e-danger {
135
168
  @include outline-danger-focus;
136
- @if $skin-name != 'bootstrap5' {
169
+ @if $skin-name != 'bootstrap5' and $skin-name != 'tailwind' {
137
170
  box-shadow: none;
138
171
  }
172
+ @if $skin-name == 'bootstrap5' {
173
+ border-color: $btn-danger-hover-bgcolor;
174
+ }
139
175
  }
140
176
  }
141
177
  }
@@ -7,14 +7,6 @@
7
7
  flex-direction: row;
8
8
  position: relative;
9
9
  }
10
- *.e-btn-group input:focus + label.e-btn,
11
- *.e-btn-group .e-btn:focus,
12
- *.e-btn-group .e-btn:hover,
13
- *.e-css.e-btn-group input:focus + label.e-btn,
14
- *.e-css.e-btn-group .e-btn:focus,
15
- *.e-css.e-btn-group .e-btn:hover {
16
- z-index: 2;
17
- }
18
10
  *.e-btn-group input + label.e-btn,
19
11
  *.e-css.e-btn-group input + label.e-btn {
20
12
  margin-bottom: 0;
@@ -7,14 +7,6 @@
7
7
  flex-direction: row;
8
8
  position: relative;
9
9
  }
10
- *.e-btn-group input:focus + label.e-btn,
11
- *.e-btn-group .e-btn:focus,
12
- *.e-btn-group .e-btn:hover,
13
- *.e-css.e-btn-group input:focus + label.e-btn,
14
- *.e-css.e-btn-group .e-btn:focus,
15
- *.e-css.e-btn-group .e-btn:hover {
16
- z-index: 2;
17
- }
18
10
  *.e-btn-group input + label.e-btn,
19
11
  *.e-css.e-btn-group input + label.e-btn {
20
12
  margin-bottom: 0;
@@ -7,14 +7,6 @@
7
7
  flex-direction: row;
8
8
  position: relative;
9
9
  }
10
- *.e-btn-group input:focus + label.e-btn,
11
- *.e-btn-group .e-btn:focus,
12
- *.e-btn-group .e-btn:hover,
13
- *.e-css.e-btn-group input:focus + label.e-btn,
14
- *.e-css.e-btn-group .e-btn:focus,
15
- *.e-css.e-btn-group .e-btn:hover {
16
- z-index: 2;
17
- }
18
10
  *.e-btn-group input + label.e-btn,
19
11
  *.e-css.e-btn-group input + label.e-btn {
20
12
  margin-bottom: 0;
@@ -260,6 +260,7 @@
260
260
  outline: #6c757d 0 solid;
261
261
  outline-offset: 0;
262
262
  box-shadow: 0 0 0 4px rgba(130, 138, 145, 0.5);
263
+ border-color: #5c636a;
263
264
  outline-color: inherit;
264
265
  }
265
266
  .e-btn-group .e-btn:focus.e-primary,
@@ -271,6 +272,7 @@
271
272
  color: #fff;
272
273
  outline: #6c757d 0 solid;
273
274
  box-shadow: 0 0 0 4px rgba(49, 132, 253, 0.5);
275
+ border-color: #0b5ed7;
274
276
  outline-color: inherit;
275
277
  }
276
278
  .e-btn-group .e-btn:focus.e-success,
@@ -281,6 +283,7 @@
281
283
  border-color: #198754;
282
284
  color: #fff;
283
285
  box-shadow: 0 0 0 4px rgba(66, 190, 133, 0.5);
286
+ border-color: #157347;
284
287
  outline-color: inherit;
285
288
  }
286
289
  .e-btn-group .e-btn:focus.e-info,
@@ -291,6 +294,7 @@
291
294
  border-color: #0dcaf0;
292
295
  color: #000;
293
296
  box-shadow: 0 0 0 4px rgba(49, 210, 242, 0.5);
297
+ border-color: #31d2f2;
294
298
  outline-color: inherit;
295
299
  }
296
300
  .e-btn-group .e-btn:focus.e-warning,
@@ -301,6 +305,7 @@
301
305
  border-color: #ffc107;
302
306
  color: #000;
303
307
  box-shadow: 0 0 0 4px rgba(255, 202, 44, 0.5);
308
+ border-color: #ffca2c;
304
309
  outline-color: inherit;
305
310
  }
306
311
  .e-btn-group .e-btn:focus.e-danger,
@@ -311,6 +316,7 @@
311
316
  border-color: #dc3545;
312
317
  color: #fff;
313
318
  box-shadow: 0 0 0 4px rgba(232, 120, 131, 0.5);
319
+ border-color: #bb2d3b;
314
320
  outline-color: inherit;
315
321
  }
316
322
  .e-btn-group .e-btn:focus.e-link,
@@ -330,36 +336,42 @@
330
336
  .e-css.e-btn-group .e-btn:focus.e-outline,
331
337
  .e-css.e-btn-group input:focus + label.e-btn.e-outline {
332
338
  box-shadow: 0 0 0 4px rgba(130, 138, 145, 0.5);
339
+ border-color: #5c636a;
333
340
  }
334
341
  .e-btn-group .e-btn:focus.e-outline.e-primary,
335
342
  .e-btn-group input:focus + label.e-btn.e-outline.e-primary,
336
343
  .e-css.e-btn-group .e-btn:focus.e-outline.e-primary,
337
344
  .e-css.e-btn-group input:focus + label.e-btn.e-outline.e-primary {
338
345
  box-shadow: 0 0 0 4px rgba(49, 132, 253, 0.5);
346
+ border-color: #0d6efd;
339
347
  }
340
348
  .e-btn-group .e-btn:focus.e-outline.e-success,
341
349
  .e-btn-group input:focus + label.e-btn.e-outline.e-success,
342
350
  .e-css.e-btn-group .e-btn:focus.e-outline.e-success,
343
351
  .e-css.e-btn-group input:focus + label.e-btn.e-outline.e-success {
344
352
  box-shadow: 0 0 0 4px rgba(66, 190, 133, 0.5);
353
+ border-color: #157347;
345
354
  }
346
355
  .e-btn-group .e-btn:focus.e-outline.e-info,
347
356
  .e-btn-group input:focus + label.e-btn.e-outline.e-info,
348
357
  .e-css.e-btn-group .e-btn:focus.e-outline.e-info,
349
358
  .e-css.e-btn-group input:focus + label.e-btn.e-outline.e-info {
350
359
  box-shadow: 0 0 0 4px rgba(49, 210, 242, 0.5);
360
+ border-color: #31d2f2;
351
361
  }
352
362
  .e-btn-group .e-btn:focus.e-outline.e-warning,
353
363
  .e-btn-group input:focus + label.e-btn.e-outline.e-warning,
354
364
  .e-css.e-btn-group .e-btn:focus.e-outline.e-warning,
355
365
  .e-css.e-btn-group input:focus + label.e-btn.e-outline.e-warning {
356
366
  box-shadow: 0 0 0 4px rgba(255, 202, 44, 0.5);
367
+ border-color: #ffca2c;
357
368
  }
358
369
  .e-btn-group .e-btn:focus.e-outline.e-danger,
359
370
  .e-btn-group input:focus + label.e-btn.e-outline.e-danger,
360
371
  .e-css.e-btn-group .e-btn:focus.e-outline.e-danger,
361
372
  .e-css.e-btn-group input:focus + label.e-btn.e-outline.e-danger {
362
373
  box-shadow: 0 0 0 4px rgba(232, 120, 131, 0.5);
374
+ border-color: #bb2d3b;
363
375
  }
364
376
  .e-btn-group .e-btn:active,
365
377
  .e-btn-group input:active + label.e-btn,
@@ -260,6 +260,7 @@
260
260
  outline: #6c757d 0 solid;
261
261
  outline-offset: 0;
262
262
  box-shadow: 0 0 0 4px rgba(130, 138, 145, 0.5);
263
+ border-color: #5c636a;
263
264
  outline-color: inherit;
264
265
  }
265
266
  .e-btn-group .e-btn:focus.e-primary,
@@ -271,6 +272,7 @@
271
272
  color: #fff;
272
273
  outline: #6c757d 0 solid;
273
274
  box-shadow: 0 0 0 4px rgba(49, 132, 253, 0.5);
275
+ border-color: #0b5ed7;
274
276
  outline-color: inherit;
275
277
  }
276
278
  .e-btn-group .e-btn:focus.e-success,
@@ -281,6 +283,7 @@
281
283
  border-color: #198754;
282
284
  color: #fff;
283
285
  box-shadow: 0 0 0 4px rgba(60, 153, 110, 0.5);
286
+ border-color: #157347;
284
287
  outline-color: inherit;
285
288
  }
286
289
  .e-btn-group .e-btn:focus.e-info,
@@ -291,6 +294,7 @@
291
294
  border-color: #0dcaf0;
292
295
  color: #000;
293
296
  box-shadow: 0 0 0 4px rgba(49, 210, 242, 0.5);
297
+ border-color: #31d2f2;
294
298
  outline-color: inherit;
295
299
  }
296
300
  .e-btn-group .e-btn:focus.e-warning,
@@ -301,6 +305,7 @@
301
305
  border-color: #ffc107;
302
306
  color: #000;
303
307
  box-shadow: 0 0 0 4px rgba(255, 202, 44, 0.5);
308
+ border-color: #ffca2c;
304
309
  outline-color: inherit;
305
310
  }
306
311
  .e-btn-group .e-btn:focus.e-danger,
@@ -311,6 +316,7 @@
311
316
  border-color: #dc3545;
312
317
  color: #fff;
313
318
  box-shadow: 0 0 0 4px rgba(225, 83, 97, 0.5);
319
+ border-color: #bb2d3b;
314
320
  outline-color: inherit;
315
321
  }
316
322
  .e-btn-group .e-btn:focus.e-link,
@@ -330,36 +336,42 @@
330
336
  .e-css.e-btn-group .e-btn:focus.e-outline,
331
337
  .e-css.e-btn-group input:focus + label.e-btn.e-outline {
332
338
  box-shadow: 0 0 0 4px rgba(130, 138, 145, 0.5);
339
+ border-color: #5c636a;
333
340
  }
334
341
  .e-btn-group .e-btn:focus.e-outline.e-primary,
335
342
  .e-btn-group input:focus + label.e-btn.e-outline.e-primary,
336
343
  .e-css.e-btn-group .e-btn:focus.e-outline.e-primary,
337
344
  .e-css.e-btn-group input:focus + label.e-btn.e-outline.e-primary {
338
345
  box-shadow: 0 0 0 4px rgba(49, 132, 253, 0.5);
346
+ border-color: #0d6efd;
339
347
  }
340
348
  .e-btn-group .e-btn:focus.e-outline.e-success,
341
349
  .e-btn-group input:focus + label.e-btn.e-outline.e-success,
342
350
  .e-css.e-btn-group .e-btn:focus.e-outline.e-success,
343
351
  .e-css.e-btn-group input:focus + label.e-btn.e-outline.e-success {
344
352
  box-shadow: 0 0 0 4px rgba(60, 153, 110, 0.5);
353
+ border-color: #157347;
345
354
  }
346
355
  .e-btn-group .e-btn:focus.e-outline.e-info,
347
356
  .e-btn-group input:focus + label.e-btn.e-outline.e-info,
348
357
  .e-css.e-btn-group .e-btn:focus.e-outline.e-info,
349
358
  .e-css.e-btn-group input:focus + label.e-btn.e-outline.e-info {
350
359
  box-shadow: 0 0 0 4px rgba(49, 210, 242, 0.5);
360
+ border-color: #31d2f2;
351
361
  }
352
362
  .e-btn-group .e-btn:focus.e-outline.e-warning,
353
363
  .e-btn-group input:focus + label.e-btn.e-outline.e-warning,
354
364
  .e-css.e-btn-group .e-btn:focus.e-outline.e-warning,
355
365
  .e-css.e-btn-group input:focus + label.e-btn.e-outline.e-warning {
356
366
  box-shadow: 0 0 0 4px rgba(255, 202, 44, 0.5);
367
+ border-color: #ffca2c;
357
368
  }
358
369
  .e-btn-group .e-btn:focus.e-outline.e-danger,
359
370
  .e-btn-group input:focus + label.e-btn.e-outline.e-danger,
360
371
  .e-css.e-btn-group .e-btn:focus.e-outline.e-danger,
361
372
  .e-css.e-btn-group input:focus + label.e-btn.e-outline.e-danger {
362
373
  box-shadow: 0 0 0 4px rgba(225, 83, 97, 0.5);
374
+ border-color: #bb2d3b;
363
375
  }
364
376
  .e-btn-group .e-btn:active,
365
377
  .e-btn-group input:active + label.e-btn,
@@ -7,14 +7,6 @@
7
7
  flex-direction: row;
8
8
  position: relative;
9
9
  }
10
- *.e-btn-group input:focus + label.e-btn,
11
- *.e-btn-group .e-btn:focus,
12
- *.e-btn-group .e-btn:hover,
13
- *.e-css.e-btn-group input:focus + label.e-btn,
14
- *.e-css.e-btn-group .e-btn:focus,
15
- *.e-css.e-btn-group .e-btn:hover {
16
- z-index: 2;
17
- }
18
10
  *.e-btn-group input + label.e-btn,
19
11
  *.e-css.e-btn-group input + label.e-btn {
20
12
  margin-bottom: 0;
@@ -7,14 +7,6 @@
7
7
  flex-direction: row;
8
8
  position: relative;
9
9
  }
10
- *.e-btn-group input:focus + label.e-btn,
11
- *.e-btn-group .e-btn:focus,
12
- *.e-btn-group .e-btn:hover,
13
- *.e-css.e-btn-group input:focus + label.e-btn,
14
- *.e-css.e-btn-group .e-btn:focus,
15
- *.e-css.e-btn-group .e-btn:hover {
16
- z-index: 2;
17
- }
18
10
  *.e-btn-group input + label.e-btn,
19
11
  *.e-css.e-btn-group input + label.e-btn {
20
12
  margin-bottom: 0;
@@ -7,14 +7,6 @@
7
7
  flex-direction: row;
8
8
  position: relative;
9
9
  }
10
- *.e-btn-group input:focus + label.e-btn,
11
- *.e-btn-group .e-btn:focus,
12
- *.e-btn-group .e-btn:hover,
13
- *.e-css.e-btn-group input:focus + label.e-btn,
14
- *.e-css.e-btn-group .e-btn:focus,
15
- *.e-css.e-btn-group .e-btn:hover {
16
- z-index: 2;
17
- }
18
10
  *.e-btn-group input + label.e-btn,
19
11
  *.e-css.e-btn-group input + label.e-btn {
20
12
  margin-bottom: 0;
@@ -269,7 +261,7 @@
269
261
  .e-css.e-btn-group input:focus + label.e-btn.e-primary {
270
262
  background-color: #006cbf;
271
263
  border-color: #0078d4;
272
- color: #fff;
264
+ color: #1b1a19;
273
265
  outline: 1px solid;
274
266
  box-shadow: 0 0 rgba(0, 0, 0, 0);
275
267
  box-shadow: none;
@@ -281,7 +273,7 @@
281
273
  .e-css.e-btn-group input:focus + label.e-btn.e-success {
282
274
  background-color: #0a5f0a;
283
275
  border-color: #0b6a0b;
284
- color: #fff;
276
+ color: #1b1a19;
285
277
  box-shadow: 0 0 rgba(0, 0, 0, 0);
286
278
  box-shadow: none;
287
279
  outline-color: inherit;
@@ -292,7 +284,7 @@
292
284
  .e-css.e-btn-group input:focus + label.e-btn.e-info {
293
285
  background-color: #03767a;
294
286
  border-color: #038387;
295
- color: #fff;
287
+ color: #1b1a19;
296
288
  box-shadow: 0 0 rgba(0, 0, 0, 0);
297
289
  box-shadow: none;
298
290
  outline-color: inherit;
@@ -303,7 +295,7 @@
303
295
  .e-css.e-btn-group input:focus + label.e-btn.e-warning {
304
296
  background-color: #cf6228;
305
297
  border-color: #ca5010;
306
- color: #fff;
298
+ color: #1b1a19;
307
299
  box-shadow: 0 0 rgba(0, 0, 0, 0);
308
300
  box-shadow: none;
309
301
  outline-color: inherit;
@@ -314,7 +306,7 @@
314
306
  .e-css.e-btn-group input:focus + label.e-btn.e-danger {
315
307
  background-color: #bc2f32;
316
308
  border-color: #d13438;
317
- color: #fff;
309
+ color: #1b1a19;
318
310
  box-shadow: 0 0 rgba(0, 0, 0, 0);
319
311
  box-shadow: none;
320
312
  outline-color: inherit;
@@ -387,7 +379,7 @@
387
379
  .e-css.e-btn-group input:checked + label.e-btn.e-primary {
388
380
  background-color: #0060aa;
389
381
  border-color: #0060aa;
390
- color: #fff;
382
+ color: #1b1a19;
391
383
  box-shadow: none;
392
384
  }
393
385
  .e-btn-group .e-btn:active.e-success,
@@ -398,7 +390,7 @@
398
390
  .e-css.e-btn-group input:checked + label.e-btn.e-success {
399
391
  background-color: #095509;
400
392
  border-color: #095509;
401
- color: #fff;
393
+ color: #1b1a19;
402
394
  box-shadow: none;
403
395
  }
404
396
  .e-btn-group .e-btn:active.e-info,
@@ -408,7 +400,7 @@
408
400
  .e-css.e-btn-group input:active + label.e-btn.e-info,
409
401
  .e-css.e-btn-group input:checked + label.e-btn.e-info {
410
402
  background-color: #359c9f;
411
- color: #fff;
403
+ color: #1b1a19;
412
404
  border-color: #359c9f;
413
405
  box-shadow: none;
414
406
  }
@@ -420,7 +412,7 @@
420
412
  .e-css.e-btn-group input:checked + label.e-btn.e-warning {
421
413
  background-color: #d57340;
422
414
  border-color: #d57340;
423
- color: #fff;
415
+ color: #1b1a19;
424
416
  box-shadow: none;
425
417
  }
426
418
  .e-btn-group .e-btn:active.e-danger,
@@ -431,7 +423,7 @@
431
423
  .e-css.e-btn-group input:checked + label.e-btn.e-danger {
432
424
  background-color: #a72a2d;
433
425
  border-color: #a72a2d;
434
- color: #fff;
426
+ color: #1b1a19;
435
427
  box-shadow: none;
436
428
  }
437
429
  .e-btn-group .e-btn:active.e-outline,
@@ -454,7 +446,7 @@
454
446
  background-color: #0060aa;
455
447
  border-color: #0078d4;
456
448
  box-shadow: none;
457
- color: #fff;
449
+ color: #1b1a19;
458
450
  }
459
451
  .e-btn-group .e-btn:active.e-outline.e-success,
460
452
  .e-btn-group input:active + label.e-btn.e-outline.e-success,
@@ -465,7 +457,7 @@
465
457
  background-color: #095509;
466
458
  border-color: #095509;
467
459
  box-shadow: none;
468
- color: #fff;
460
+ color: #1b1a19;
469
461
  }
470
462
  .e-btn-group .e-btn:active.e-outline.e-info,
471
463
  .e-btn-group input:active + label.e-btn.e-outline.e-info,
@@ -476,7 +468,7 @@
476
468
  background-color: #359c9f;
477
469
  border-color: #359c9f;
478
470
  box-shadow: none;
479
- color: #fff;
471
+ color: #1b1a19;
480
472
  }
481
473
  .e-btn-group .e-btn:active.e-outline.e-warning,
482
474
  .e-btn-group input:active + label.e-btn.e-outline.e-warning,
@@ -487,7 +479,7 @@
487
479
  background-color: #d57340;
488
480
  border-color: #d57340;
489
481
  box-shadow: none;
490
- color: #fff;
482
+ color: #1b1a19;
491
483
  }
492
484
  .e-btn-group .e-btn:active.e-outline.e-danger,
493
485
  .e-btn-group input:active + label.e-btn.e-outline.e-danger,
@@ -498,7 +490,7 @@
498
490
  background-color: #a72a2d;
499
491
  border-color: #a72a2d;
500
492
  box-shadow: none;
501
- color: #fff;
493
+ color: #1b1a19;
502
494
  }
503
495
  .e-btn-group .e-btn:disabled,
504
496
  .e-btn-group input:disabled + label.e-btn,
@@ -7,14 +7,6 @@
7
7
  flex-direction: row;
8
8
  position: relative;
9
9
  }
10
- *.e-btn-group input:focus + label.e-btn,
11
- *.e-btn-group .e-btn:focus,
12
- *.e-btn-group .e-btn:hover,
13
- *.e-css.e-btn-group input:focus + label.e-btn,
14
- *.e-css.e-btn-group .e-btn:focus,
15
- *.e-css.e-btn-group .e-btn:hover {
16
- z-index: 2;
17
- }
18
10
  *.e-btn-group input + label.e-btn,
19
11
  *.e-css.e-btn-group input + label.e-btn {
20
12
  margin-bottom: 0;
@@ -7,14 +7,6 @@
7
7
  flex-direction: row;
8
8
  position: relative;
9
9
  }
10
- *.e-btn-group input:focus + label.e-btn,
11
- *.e-btn-group .e-btn:focus,
12
- *.e-btn-group .e-btn:hover,
13
- *.e-css.e-btn-group input:focus + label.e-btn,
14
- *.e-css.e-btn-group .e-btn:focus,
15
- *.e-css.e-btn-group .e-btn:hover {
16
- z-index: 2;
17
- }
18
10
  *.e-btn-group input + label.e-btn,
19
11
  *.e-css.e-btn-group input + label.e-btn {
20
12
  margin-bottom: 0;
@@ -7,14 +7,6 @@
7
7
  flex-direction: row;
8
8
  position: relative;
9
9
  }
10
- *.e-btn-group input:focus + label.e-btn,
11
- *.e-btn-group .e-btn:focus,
12
- *.e-btn-group .e-btn:hover,
13
- *.e-css.e-btn-group input:focus + label.e-btn,
14
- *.e-css.e-btn-group .e-btn:focus,
15
- *.e-css.e-btn-group .e-btn:hover {
16
- z-index: 2;
17
- }
18
10
  *.e-btn-group input + label.e-btn,
19
11
  *.e-css.e-btn-group input + label.e-btn {
20
12
  margin-bottom: 0;
@@ -8,14 +8,6 @@
8
8
  flex-direction: row;
9
9
  position: relative;
10
10
  }
11
- *.e-btn-group input:focus + label.e-btn,
12
- *.e-btn-group .e-btn:focus,
13
- *.e-btn-group .e-btn:hover,
14
- *.e-css.e-btn-group input:focus + label.e-btn,
15
- *.e-css.e-btn-group .e-btn:focus,
16
- *.e-css.e-btn-group .e-btn:hover {
17
- z-index: 2;
18
- }
19
11
  *.e-btn-group input + label.e-btn,
20
12
  *.e-css.e-btn-group input + label.e-btn {
21
13
  margin-bottom: 0;
@@ -8,14 +8,6 @@
8
8
  flex-direction: row;
9
9
  position: relative;
10
10
  }
11
- *.e-btn-group input:focus + label.e-btn,
12
- *.e-btn-group .e-btn:focus,
13
- *.e-btn-group .e-btn:hover,
14
- *.e-css.e-btn-group input:focus + label.e-btn,
15
- *.e-css.e-btn-group .e-btn:focus,
16
- *.e-css.e-btn-group .e-btn:hover {
17
- z-index: 2;
18
- }
19
11
  *.e-btn-group input + label.e-btn,
20
12
  *.e-css.e-btn-group input + label.e-btn {
21
13
  margin-bottom: 0;