@syncfusion/ej2-react-splitbuttons 19.4.47 → 20.1.47

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 (55) hide show
  1. package/README.md +1 -1
  2. package/dist/ej2-react-splitbuttons.umd.min.js +1 -1
  3. package/package.json +8 -8
  4. package/styles/bootstrap-dark.css +45 -45
  5. package/styles/bootstrap.css +45 -45
  6. package/styles/bootstrap4.css +45 -45
  7. package/styles/bootstrap5-dark.css +80 -60
  8. package/styles/bootstrap5.css +80 -60
  9. package/styles/button-group/fluent-dark.css +866 -0
  10. package/styles/button-group/fluent-dark.scss +1 -0
  11. package/styles/button-group/fluent.css +866 -0
  12. package/styles/button-group/fluent.scss +1 -0
  13. package/styles/drop-down-button/bootstrap5-dark.css +8 -8
  14. package/styles/drop-down-button/bootstrap5.css +8 -8
  15. package/styles/drop-down-button/fluent-dark.css +247 -0
  16. package/styles/drop-down-button/fluent-dark.scss +1 -0
  17. package/styles/drop-down-button/fluent.css +247 -0
  18. package/styles/drop-down-button/fluent.scss +1 -0
  19. package/styles/drop-down-button/tailwind-dark.css +8 -8
  20. package/styles/drop-down-button/tailwind.css +8 -8
  21. package/styles/fabric-dark.css +45 -45
  22. package/styles/fabric.css +45 -45
  23. package/styles/fluent-dark.css +2144 -0
  24. package/styles/fluent-dark.scss +4 -0
  25. package/styles/fluent.css +2144 -0
  26. package/styles/fluent.scss +4 -0
  27. package/styles/highcontrast-light.css +45 -45
  28. package/styles/highcontrast.css +45 -45
  29. package/styles/material-dark.css +45 -45
  30. package/styles/material.css +45 -45
  31. package/styles/progress-button/bootstrap-dark.css +45 -45
  32. package/styles/progress-button/bootstrap.css +45 -45
  33. package/styles/progress-button/bootstrap4.css +45 -45
  34. package/styles/progress-button/bootstrap5-dark.css +72 -52
  35. package/styles/progress-button/bootstrap5.css +72 -52
  36. package/styles/progress-button/fabric-dark.css +45 -45
  37. package/styles/progress-button/fabric.css +45 -45
  38. package/styles/progress-button/fluent-dark.css +665 -0
  39. package/styles/progress-button/fluent-dark.scss +1 -0
  40. package/styles/progress-button/fluent.css +665 -0
  41. package/styles/progress-button/fluent.scss +1 -0
  42. package/styles/progress-button/highcontrast-light.css +45 -45
  43. package/styles/progress-button/highcontrast.css +45 -45
  44. package/styles/progress-button/material-dark.css +45 -45
  45. package/styles/progress-button/material.css +45 -45
  46. package/styles/progress-button/tailwind-dark.css +68 -48
  47. package/styles/progress-button/tailwind.css +68 -48
  48. package/styles/split-button/fluent-dark.css +363 -0
  49. package/styles/split-button/fluent-dark.scss +1 -0
  50. package/styles/split-button/fluent.css +363 -0
  51. package/styles/split-button/fluent.scss +1 -0
  52. package/styles/split-button/tailwind-dark.css +9 -9
  53. package/styles/split-button/tailwind.css +9 -9
  54. package/styles/tailwind-dark.css +85 -65
  55. package/styles/tailwind.css +85 -65
@@ -0,0 +1,866 @@
1
+ *.e-btn-group,
2
+ *.e-css.e-btn-group {
3
+ display: -ms-inline-flexbox;
4
+ display: inline-flex;
5
+ border-radius: 4px;
6
+ -ms-flex-direction: row;
7
+ flex-direction: row;
8
+ position: relative;
9
+ }
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
+
20
+ *.e-btn-group input + label.e-btn,
21
+ *.e-css.e-btn-group input + label.e-btn {
22
+ margin-bottom: 0;
23
+ }
24
+
25
+ *.e-btn-group input,
26
+ *.e-css.e-btn-group input {
27
+ -moz-appearance: none;
28
+ height: 1px;
29
+ margin: 0 0 0 -1px;
30
+ opacity: 0;
31
+ position: absolute;
32
+ width: 1px;
33
+ }
34
+
35
+ *.e-btn-group input:disabled + label.e-btn,
36
+ *.e-btn-group :disabled,
37
+ *.e-css.e-btn-group input:disabled + label.e-btn,
38
+ *.e-css.e-btn-group :disabled {
39
+ cursor: default;
40
+ pointer-events: none;
41
+ }
42
+
43
+ *.e-btn-group .e-btn-icon,
44
+ *.e-css.e-btn-group .e-btn-icon {
45
+ font-size: 16px;
46
+ }
47
+
48
+ *.e-btn-group:not(.e-rtl):not(.e-vertical) .e-btn,
49
+ *.e-css.e-btn-group:not(.e-rtl):not(.e-vertical) .e-btn {
50
+ margin-left: -1px;
51
+ }
52
+
53
+ *.e-btn-group:not(.e-rtl):not(.e-vertical) .e-btn:not(:first-of-type):not(:last-of-type),
54
+ *.e-css.e-btn-group:not(.e-rtl):not(.e-vertical) .e-btn:not(:first-of-type):not(:last-of-type) {
55
+ border-radius: 0;
56
+ }
57
+
58
+ *.e-btn-group:not(.e-rtl):not(.e-vertical) .e-btn:first-of-type,
59
+ *.e-css.e-btn-group:not(.e-rtl):not(.e-vertical) .e-btn:first-of-type {
60
+ border-bottom-right-radius: 0;
61
+ border-top-right-radius: 0;
62
+ }
63
+
64
+ *.e-btn-group:not(.e-rtl):not(.e-vertical) .e-btn:last-of-type,
65
+ *.e-css.e-btn-group:not(.e-rtl):not(.e-vertical) .e-btn:last-of-type {
66
+ border-bottom-left-radius: 0;
67
+ border-top-left-radius: 0;
68
+ }
69
+
70
+ *.e-btn-group:not(.e-rtl):not(.e-vertical) .e-btn:last-of-type:not(:last-child),
71
+ *.e-css.e-btn-group:not(.e-rtl):not(.e-vertical) .e-btn:last-of-type:not(:last-child) {
72
+ border-bottom-right-radius: 0;
73
+ border-top-right-radius: 0;
74
+ }
75
+
76
+ *.e-btn-group:not(.e-rtl):not(.e-vertical) .e-split-btn-wrapper + .e-btn,
77
+ *.e-css.e-btn-group:not(.e-rtl):not(.e-vertical) .e-split-btn-wrapper + .e-btn {
78
+ border-bottom-left-radius: 0;
79
+ border-top-left-radius: 0;
80
+ }
81
+
82
+ *.e-btn-group:not(.e-rtl):not(.e-vertical) .e-split-btn-wrapper:not(:first-child):not(:last-child) .e-btn:last-child,
83
+ *.e-css.e-btn-group:not(.e-rtl):not(.e-vertical) .e-split-btn-wrapper:not(:first-child):not(:last-child) .e-btn:last-child {
84
+ border-bottom-right-radius: 0;
85
+ border-top-right-radius: 0;
86
+ }
87
+
88
+ *.e-btn-group:not(.e-rtl):not(.e-vertical) .e-split-btn-wrapper:not(:first-child):not(:last-child) .e-btn:first-child,
89
+ *.e-css.e-btn-group:not(.e-rtl):not(.e-vertical) .e-split-btn-wrapper:not(:first-child):not(:last-child) .e-btn:first-child {
90
+ border-bottom-left-radius: 0;
91
+ border-top-left-radius: 0;
92
+ }
93
+
94
+ *.e-btn-group:not(.e-rtl):not(.e-vertical) .e-split-btn-wrapper:first-child .e-btn:last-child,
95
+ *.e-css.e-btn-group:not(.e-rtl):not(.e-vertical) .e-split-btn-wrapper:first-child .e-btn:last-child {
96
+ border-bottom-right-radius: 0;
97
+ border-top-right-radius: 0;
98
+ }
99
+
100
+ *.e-btn-group:not(.e-rtl):not(.e-vertical) .e-split-btn-wrapper:last-child .e-btn:first-child,
101
+ *.e-css.e-btn-group:not(.e-rtl):not(.e-vertical) .e-split-btn-wrapper:last-child .e-btn:first-child {
102
+ border-bottom-left-radius: 0;
103
+ border-top-left-radius: 0;
104
+ }
105
+
106
+ *.e-btn-group.e-rtl .e-btn,
107
+ *.e-css.e-btn-group.e-rtl .e-btn {
108
+ margin-left: -1px;
109
+ }
110
+
111
+ *.e-btn-group.e-rtl .e-btn:not(:first-of-type):not(:last-of-type),
112
+ *.e-css.e-btn-group.e-rtl .e-btn:not(:first-of-type):not(:last-of-type) {
113
+ border-radius: 0;
114
+ }
115
+
116
+ *.e-btn-group.e-rtl .e-btn:first-of-type,
117
+ *.e-css.e-btn-group.e-rtl .e-btn:first-of-type {
118
+ border-bottom-left-radius: 0;
119
+ border-top-left-radius: 0;
120
+ }
121
+
122
+ *.e-btn-group.e-rtl .e-btn:last-of-type,
123
+ *.e-css.e-btn-group.e-rtl .e-btn:last-of-type {
124
+ border-bottom-right-radius: 0;
125
+ border-top-right-radius: 0;
126
+ }
127
+
128
+ *.e-btn-group.e-rtl .e-btn:last-of-type:not(:last-child),
129
+ *.e-css.e-btn-group.e-rtl .e-btn:last-of-type:not(:last-child) {
130
+ border-bottom-left-radius: 0;
131
+ border-top-left-radius: 0;
132
+ }
133
+
134
+ *.e-btn-group.e-rtl .e-split-btn-wrapper + .e-btn,
135
+ *.e-css.e-btn-group.e-rtl .e-split-btn-wrapper + .e-btn {
136
+ border-bottom-right-radius: 0;
137
+ border-top-right-radius: 0;
138
+ }
139
+
140
+ *.e-btn-group.e-rtl .e-split-btn-wrapper:not(:first-child):not(:last-child) .e-btn:last-child,
141
+ *.e-css.e-btn-group.e-rtl .e-split-btn-wrapper:not(:first-child):not(:last-child) .e-btn:last-child {
142
+ border-bottom-left-radius: 0;
143
+ border-top-left-radius: 0;
144
+ }
145
+
146
+ *.e-btn-group.e-rtl .e-split-btn-wrapper:not(:first-child):not(:last-child) .e-btn:first-child,
147
+ *.e-css.e-btn-group.e-rtl .e-split-btn-wrapper:not(:first-child):not(:last-child) .e-btn:first-child {
148
+ border-bottom-right-radius: 0;
149
+ border-top-right-radius: 0;
150
+ }
151
+
152
+ *.e-btn-group.e-rtl .e-split-btn-wrapper:first-child .e-btn:last-child,
153
+ *.e-css.e-btn-group.e-rtl .e-split-btn-wrapper:first-child .e-btn:last-child {
154
+ border-bottom-left-radius: 0;
155
+ border-top-left-radius: 0;
156
+ }
157
+
158
+ *.e-btn-group.e-rtl .e-split-btn-wrapper:last-child .e-btn:first-child,
159
+ *.e-css.e-btn-group.e-rtl .e-split-btn-wrapper:last-child .e-btn:first-child {
160
+ border-bottom-right-radius: 0;
161
+ border-top-right-radius: 0;
162
+ }
163
+
164
+ *.e-btn-group.e-vertical,
165
+ *.e-css.e-btn-group.e-vertical {
166
+ -ms-flex-direction: column;
167
+ flex-direction: column;
168
+ }
169
+
170
+ *.e-btn-group.e-vertical input,
171
+ *.e-css.e-btn-group.e-vertical input {
172
+ margin: -1px 0 0;
173
+ }
174
+
175
+ *.e-btn-group.e-vertical .e-btn:not(.e-outline),
176
+ *.e-css.e-btn-group.e-vertical .e-btn:not(.e-outline) {
177
+ margin-top: -1px;
178
+ }
179
+
180
+ *.e-btn-group.e-vertical .e-btn:not(:first-of-type):not(:last-of-type),
181
+ *.e-css.e-btn-group.e-vertical .e-btn:not(:first-of-type):not(:last-of-type) {
182
+ border-radius: 0;
183
+ }
184
+
185
+ *.e-btn-group.e-vertical .e-btn:first-of-type,
186
+ *.e-css.e-btn-group.e-vertical .e-btn:first-of-type {
187
+ border-bottom-left-radius: 0;
188
+ border-bottom-right-radius: 0;
189
+ border-top-left-radius: 2px;
190
+ border-top-right-radius: 2px;
191
+ }
192
+
193
+ *.e-btn-group.e-vertical .e-btn:last-of-type,
194
+ *.e-css.e-btn-group.e-vertical .e-btn:last-of-type {
195
+ border-bottom-left-radius: 2px;
196
+ border-bottom-right-radius: 2px;
197
+ border-top-left-radius: 0;
198
+ border-top-right-radius: 0;
199
+ }
200
+
201
+ *.e-btn-group.e-round-corner:not(.e-vertical):not(.e-rtl),
202
+ *.e-css.e-btn-group.e-round-corner:not(.e-vertical):not(.e-rtl) {
203
+ border-radius: 20px;
204
+ }
205
+
206
+ *.e-btn-group.e-round-corner:not(.e-vertical):not(.e-rtl) .e-btn:first-of-type,
207
+ *.e-css.e-btn-group.e-round-corner:not(.e-vertical):not(.e-rtl) .e-btn:first-of-type {
208
+ border-bottom-left-radius: 20px;
209
+ border-top-left-radius: 20px;
210
+ }
211
+
212
+ *.e-btn-group.e-round-corner:not(.e-vertical):not(.e-rtl) .e-btn:last-of-type,
213
+ *.e-css.e-btn-group.e-round-corner:not(.e-vertical):not(.e-rtl) .e-btn:last-of-type {
214
+ border-bottom-right-radius: 20px;
215
+ border-top-right-radius: 20px;
216
+ }
217
+
218
+ *.e-btn-group.e-round-corner:not(.e-vertical):not(.e-rtl) .e-btn:last-of-type:not(:last-child),
219
+ *.e-css.e-btn-group.e-round-corner:not(.e-vertical):not(.e-rtl) .e-btn:last-of-type:not(:last-child) {
220
+ border-bottom-right-radius: 0;
221
+ border-top-right-radius: 0;
222
+ }
223
+
224
+ *.e-btn-group.e-round-corner:not(.e-vertical):not(.e-rtl) .e-split-btn-wrapper + .e-btn,
225
+ *.e-css.e-btn-group.e-round-corner:not(.e-vertical):not(.e-rtl) .e-split-btn-wrapper + .e-btn {
226
+ border-bottom-left-radius: 0;
227
+ border-top-left-radius: 0;
228
+ }
229
+
230
+ *.e-btn-group.e-round-corner:not(.e-vertical):not(.e-rtl) .e-split-btn-wrapper:first-child .e-btn:first-child,
231
+ *.e-css.e-btn-group.e-round-corner:not(.e-vertical):not(.e-rtl) .e-split-btn-wrapper:first-child .e-btn:first-child {
232
+ border-bottom-left-radius: 20px;
233
+ border-top-left-radius: 20px;
234
+ }
235
+
236
+ *.e-btn-group.e-round-corner:not(.e-vertical):not(.e-rtl) .e-split-btn-wrapper:first-child .e-btn:last-child,
237
+ *.e-css.e-btn-group.e-round-corner:not(.e-vertical):not(.e-rtl) .e-split-btn-wrapper:first-child .e-btn:last-child {
238
+ border-bottom-right-radius: 0;
239
+ border-top-right-radius: 0;
240
+ }
241
+
242
+ *.e-btn-group.e-round-corner:not(.e-vertical):not(.e-rtl) .e-split-btn-wrapper:last-child .e-btn:first-child,
243
+ *.e-css.e-btn-group.e-round-corner:not(.e-vertical):not(.e-rtl) .e-split-btn-wrapper:last-child .e-btn:first-child {
244
+ border-bottom-left-radius: 0;
245
+ border-top-left-radius: 0;
246
+ }
247
+
248
+ *.e-btn-group.e-round-corner:not(.e-vertical):not(.e-rtl) .e-split-btn-wrapper:last-child .e-btn:last-child,
249
+ *.e-css.e-btn-group.e-round-corner:not(.e-vertical):not(.e-rtl) .e-split-btn-wrapper:last-child .e-btn:last-child {
250
+ border-bottom-right-radius: 20px;
251
+ border-top-right-radius: 20px;
252
+ }
253
+
254
+ *.e-btn-group.e-round-corner:not(.e-vertical).e-rtl,
255
+ *.e-css.e-btn-group.e-round-corner:not(.e-vertical).e-rtl {
256
+ border-radius: 20px;
257
+ }
258
+
259
+ *.e-btn-group.e-round-corner:not(.e-vertical).e-rtl .e-btn:first-of-type,
260
+ *.e-css.e-btn-group.e-round-corner:not(.e-vertical).e-rtl .e-btn:first-of-type {
261
+ border-bottom-right-radius: 20px;
262
+ border-top-right-radius: 20px;
263
+ }
264
+
265
+ *.e-btn-group.e-round-corner:not(.e-vertical).e-rtl .e-btn:last-of-type,
266
+ *.e-css.e-btn-group.e-round-corner:not(.e-vertical).e-rtl .e-btn:last-of-type {
267
+ border-bottom-left-radius: 20px;
268
+ border-top-left-radius: 20px;
269
+ }
270
+
271
+ *.e-btn-group.e-round-corner:not(.e-vertical).e-rtl .e-btn:last-of-type:not(:last-child),
272
+ *.e-css.e-btn-group.e-round-corner:not(.e-vertical).e-rtl .e-btn:last-of-type:not(:last-child) {
273
+ border-bottom-left-radius: 0;
274
+ border-top-left-radius: 0;
275
+ }
276
+
277
+ *.e-btn-group.e-round-corner:not(.e-vertical).e-rtl .e-btn:first-of-type:not(:first-child),
278
+ *.e-css.e-btn-group.e-round-corner:not(.e-vertical).e-rtl .e-btn:first-of-type:not(:first-child) {
279
+ border-bottom-right-radius: 0;
280
+ border-top-right-radius: 0;
281
+ }
282
+
283
+ .e-bigger .e-btn-group .e-btn-icon,
284
+ .e-bigger.e-btn-group .e-btn-icon,
285
+ .e-bigger .e-css.e-btn-group .e-btn-icon,
286
+ .e-bigger.e-css.e-btn-group .e-btn-icon {
287
+ font-size: 20px;
288
+ }
289
+
290
+ .e-btn-group:not(.e-outline),
291
+ .e-css.e-btn-group:not(.e-outline) {
292
+ box-shadow: none;
293
+ }
294
+
295
+ .e-btn-group .e-btn:hover,
296
+ .e-css.e-btn-group .e-btn:hover {
297
+ box-shadow: none;
298
+ }
299
+
300
+ .e-btn-group .e-btn:focus,
301
+ .e-btn-group input:focus + label.e-btn,
302
+ .e-css.e-btn-group .e-btn:focus,
303
+ .e-css.e-btn-group input:focus + label.e-btn {
304
+ background-color: #f3f2f1;
305
+ border-color: #8a8886;
306
+ color: #323130;
307
+ outline: 1px solid;
308
+ outline-offset: -3px;
309
+ box-shadow: 0 0 rgba(0, 0, 0, 0);
310
+ box-shadow: none;
311
+ outline-color: inherit;
312
+ }
313
+
314
+ .e-btn-group .e-btn:focus.e-primary,
315
+ .e-btn-group input:focus + label.e-btn.e-primary,
316
+ .e-css.e-btn-group .e-btn:focus.e-primary,
317
+ .e-css.e-btn-group input:focus + label.e-btn.e-primary {
318
+ background-color: #006cbf;
319
+ border-color: #0078d4;
320
+ color: #fff;
321
+ outline: 1px solid;
322
+ box-shadow: 0 0 rgba(0, 0, 0, 0);
323
+ box-shadow: none;
324
+ outline-color: inherit;
325
+ }
326
+
327
+ .e-btn-group .e-btn:focus.e-success,
328
+ .e-btn-group input:focus + label.e-btn.e-success,
329
+ .e-css.e-btn-group .e-btn:focus.e-success,
330
+ .e-css.e-btn-group input:focus + label.e-btn.e-success {
331
+ background-color: #0a5f0a;
332
+ border-color: #0b6a0b;
333
+ color: #fff;
334
+ box-shadow: 0 0 rgba(0, 0, 0, 0);
335
+ box-shadow: none;
336
+ outline-color: inherit;
337
+ }
338
+
339
+ .e-btn-group .e-btn:focus.e-info,
340
+ .e-btn-group input:focus + label.e-btn.e-info,
341
+ .e-css.e-btn-group .e-btn:focus.e-info,
342
+ .e-css.e-btn-group input:focus + label.e-btn.e-info {
343
+ background-color: #03767a;
344
+ border-color: #038387;
345
+ color: #fff;
346
+ box-shadow: 0 0 rgba(0, 0, 0, 0);
347
+ box-shadow: none;
348
+ outline-color: inherit;
349
+ }
350
+
351
+ .e-btn-group .e-btn:focus.e-warning,
352
+ .e-btn-group input:focus + label.e-btn.e-warning,
353
+ .e-css.e-btn-group .e-btn:focus.e-warning,
354
+ .e-css.e-btn-group input:focus + label.e-btn.e-warning {
355
+ background-color: #cf6228;
356
+ border-color: #ca5010;
357
+ color: #fff;
358
+ box-shadow: 0 0 rgba(0, 0, 0, 0);
359
+ box-shadow: none;
360
+ outline-color: inherit;
361
+ }
362
+
363
+ .e-btn-group .e-btn:focus.e-danger,
364
+ .e-btn-group input:focus + label.e-btn.e-danger,
365
+ .e-css.e-btn-group .e-btn:focus.e-danger,
366
+ .e-css.e-btn-group input:focus + label.e-btn.e-danger {
367
+ background-color: #bc2f32;
368
+ border-color: #d13438;
369
+ color: #fff;
370
+ box-shadow: 0 0 rgba(0, 0, 0, 0);
371
+ box-shadow: none;
372
+ outline-color: inherit;
373
+ }
374
+
375
+ .e-btn-group .e-btn:focus.e-link,
376
+ .e-btn-group input:focus + label.e-btn.e-link,
377
+ .e-css.e-btn-group .e-btn:focus.e-link,
378
+ .e-css.e-btn-group input:focus + label.e-btn.e-link {
379
+ border-radius: 0;
380
+ text-decoration: underline;
381
+ color: #0060aa;
382
+ background-color: transparent;
383
+ border-color: transparent;
384
+ box-shadow: none;
385
+ outline: none;
386
+ }
387
+
388
+ .e-btn-group .e-btn:focus.e-outline,
389
+ .e-btn-group input:focus + label.e-btn.e-outline,
390
+ .e-css.e-btn-group .e-btn:focus.e-outline,
391
+ .e-css.e-btn-group input:focus + label.e-btn.e-outline {
392
+ box-shadow: 0 0 rgba(0, 0, 0, 0);
393
+ box-shadow: none;
394
+ }
395
+
396
+ .e-btn-group .e-btn:focus.e-outline.e-primary,
397
+ .e-btn-group input:focus + label.e-btn.e-outline.e-primary,
398
+ .e-css.e-btn-group .e-btn:focus.e-outline.e-primary,
399
+ .e-css.e-btn-group input:focus + label.e-btn.e-outline.e-primary {
400
+ box-shadow: none;
401
+ }
402
+
403
+ .e-btn-group .e-btn:focus.e-outline.e-success,
404
+ .e-btn-group input:focus + label.e-btn.e-outline.e-success,
405
+ .e-css.e-btn-group .e-btn:focus.e-outline.e-success,
406
+ .e-css.e-btn-group input:focus + label.e-btn.e-outline.e-success {
407
+ box-shadow: none;
408
+ }
409
+
410
+ .e-btn-group .e-btn:focus.e-outline.e-info,
411
+ .e-btn-group input:focus + label.e-btn.e-outline.e-info,
412
+ .e-css.e-btn-group .e-btn:focus.e-outline.e-info,
413
+ .e-css.e-btn-group input:focus + label.e-btn.e-outline.e-info {
414
+ box-shadow: none;
415
+ }
416
+
417
+ .e-btn-group .e-btn:focus.e-outline.e-warning,
418
+ .e-btn-group input:focus + label.e-btn.e-outline.e-warning,
419
+ .e-css.e-btn-group .e-btn:focus.e-outline.e-warning,
420
+ .e-css.e-btn-group input:focus + label.e-btn.e-outline.e-warning {
421
+ box-shadow: none;
422
+ }
423
+
424
+ .e-btn-group .e-btn:focus.e-outline.e-danger,
425
+ .e-btn-group input:focus + label.e-btn.e-outline.e-danger,
426
+ .e-css.e-btn-group .e-btn:focus.e-outline.e-danger,
427
+ .e-css.e-btn-group input:focus + label.e-btn.e-outline.e-danger {
428
+ box-shadow: none;
429
+ }
430
+
431
+ .e-btn-group .e-btn:active,
432
+ .e-btn-group input:active + label.e-btn,
433
+ .e-btn-group input:checked + label.e-btn,
434
+ .e-css.e-btn-group .e-btn:active,
435
+ .e-css.e-btn-group input:active + label.e-btn,
436
+ .e-css.e-btn-group input:checked + label.e-btn {
437
+ background-color: #edebe9;
438
+ border-color: #8a8886;
439
+ color: #323130;
440
+ box-shadow: none;
441
+ }
442
+
443
+ .e-btn-group .e-btn:active.e-primary,
444
+ .e-btn-group input:active + label.e-btn.e-primary,
445
+ .e-btn-group input:checked + label.e-btn.e-primary,
446
+ .e-css.e-btn-group .e-btn:active.e-primary,
447
+ .e-css.e-btn-group input:active + label.e-btn.e-primary,
448
+ .e-css.e-btn-group input:checked + label.e-btn.e-primary {
449
+ background-color: #0060aa;
450
+ border-color: #0060aa;
451
+ color: #fff;
452
+ box-shadow: none;
453
+ }
454
+
455
+ .e-btn-group .e-btn:active.e-success,
456
+ .e-btn-group input:active + label.e-btn.e-success,
457
+ .e-btn-group input:checked + label.e-btn.e-success,
458
+ .e-css.e-btn-group .e-btn:active.e-success,
459
+ .e-css.e-btn-group input:active + label.e-btn.e-success,
460
+ .e-css.e-btn-group input:checked + label.e-btn.e-success {
461
+ background-color: #095509;
462
+ border-color: #095509;
463
+ color: #fff;
464
+ box-shadow: none;
465
+ }
466
+
467
+ .e-btn-group .e-btn:active.e-info,
468
+ .e-btn-group input:active + label.e-btn.e-info,
469
+ .e-btn-group input:checked + label.e-btn.e-info,
470
+ .e-css.e-btn-group .e-btn:active.e-info,
471
+ .e-css.e-btn-group input:active + label.e-btn.e-info,
472
+ .e-css.e-btn-group input:checked + label.e-btn.e-info {
473
+ background-color: #359c9f;
474
+ color: #fff;
475
+ border-color: #359c9f;
476
+ box-shadow: none;
477
+ }
478
+
479
+ .e-btn-group .e-btn:active.e-warning,
480
+ .e-btn-group input:active + label.e-btn.e-warning,
481
+ .e-btn-group input:checked + label.e-btn.e-warning,
482
+ .e-css.e-btn-group .e-btn:active.e-warning,
483
+ .e-css.e-btn-group input:active + label.e-btn.e-warning,
484
+ .e-css.e-btn-group input:checked + label.e-btn.e-warning {
485
+ background-color: #d57340;
486
+ border-color: #d57340;
487
+ color: #fff;
488
+ box-shadow: none;
489
+ }
490
+
491
+ .e-btn-group .e-btn:active.e-danger,
492
+ .e-btn-group input:active + label.e-btn.e-danger,
493
+ .e-btn-group input:checked + label.e-btn.e-danger,
494
+ .e-css.e-btn-group .e-btn:active.e-danger,
495
+ .e-css.e-btn-group input:active + label.e-btn.e-danger,
496
+ .e-css.e-btn-group input:checked + label.e-btn.e-danger {
497
+ background-color: #a72a2d;
498
+ border-color: #a72a2d;
499
+ color: #fff;
500
+ box-shadow: none;
501
+ }
502
+
503
+ .e-btn-group .e-btn:active.e-outline,
504
+ .e-btn-group input:active + label.e-btn.e-outline,
505
+ .e-btn-group input:checked + label.e-btn.e-outline,
506
+ .e-css.e-btn-group .e-btn:active.e-outline,
507
+ .e-css.e-btn-group input:active + label.e-btn.e-outline,
508
+ .e-css.e-btn-group input:checked + label.e-btn.e-outline {
509
+ background-color: #edebe9;
510
+ border-color: #8a8886;
511
+ box-shadow: none;
512
+ color: #323130;
513
+ }
514
+
515
+ .e-btn-group .e-btn:active.e-outline.e-primary,
516
+ .e-btn-group input:active + label.e-btn.e-outline.e-primary,
517
+ .e-btn-group input:checked + label.e-btn.e-outline.e-primary,
518
+ .e-css.e-btn-group .e-btn:active.e-outline.e-primary,
519
+ .e-css.e-btn-group input:active + label.e-btn.e-outline.e-primary,
520
+ .e-css.e-btn-group input:checked + label.e-btn.e-outline.e-primary {
521
+ background-color: #0060aa;
522
+ border-color: #0078d4;
523
+ box-shadow: none;
524
+ color: #fff;
525
+ }
526
+
527
+ .e-btn-group .e-btn:active.e-outline.e-success,
528
+ .e-btn-group input:active + label.e-btn.e-outline.e-success,
529
+ .e-btn-group input:checked + label.e-btn.e-outline.e-success,
530
+ .e-css.e-btn-group .e-btn:active.e-outline.e-success,
531
+ .e-css.e-btn-group input:active + label.e-btn.e-outline.e-success,
532
+ .e-css.e-btn-group input:checked + label.e-btn.e-outline.e-success {
533
+ background-color: #095509;
534
+ border-color: #095509;
535
+ box-shadow: none;
536
+ color: #fff;
537
+ }
538
+
539
+ .e-btn-group .e-btn:active.e-outline.e-info,
540
+ .e-btn-group input:active + label.e-btn.e-outline.e-info,
541
+ .e-btn-group input:checked + label.e-btn.e-outline.e-info,
542
+ .e-css.e-btn-group .e-btn:active.e-outline.e-info,
543
+ .e-css.e-btn-group input:active + label.e-btn.e-outline.e-info,
544
+ .e-css.e-btn-group input:checked + label.e-btn.e-outline.e-info {
545
+ background-color: #359c9f;
546
+ border-color: #359c9f;
547
+ box-shadow: none;
548
+ color: #fff;
549
+ }
550
+
551
+ .e-btn-group .e-btn:active.e-outline.e-warning,
552
+ .e-btn-group input:active + label.e-btn.e-outline.e-warning,
553
+ .e-btn-group input:checked + label.e-btn.e-outline.e-warning,
554
+ .e-css.e-btn-group .e-btn:active.e-outline.e-warning,
555
+ .e-css.e-btn-group input:active + label.e-btn.e-outline.e-warning,
556
+ .e-css.e-btn-group input:checked + label.e-btn.e-outline.e-warning {
557
+ background-color: #d57340;
558
+ border-color: #d57340;
559
+ box-shadow: none;
560
+ color: #fff;
561
+ }
562
+
563
+ .e-btn-group .e-btn:active.e-outline.e-danger,
564
+ .e-btn-group input:active + label.e-btn.e-outline.e-danger,
565
+ .e-btn-group input:checked + label.e-btn.e-outline.e-danger,
566
+ .e-css.e-btn-group .e-btn:active.e-outline.e-danger,
567
+ .e-css.e-btn-group input:active + label.e-btn.e-outline.e-danger,
568
+ .e-css.e-btn-group input:checked + label.e-btn.e-outline.e-danger {
569
+ background-color: #a72a2d;
570
+ border-color: #a72a2d;
571
+ box-shadow: none;
572
+ color: #fff;
573
+ }
574
+
575
+ .e-btn-group .e-btn:disabled,
576
+ .e-btn-group input:disabled + label.e-btn,
577
+ .e-css.e-btn-group .e-btn:disabled,
578
+ .e-css.e-btn-group input:disabled + label.e-btn {
579
+ background-color: #f3f2f1;
580
+ border-color: #f3f2f1;
581
+ box-shadow: none;
582
+ color: #a19f9d;
583
+ border-color: #8a8886;
584
+ }
585
+
586
+ .e-btn-group .e-btn:disabled.e-primary,
587
+ .e-btn-group input:disabled + label.e-btn.e-primary,
588
+ .e-css.e-btn-group .e-btn:disabled.e-primary,
589
+ .e-css.e-btn-group input:disabled + label.e-btn.e-primary {
590
+ background-color: #f3f2f1;
591
+ border-color: #f3f2f1;
592
+ box-shadow: none;
593
+ color: #a19f9d;
594
+ outline: none;
595
+ border-color: #0078d4;
596
+ }
597
+
598
+ .e-btn-group .e-btn:disabled.e-success,
599
+ .e-btn-group input:disabled + label.e-btn.e-success,
600
+ .e-css.e-btn-group .e-btn:disabled.e-success,
601
+ .e-css.e-btn-group input:disabled + label.e-btn.e-success {
602
+ background-color: #f3f2f1;
603
+ border-color: #f3f2f1;
604
+ box-shadow: none;
605
+ color: #a19f9d;
606
+ outline: none;
607
+ border-color: #0b6a0b;
608
+ }
609
+
610
+ .e-btn-group .e-btn:disabled.e-info,
611
+ .e-btn-group input:disabled + label.e-btn.e-info,
612
+ .e-css.e-btn-group .e-btn:disabled.e-info,
613
+ .e-css.e-btn-group input:disabled + label.e-btn.e-info {
614
+ background-color: #f3f2f1;
615
+ border-color: #f3f2f1;
616
+ box-shadow: none;
617
+ color: #a19f9d;
618
+ outline: none;
619
+ border-color: #038387;
620
+ }
621
+
622
+ .e-btn-group .e-btn:disabled.e-warning,
623
+ .e-btn-group input:disabled + label.e-btn.e-warning,
624
+ .e-css.e-btn-group .e-btn:disabled.e-warning,
625
+ .e-css.e-btn-group input:disabled + label.e-btn.e-warning {
626
+ background-color: #f3f2f1;
627
+ border-color: #f3f2f1;
628
+ box-shadow: none;
629
+ color: #a19f9d;
630
+ outline: none;
631
+ border-color: #ca5010;
632
+ }
633
+
634
+ .e-btn-group .e-btn:disabled.e-danger,
635
+ .e-btn-group input:disabled + label.e-btn.e-danger,
636
+ .e-css.e-btn-group .e-btn:disabled.e-danger,
637
+ .e-css.e-btn-group input:disabled + label.e-btn.e-danger {
638
+ background-color: #f3f2f1;
639
+ border-color: #f3f2f1;
640
+ box-shadow: none;
641
+ color: #a19f9d;
642
+ outline: none;
643
+ border-color: #d13438;
644
+ }
645
+
646
+ .e-btn-group .e-btn:disabled.e-link,
647
+ .e-btn-group input:disabled + label.e-btn.e-link,
648
+ .e-css.e-btn-group .e-btn:disabled.e-link,
649
+ .e-css.e-btn-group input:disabled + label.e-btn.e-link {
650
+ color: #a19f9d;
651
+ background-color: transparent;
652
+ box-shadow: none;
653
+ text-decoration: none;
654
+ outline: none;
655
+ border-color: transparent;
656
+ }
657
+
658
+ .e-btn-group .e-btn:disabled.e-outline,
659
+ .e-btn-group input:disabled + label.e-btn.e-outline,
660
+ .e-css.e-btn-group .e-btn:disabled.e-outline,
661
+ .e-css.e-btn-group input:disabled + label.e-btn.e-outline {
662
+ background-color: transparent;
663
+ border-color: #f3f2f1;
664
+ box-shadow: none;
665
+ color: #a19f9d;
666
+ border-color: #8a8886;
667
+ }
668
+
669
+ .e-btn-group .e-btn:disabled.e-outline.e-primary,
670
+ .e-btn-group input:disabled + label.e-btn.e-outline.e-primary,
671
+ .e-css.e-btn-group .e-btn:disabled.e-outline.e-primary,
672
+ .e-css.e-btn-group input:disabled + label.e-btn.e-outline.e-primary {
673
+ background-color: transparent;
674
+ border-color: #f3f2f1;
675
+ box-shadow: none;
676
+ color: #a19f9d;
677
+ border-color: #0078d4;
678
+ }
679
+
680
+ .e-btn-group .e-btn:disabled.e-outline.e-success,
681
+ .e-btn-group input:disabled + label.e-btn.e-outline.e-success,
682
+ .e-css.e-btn-group .e-btn:disabled.e-outline.e-success,
683
+ .e-css.e-btn-group input:disabled + label.e-btn.e-outline.e-success {
684
+ background-color: transparent;
685
+ border-color: #f3f2f1;
686
+ box-shadow: none;
687
+ color: #a19f9d;
688
+ border-color: #0b6a0b;
689
+ }
690
+
691
+ .e-btn-group .e-btn:disabled.e-outline.e-info,
692
+ .e-btn-group input:disabled + label.e-btn.e-outline.e-info,
693
+ .e-css.e-btn-group .e-btn:disabled.e-outline.e-info,
694
+ .e-css.e-btn-group input:disabled + label.e-btn.e-outline.e-info {
695
+ background-color: transparent;
696
+ border-color: #f3f2f1;
697
+ box-shadow: none;
698
+ color: #a19f9d;
699
+ border-color: #038387;
700
+ }
701
+
702
+ .e-btn-group .e-btn:disabled.e-outline.e-warning,
703
+ .e-btn-group input:disabled + label.e-btn.e-outline.e-warning,
704
+ .e-css.e-btn-group .e-btn:disabled.e-outline.e-warning,
705
+ .e-css.e-btn-group input:disabled + label.e-btn.e-outline.e-warning {
706
+ background-color: transparent;
707
+ border-color: #f3f2f1;
708
+ box-shadow: none;
709
+ color: #a19f9d;
710
+ border-color: #ca5010;
711
+ }
712
+
713
+ .e-btn-group .e-btn:disabled.e-outline.e-danger,
714
+ .e-btn-group input:disabled + label.e-btn.e-outline.e-danger,
715
+ .e-css.e-btn-group .e-btn:disabled.e-outline.e-danger,
716
+ .e-css.e-btn-group input:disabled + label.e-btn.e-outline.e-danger {
717
+ background-color: transparent;
718
+ border-color: #f3f2f1;
719
+ box-shadow: none;
720
+ color: #a19f9d;
721
+ border-color: #d13438;
722
+ }
723
+
724
+ .e-btn-group:not(.e-vertical):not(.e-rtl) .e-outline:not(:first-of-type):not(:last-of-type),
725
+ .e-css.e-btn-group:not(.e-vertical):not(.e-rtl) .e-outline:not(:first-of-type):not(:last-of-type) {
726
+ border-left: transparent;
727
+ border-right: transparent;
728
+ }
729
+
730
+ .e-btn-group:not(.e-vertical):not(.e-rtl) .e-outline:first-of-type,
731
+ .e-css.e-btn-group:not(.e-vertical):not(.e-rtl) .e-outline:first-of-type {
732
+ border-right: transparent;
733
+ }
734
+
735
+ .e-btn-group:not(.e-vertical):not(.e-rtl) .e-outline:last-of-type,
736
+ .e-css.e-btn-group:not(.e-vertical):not(.e-rtl) .e-outline:last-of-type {
737
+ border-left: transparent;
738
+ }
739
+
740
+ .e-btn-group:not(.e-vertical):not(.e-rtl) .e-btn:focus.e-outline,
741
+ .e-btn-group:not(.e-vertical):not(.e-rtl) input:focus + label.e-btn.e-outline,
742
+ .e-css.e-btn-group:not(.e-vertical):not(.e-rtl) .e-btn:focus.e-outline,
743
+ .e-css.e-btn-group:not(.e-vertical):not(.e-rtl) input:focus + label.e-btn.e-outline {
744
+ border-color: #8a8886;
745
+ outline-color: inherit;
746
+ }
747
+
748
+ .e-btn-group:not(.e-vertical):not(.e-rtl) .e-btn:focus.e-outline.e-primary,
749
+ .e-btn-group:not(.e-vertical):not(.e-rtl) input:focus + label.e-btn.e-outline.e-primary,
750
+ .e-css.e-btn-group:not(.e-vertical):not(.e-rtl) .e-btn:focus.e-outline.e-primary,
751
+ .e-css.e-btn-group:not(.e-vertical):not(.e-rtl) input:focus + label.e-btn.e-outline.e-primary {
752
+ border-color: #0078d4;
753
+ outline-color: inherit;
754
+ }
755
+
756
+ .e-btn-group:not(.e-vertical):not(.e-rtl) .e-btn:focus.e-outline.e-success,
757
+ .e-btn-group:not(.e-vertical):not(.e-rtl) input:focus + label.e-btn.e-outline.e-success,
758
+ .e-css.e-btn-group:not(.e-vertical):not(.e-rtl) .e-btn:focus.e-outline.e-success,
759
+ .e-css.e-btn-group:not(.e-vertical):not(.e-rtl) input:focus + label.e-btn.e-outline.e-success {
760
+ border-color: #0b6a0b;
761
+ outline-color: inherit;
762
+ }
763
+
764
+ .e-btn-group:not(.e-vertical):not(.e-rtl) .e-btn:focus.e-outline.e-info,
765
+ .e-btn-group:not(.e-vertical):not(.e-rtl) input:focus + label.e-btn.e-outline.e-info,
766
+ .e-css.e-btn-group:not(.e-vertical):not(.e-rtl) .e-btn:focus.e-outline.e-info,
767
+ .e-css.e-btn-group:not(.e-vertical):not(.e-rtl) input:focus + label.e-btn.e-outline.e-info {
768
+ border-color: #038387;
769
+ outline-color: inherit;
770
+ }
771
+
772
+ .e-btn-group:not(.e-vertical):not(.e-rtl) .e-btn:focus.e-outline.e-warning,
773
+ .e-btn-group:not(.e-vertical):not(.e-rtl) input:focus + label.e-btn.e-outline.e-warning,
774
+ .e-css.e-btn-group:not(.e-vertical):not(.e-rtl) .e-btn:focus.e-outline.e-warning,
775
+ .e-css.e-btn-group:not(.e-vertical):not(.e-rtl) input:focus + label.e-btn.e-outline.e-warning {
776
+ border-color: #ca5010;
777
+ outline-color: inherit;
778
+ }
779
+
780
+ .e-btn-group:not(.e-vertical):not(.e-rtl) .e-btn:focus.e-outline.e-danger,
781
+ .e-btn-group:not(.e-vertical):not(.e-rtl) input:focus + label.e-btn.e-outline.e-danger,
782
+ .e-css.e-btn-group:not(.e-vertical):not(.e-rtl) .e-btn:focus.e-outline.e-danger,
783
+ .e-css.e-btn-group:not(.e-vertical):not(.e-rtl) input:focus + label.e-btn.e-outline.e-danger {
784
+ border-color: #d13438;
785
+ outline-color: inherit;
786
+ }
787
+
788
+ .e-btn-group.e-vertical:not(.e-rtl) .e-outline:not(:first-of-type):not(:last-of-type),
789
+ .e-css.e-btn-group.e-vertical:not(.e-rtl) .e-outline:not(:first-of-type):not(:last-of-type) {
790
+ border-bottom: transparent;
791
+ border-top: transparent;
792
+ }
793
+
794
+ .e-btn-group.e-vertical:not(.e-rtl) .e-outline:first-of-type,
795
+ .e-css.e-btn-group.e-vertical:not(.e-rtl) .e-outline:first-of-type {
796
+ border-bottom: transparent;
797
+ }
798
+
799
+ .e-btn-group.e-vertical:not(.e-rtl) .e-outline:last-of-type,
800
+ .e-css.e-btn-group.e-vertical:not(.e-rtl) .e-outline:last-of-type {
801
+ border-top: transparent;
802
+ }
803
+
804
+ .e-btn-group.e-vertical:not(.e-rtl) .e-btn:focus.e-outline,
805
+ .e-btn-group.e-vertical:not(.e-rtl) input:focus + label.e-btn.e-outline,
806
+ .e-css.e-btn-group.e-vertical:not(.e-rtl) .e-btn:focus.e-outline,
807
+ .e-css.e-btn-group.e-vertical:not(.e-rtl) input:focus + label.e-btn.e-outline {
808
+ border-color: #8a8886;
809
+ outline-color: inherit;
810
+ }
811
+
812
+ .e-btn-group.e-vertical:not(.e-rtl) .e-btn:focus.e-outline.e-primary,
813
+ .e-btn-group.e-vertical:not(.e-rtl) input:focus + label.e-btn.e-outline.e-primary,
814
+ .e-css.e-btn-group.e-vertical:not(.e-rtl) .e-btn:focus.e-outline.e-primary,
815
+ .e-css.e-btn-group.e-vertical:not(.e-rtl) input:focus + label.e-btn.e-outline.e-primary {
816
+ border-color: #0078d4;
817
+ outline-color: inherit;
818
+ }
819
+
820
+ .e-btn-group.e-vertical:not(.e-rtl) .e-btn:focus.e-outline.e-success,
821
+ .e-btn-group.e-vertical:not(.e-rtl) input:focus + label.e-btn.e-outline.e-success,
822
+ .e-css.e-btn-group.e-vertical:not(.e-rtl) .e-btn:focus.e-outline.e-success,
823
+ .e-css.e-btn-group.e-vertical:not(.e-rtl) input:focus + label.e-btn.e-outline.e-success {
824
+ border-color: #0b6a0b;
825
+ outline-color: inherit;
826
+ }
827
+
828
+ .e-btn-group.e-vertical:not(.e-rtl) .e-btn:focus.e-outline.e-info,
829
+ .e-btn-group.e-vertical:not(.e-rtl) input:focus + label.e-btn.e-outline.e-info,
830
+ .e-css.e-btn-group.e-vertical:not(.e-rtl) .e-btn:focus.e-outline.e-info,
831
+ .e-css.e-btn-group.e-vertical:not(.e-rtl) input:focus + label.e-btn.e-outline.e-info {
832
+ border-color: #038387;
833
+ outline-color: inherit;
834
+ }
835
+
836
+ .e-btn-group.e-vertical:not(.e-rtl) .e-btn:focus.e-outline.e-warning,
837
+ .e-btn-group.e-vertical:not(.e-rtl) input:focus + label.e-btn.e-outline.e-warning,
838
+ .e-css.e-btn-group.e-vertical:not(.e-rtl) .e-btn:focus.e-outline.e-warning,
839
+ .e-css.e-btn-group.e-vertical:not(.e-rtl) input:focus + label.e-btn.e-outline.e-warning {
840
+ border-color: #ca5010;
841
+ outline-color: inherit;
842
+ }
843
+
844
+ .e-btn-group.e-vertical:not(.e-rtl) .e-btn:focus.e-outline.e-danger,
845
+ .e-btn-group.e-vertical:not(.e-rtl) input:focus + label.e-btn.e-outline.e-danger,
846
+ .e-css.e-btn-group.e-vertical:not(.e-rtl) .e-btn:focus.e-outline.e-danger,
847
+ .e-css.e-btn-group.e-vertical:not(.e-rtl) input:focus + label.e-btn.e-outline.e-danger {
848
+ border-color: #d13438;
849
+ outline-color: inherit;
850
+ }
851
+
852
+ .e-btn-group.e-rtl .e-btn:not(:first-of-type):not(:last-of-type),
853
+ .e-css.e-btn-group.e-rtl .e-btn:not(:first-of-type):not(:last-of-type) {
854
+ border-left: transparent;
855
+ border-right: transparent;
856
+ }
857
+
858
+ .e-btn-group.e-rtl .e-btn:first-of-type,
859
+ .e-css.e-btn-group.e-rtl .e-btn:first-of-type {
860
+ border-left: transparent;
861
+ }
862
+
863
+ .e-btn-group.e-rtl .e-btn:last-of-type,
864
+ .e-css.e-btn-group.e-rtl .e-btn:last-of-type {
865
+ border-right: transparent;
866
+ }