@syncfusion/ej2-vue-splitbuttons 19.2.55 → 19.3.44

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 (65) hide show
  1. package/CHANGELOG.md +8 -0
  2. package/dist/ej2-vue-splitbuttons.umd.min.js +2 -11
  3. package/dist/ej2-vue-splitbuttons.umd.min.js.map +1 -1
  4. package/dist/es6/ej2-vue-splitbuttons.es2015.js +73 -1
  5. package/dist/es6/ej2-vue-splitbuttons.es2015.js.map +1 -1
  6. package/dist/es6/ej2-vue-splitbuttons.es5.js +79 -1
  7. package/dist/es6/ej2-vue-splitbuttons.es5.js.map +1 -1
  8. package/dist/global/ej2-vue-splitbuttons.min.js +2 -2
  9. package/package.json +8 -8
  10. package/src/drop-down-button/dropdownbutton.component.d.ts +2 -0
  11. package/src/drop-down-button/dropdownbutton.component.js +27 -1
  12. package/src/progress-button/progressbutton.component.d.ts +2 -0
  13. package/src/progress-button/progressbutton.component.js +27 -1
  14. package/src/split-button/splitbutton.component.d.ts +2 -0
  15. package/src/split-button/splitbutton.component.js +27 -1
  16. package/styles/bootstrap-dark.css +1 -31
  17. package/styles/bootstrap.css +1 -19
  18. package/styles/bootstrap4.css +1 -31
  19. package/styles/bootstrap5-dark.css +2105 -0
  20. package/styles/bootstrap5-dark.scss +4 -0
  21. package/styles/bootstrap5.css +2105 -0
  22. package/styles/bootstrap5.scss +4 -0
  23. package/styles/button-group/bootstrap-dark.css +1 -31
  24. package/styles/button-group/bootstrap.css +1 -19
  25. package/styles/button-group/bootstrap4.css +1 -31
  26. package/styles/button-group/bootstrap5-dark.css +842 -0
  27. package/styles/button-group/bootstrap5-dark.scss +1 -0
  28. package/styles/button-group/bootstrap5.css +842 -0
  29. package/styles/button-group/bootstrap5.scss +1 -0
  30. package/styles/button-group/fabric-dark.css +1 -31
  31. package/styles/button-group/fabric.css +1 -31
  32. package/styles/button-group/highcontrast-light.css +1 -31
  33. package/styles/button-group/highcontrast.css +1 -31
  34. package/styles/button-group/material-dark.css +5 -35
  35. package/styles/button-group/material.css +1 -31
  36. package/styles/button-group/tailwind-dark.css +1 -31
  37. package/styles/button-group/tailwind.css +1 -31
  38. package/styles/drop-down-button/bootstrap5-dark.css +248 -0
  39. package/styles/drop-down-button/bootstrap5-dark.scss +1 -0
  40. package/styles/drop-down-button/bootstrap5.css +248 -0
  41. package/styles/drop-down-button/bootstrap5.scss +1 -0
  42. package/styles/drop-down-button/tailwind-dark.css +5 -0
  43. package/styles/drop-down-button/tailwind.css +5 -0
  44. package/styles/fabric-dark.css +1 -31
  45. package/styles/fabric.css +1 -31
  46. package/styles/highcontrast-light.css +1 -31
  47. package/styles/highcontrast.css +1 -31
  48. package/styles/material-dark.css +15 -45
  49. package/styles/material.css +2 -32
  50. package/styles/progress-button/bootstrap5-dark.css +645 -0
  51. package/styles/progress-button/bootstrap5-dark.scss +1 -0
  52. package/styles/progress-button/bootstrap5.css +645 -0
  53. package/styles/progress-button/bootstrap5.scss +1 -0
  54. package/styles/progress-button/material-dark.css +9 -9
  55. package/styles/progress-button/tailwind-dark.css +10 -10
  56. package/styles/split-button/bootstrap5-dark.css +367 -0
  57. package/styles/split-button/bootstrap5-dark.scss +1 -0
  58. package/styles/split-button/bootstrap5.css +367 -0
  59. package/styles/split-button/bootstrap5.scss +1 -0
  60. package/styles/split-button/material-dark.css +1 -1
  61. package/styles/split-button/material.css +1 -1
  62. package/styles/split-button/tailwind-dark.css +2 -0
  63. package/styles/split-button/tailwind.css +2 -0
  64. package/styles/tailwind-dark.css +18 -41
  65. package/styles/tailwind.css +8 -31
@@ -0,0 +1,842 @@
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: 0 2px 4px rgba(0, 0, 0, 0.075);
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: #5c636a;
305
+ border-color: #6c757d;
306
+ color: #fff;
307
+ outline: #6c757d 0 solid;
308
+ outline-offset: 0;
309
+ box-shadow: 0 0 0 4px rgba(130, 138, 145, 0.5);
310
+ outline-color: inherit;
311
+ }
312
+
313
+ .e-btn-group .e-btn:focus.e-primary,
314
+ .e-btn-group input:focus + label.e-btn.e-primary,
315
+ .e-css.e-btn-group .e-btn:focus.e-primary,
316
+ .e-css.e-btn-group input:focus + label.e-btn.e-primary {
317
+ background-color: #0b5ed7;
318
+ border-color: #0d6efd;
319
+ color: #fff;
320
+ outline: #6c757d 0 solid;
321
+ box-shadow: 0 0 0 4px rgba(49, 132, 253, 0.5);
322
+ outline-color: inherit;
323
+ }
324
+
325
+ .e-btn-group .e-btn:focus.e-success,
326
+ .e-btn-group input:focus + label.e-btn.e-success,
327
+ .e-css.e-btn-group .e-btn:focus.e-success,
328
+ .e-css.e-btn-group input:focus + label.e-btn.e-success {
329
+ background-color: #157347;
330
+ border-color: #198754;
331
+ color: #fff;
332
+ box-shadow: 0 0 0 4px rgba(66, 190, 132, 0.5);
333
+ outline-color: inherit;
334
+ }
335
+
336
+ .e-btn-group .e-btn:focus.e-info,
337
+ .e-btn-group input:focus + label.e-btn.e-info,
338
+ .e-css.e-btn-group .e-btn:focus.e-info,
339
+ .e-css.e-btn-group input:focus + label.e-btn.e-info {
340
+ background-color: #31d2f2;
341
+ border-color: #0dcaf0;
342
+ color: #000;
343
+ box-shadow: 0 0 0 4px rgba(49, 210, 242, 0.5);
344
+ outline-color: inherit;
345
+ }
346
+
347
+ .e-btn-group .e-btn:focus.e-warning,
348
+ .e-btn-group input:focus + label.e-btn.e-warning,
349
+ .e-css.e-btn-group .e-btn:focus.e-warning,
350
+ .e-css.e-btn-group input:focus + label.e-btn.e-warning {
351
+ background-color: #ffca2c;
352
+ border-color: #ffc107;
353
+ color: #000;
354
+ box-shadow: 0 0 0 4px rgba(255, 202, 44, 0.5);
355
+ outline-color: inherit;
356
+ }
357
+
358
+ .e-btn-group .e-btn:focus.e-danger,
359
+ .e-btn-group input:focus + label.e-btn.e-danger,
360
+ .e-css.e-btn-group .e-btn:focus.e-danger,
361
+ .e-css.e-btn-group input:focus + label.e-btn.e-danger {
362
+ background-color: #bb2d3b;
363
+ border-color: #dc3545;
364
+ color: #fff;
365
+ box-shadow: 0 0 0 4px rgba(232, 120, 131, 0.5);
366
+ outline-color: inherit;
367
+ }
368
+
369
+ .e-btn-group .e-btn:focus.e-link,
370
+ .e-btn-group input:focus + label.e-btn.e-link,
371
+ .e-css.e-btn-group .e-btn:focus.e-link,
372
+ .e-css.e-btn-group input:focus + label.e-btn.e-link {
373
+ border-radius: 0;
374
+ text-decoration: underline;
375
+ color: #0a58ca;
376
+ background-color: transparent;
377
+ border-color: transparent;
378
+ box-shadow: none;
379
+ outline: none;
380
+ }
381
+
382
+ .e-btn-group .e-btn:focus.e-outline,
383
+ .e-btn-group input:focus + label.e-btn.e-outline,
384
+ .e-css.e-btn-group .e-btn:focus.e-outline,
385
+ .e-css.e-btn-group input:focus + label.e-btn.e-outline {
386
+ box-shadow: 0 0 0 4px rgba(130, 138, 145, 0.5);
387
+ }
388
+
389
+ .e-btn-group .e-btn:focus.e-outline.e-primary,
390
+ .e-btn-group input:focus + label.e-btn.e-outline.e-primary,
391
+ .e-css.e-btn-group .e-btn:focus.e-outline.e-primary,
392
+ .e-css.e-btn-group input:focus + label.e-btn.e-outline.e-primary {
393
+ box-shadow: 0 0 0 4px rgba(49, 132, 253, 0.5);
394
+ }
395
+
396
+ .e-btn-group .e-btn:focus.e-outline.e-success,
397
+ .e-btn-group input:focus + label.e-btn.e-outline.e-success,
398
+ .e-css.e-btn-group .e-btn:focus.e-outline.e-success,
399
+ .e-css.e-btn-group input:focus + label.e-btn.e-outline.e-success {
400
+ box-shadow: 0 0 0 4px rgba(66, 190, 132, 0.5);
401
+ }
402
+
403
+ .e-btn-group .e-btn:focus.e-outline.e-info,
404
+ .e-btn-group input:focus + label.e-btn.e-outline.e-info,
405
+ .e-css.e-btn-group .e-btn:focus.e-outline.e-info,
406
+ .e-css.e-btn-group input:focus + label.e-btn.e-outline.e-info {
407
+ box-shadow: 0 0 0 4px rgba(49, 210, 242, 0.5);
408
+ }
409
+
410
+ .e-btn-group .e-btn:focus.e-outline.e-warning,
411
+ .e-btn-group input:focus + label.e-btn.e-outline.e-warning,
412
+ .e-css.e-btn-group .e-btn:focus.e-outline.e-warning,
413
+ .e-css.e-btn-group input:focus + label.e-btn.e-outline.e-warning {
414
+ box-shadow: 0 0 0 4px rgba(255, 202, 44, 0.5);
415
+ }
416
+
417
+ .e-btn-group .e-btn:focus.e-outline.e-danger,
418
+ .e-btn-group input:focus + label.e-btn.e-outline.e-danger,
419
+ .e-css.e-btn-group .e-btn:focus.e-outline.e-danger,
420
+ .e-css.e-btn-group input:focus + label.e-btn.e-outline.e-danger {
421
+ box-shadow: 0 0 0 4px rgba(232, 120, 131, 0.5);
422
+ }
423
+
424
+ .e-btn-group .e-btn:active,
425
+ .e-btn-group input:active + label.e-btn,
426
+ .e-btn-group input:checked + label.e-btn,
427
+ .e-css.e-btn-group .e-btn:active,
428
+ .e-css.e-btn-group input:active + label.e-btn,
429
+ .e-css.e-btn-group input:checked + label.e-btn {
430
+ background-color: #565e64;
431
+ border-color: #51585e;
432
+ color: #fff;
433
+ outline: #6c757d 0 solid;
434
+ outline-offset: 0;
435
+ }
436
+
437
+ .e-btn-group .e-btn:active.e-primary,
438
+ .e-btn-group input:active + label.e-btn.e-primary,
439
+ .e-btn-group input:checked + label.e-btn.e-primary,
440
+ .e-css.e-btn-group .e-btn:active.e-primary,
441
+ .e-css.e-btn-group input:active + label.e-btn.e-primary,
442
+ .e-css.e-btn-group input:checked + label.e-btn.e-primary {
443
+ background-color: #0a58ca;
444
+ border-color: #0a53be;
445
+ color: #fff;
446
+ outline: #6c757d 0 solid;
447
+ }
448
+
449
+ .e-btn-group .e-btn:active.e-success,
450
+ .e-btn-group input:active + label.e-btn.e-success,
451
+ .e-btn-group input:checked + label.e-btn.e-success,
452
+ .e-css.e-btn-group .e-btn:active.e-success,
453
+ .e-css.e-btn-group input:active + label.e-btn.e-success,
454
+ .e-css.e-btn-group input:checked + label.e-btn.e-success {
455
+ background-color: #146c43;
456
+ border-color: #13653f;
457
+ color: #fff;
458
+ }
459
+
460
+ .e-btn-group .e-btn:active.e-info,
461
+ .e-btn-group input:active + label.e-btn.e-info,
462
+ .e-btn-group input:checked + label.e-btn.e-info,
463
+ .e-css.e-btn-group .e-btn:active.e-info,
464
+ .e-css.e-btn-group input:active + label.e-btn.e-info,
465
+ .e-css.e-btn-group input:checked + label.e-btn.e-info {
466
+ background-color: #3dd5f3;
467
+ color: #000;
468
+ border-color: #25cff2;
469
+ }
470
+
471
+ .e-btn-group .e-btn:active.e-warning,
472
+ .e-btn-group input:active + label.e-btn.e-warning,
473
+ .e-btn-group input:checked + label.e-btn.e-warning,
474
+ .e-css.e-btn-group .e-btn:active.e-warning,
475
+ .e-css.e-btn-group input:active + label.e-btn.e-warning,
476
+ .e-css.e-btn-group input:checked + label.e-btn.e-warning {
477
+ background-color: #ffcd39;
478
+ border-color: #ffc720;
479
+ color: #000;
480
+ }
481
+
482
+ .e-btn-group .e-btn:active.e-danger,
483
+ .e-btn-group input:active + label.e-btn.e-danger,
484
+ .e-btn-group input:checked + label.e-btn.e-danger,
485
+ .e-css.e-btn-group .e-btn:active.e-danger,
486
+ .e-css.e-btn-group input:active + label.e-btn.e-danger,
487
+ .e-css.e-btn-group input:checked + label.e-btn.e-danger {
488
+ background-color: #b02a37;
489
+ border-color: #a52834;
490
+ color: #fff;
491
+ }
492
+
493
+ .e-btn-group .e-btn:active.e-outline,
494
+ .e-btn-group input:active + label.e-btn.e-outline,
495
+ .e-btn-group input:checked + label.e-btn.e-outline,
496
+ .e-css.e-btn-group .e-btn:active.e-outline,
497
+ .e-css.e-btn-group input:active + label.e-btn.e-outline,
498
+ .e-css.e-btn-group input:checked + label.e-btn.e-outline {
499
+ background-color: #565e64;
500
+ border-color: #51585e;
501
+ color: #fff;
502
+ }
503
+
504
+ .e-btn-group .e-btn:active.e-outline.e-primary,
505
+ .e-btn-group input:active + label.e-btn.e-outline.e-primary,
506
+ .e-btn-group input:checked + label.e-btn.e-outline.e-primary,
507
+ .e-css.e-btn-group .e-btn:active.e-outline.e-primary,
508
+ .e-css.e-btn-group input:active + label.e-btn.e-outline.e-primary,
509
+ .e-css.e-btn-group input:checked + label.e-btn.e-outline.e-primary {
510
+ background-color: #0d6efd;
511
+ color: #fff;
512
+ }
513
+
514
+ .e-btn-group .e-btn:active.e-outline.e-success,
515
+ .e-btn-group input:active + label.e-btn.e-outline.e-success,
516
+ .e-btn-group input:checked + label.e-btn.e-outline.e-success,
517
+ .e-css.e-btn-group .e-btn:active.e-outline.e-success,
518
+ .e-css.e-btn-group input:active + label.e-btn.e-outline.e-success,
519
+ .e-css.e-btn-group input:checked + label.e-btn.e-outline.e-success {
520
+ background-color: #146c43;
521
+ border-color: #13653f;
522
+ color: #fff;
523
+ }
524
+
525
+ .e-btn-group .e-btn:active.e-outline.e-info,
526
+ .e-btn-group input:active + label.e-btn.e-outline.e-info,
527
+ .e-btn-group input:checked + label.e-btn.e-outline.e-info,
528
+ .e-css.e-btn-group .e-btn:active.e-outline.e-info,
529
+ .e-css.e-btn-group input:active + label.e-btn.e-outline.e-info,
530
+ .e-css.e-btn-group input:checked + label.e-btn.e-outline.e-info {
531
+ background-color: #0dcaf0;
532
+ color: #000;
533
+ }
534
+
535
+ .e-btn-group .e-btn:active.e-outline.e-warning,
536
+ .e-btn-group input:active + label.e-btn.e-outline.e-warning,
537
+ .e-btn-group input:checked + label.e-btn.e-outline.e-warning,
538
+ .e-css.e-btn-group .e-btn:active.e-outline.e-warning,
539
+ .e-css.e-btn-group input:active + label.e-btn.e-outline.e-warning,
540
+ .e-css.e-btn-group input:checked + label.e-btn.e-outline.e-warning {
541
+ background-color: #ffcd39;
542
+ border-color: #ffc720;
543
+ color: #000;
544
+ }
545
+
546
+ .e-btn-group .e-btn:active.e-outline.e-danger,
547
+ .e-btn-group input:active + label.e-btn.e-outline.e-danger,
548
+ .e-btn-group input:checked + label.e-btn.e-outline.e-danger,
549
+ .e-css.e-btn-group .e-btn:active.e-outline.e-danger,
550
+ .e-css.e-btn-group input:active + label.e-btn.e-outline.e-danger,
551
+ .e-css.e-btn-group input:checked + label.e-btn.e-outline.e-danger {
552
+ background-color: #b02a37;
553
+ border-color: #a52834;
554
+ color: #fff;
555
+ }
556
+
557
+ .e-btn-group .e-btn:disabled,
558
+ .e-btn-group input:disabled + label.e-btn,
559
+ .e-css.e-btn-group .e-btn:disabled,
560
+ .e-css.e-btn-group input:disabled + label.e-btn {
561
+ background-color: rgba(108, 117, 125, 0.65);
562
+ border-color: rgba(108, 117, 125, 0.65);
563
+ box-shadow: none;
564
+ color: rgba(255, 255, 255, 0.65);
565
+ border-color: #6c757d;
566
+ }
567
+
568
+ .e-btn-group .e-btn:disabled.e-primary,
569
+ .e-btn-group input:disabled + label.e-btn.e-primary,
570
+ .e-css.e-btn-group .e-btn:disabled.e-primary,
571
+ .e-css.e-btn-group input:disabled + label.e-btn.e-primary {
572
+ background-color: rgba(13, 110, 253, 0.65);
573
+ border-color: rgba(13, 110, 253, 0.65);
574
+ box-shadow: none;
575
+ color: rgba(255, 255, 255, 0.65);
576
+ border-color: #0d6efd;
577
+ }
578
+
579
+ .e-btn-group .e-btn:disabled.e-success,
580
+ .e-btn-group input:disabled + label.e-btn.e-success,
581
+ .e-css.e-btn-group .e-btn:disabled.e-success,
582
+ .e-css.e-btn-group input:disabled + label.e-btn.e-success {
583
+ background-color: rgba(25, 135, 84, 0.65);
584
+ border-color: rgba(25, 135, 84, 0.65);
585
+ box-shadow: none;
586
+ color: rgba(255, 255, 255, 0.65);
587
+ border-color: #198754;
588
+ }
589
+
590
+ .e-btn-group .e-btn:disabled.e-info,
591
+ .e-btn-group input:disabled + label.e-btn.e-info,
592
+ .e-css.e-btn-group .e-btn:disabled.e-info,
593
+ .e-css.e-btn-group input:disabled + label.e-btn.e-info {
594
+ background-color: rgba(13, 202, 240, 0.65);
595
+ border-color: rgba(13, 202, 240, 0.65);
596
+ box-shadow: none;
597
+ color: rgba(0, 0, 0, 0.65);
598
+ border-color: #0dcaf0;
599
+ }
600
+
601
+ .e-btn-group .e-btn:disabled.e-warning,
602
+ .e-btn-group input:disabled + label.e-btn.e-warning,
603
+ .e-css.e-btn-group .e-btn:disabled.e-warning,
604
+ .e-css.e-btn-group input:disabled + label.e-btn.e-warning {
605
+ background-color: rgba(255, 193, 7, 0.65);
606
+ border-color: rgba(255, 193, 7, 0.65);
607
+ box-shadow: none;
608
+ color: rgba(0, 0, 0, 0.65);
609
+ border-color: #ffc107;
610
+ }
611
+
612
+ .e-btn-group .e-btn:disabled.e-danger,
613
+ .e-btn-group input:disabled + label.e-btn.e-danger,
614
+ .e-css.e-btn-group .e-btn:disabled.e-danger,
615
+ .e-css.e-btn-group input:disabled + label.e-btn.e-danger {
616
+ background-color: rgba(220, 53, 69, 0.65);
617
+ border-color: rgba(220, 53, 69, 0.65);
618
+ box-shadow: none;
619
+ color: rgba(0, 0, 0, 0.65);
620
+ border-color: #dc3545;
621
+ }
622
+
623
+ .e-btn-group .e-btn:disabled.e-link,
624
+ .e-btn-group input:disabled + label.e-btn.e-link,
625
+ .e-css.e-btn-group .e-btn:disabled.e-link,
626
+ .e-css.e-btn-group input:disabled + label.e-btn.e-link {
627
+ color: rgba(108, 117, 125, 0.65);
628
+ text-decoration: underline;
629
+ background-color: transparent;
630
+ box-shadow: none;
631
+ text-decoration: none;
632
+ border-color: transparent;
633
+ }
634
+
635
+ .e-btn-group .e-btn:disabled.e-outline,
636
+ .e-btn-group input:disabled + label.e-btn.e-outline,
637
+ .e-css.e-btn-group .e-btn:disabled.e-outline,
638
+ .e-css.e-btn-group input:disabled + label.e-btn.e-outline {
639
+ background-color: transparent;
640
+ border-color: rgba(108, 117, 125, 0.65);
641
+ color: #565e64;
642
+ border-color: #6c757d;
643
+ }
644
+
645
+ .e-btn-group .e-btn:disabled.e-outline.e-primary,
646
+ .e-btn-group input:disabled + label.e-btn.e-outline.e-primary,
647
+ .e-css.e-btn-group .e-btn:disabled.e-outline.e-primary,
648
+ .e-css.e-btn-group input:disabled + label.e-btn.e-outline.e-primary {
649
+ background-color: rgba(13, 110, 253, 0.65);
650
+ border-color: rgba(13, 110, 253, 0.65);
651
+ box-shadow: none;
652
+ color: rgba(255, 255, 255, 0.65);
653
+ border-color: #0d6efd;
654
+ }
655
+
656
+ .e-btn-group .e-btn:disabled.e-outline.e-success,
657
+ .e-btn-group input:disabled + label.e-btn.e-outline.e-success,
658
+ .e-css.e-btn-group .e-btn:disabled.e-outline.e-success,
659
+ .e-css.e-btn-group input:disabled + label.e-btn.e-outline.e-success {
660
+ background-color: rgba(25, 135, 84, 0.65);
661
+ border-color: rgba(25, 135, 84, 0.65);
662
+ box-shadow: none;
663
+ color: rgba(255, 255, 255, 0.65);
664
+ border-color: #198754;
665
+ }
666
+
667
+ .e-btn-group .e-btn:disabled.e-outline.e-info,
668
+ .e-btn-group input:disabled + label.e-btn.e-outline.e-info,
669
+ .e-css.e-btn-group .e-btn:disabled.e-outline.e-info,
670
+ .e-css.e-btn-group input:disabled + label.e-btn.e-outline.e-info {
671
+ background-color: rgba(13, 202, 240, 0.65);
672
+ border-color: rgba(13, 202, 240, 0.65);
673
+ box-shadow: none;
674
+ color: rgba(0, 0, 0, 0.65);
675
+ border-color: #0dcaf0;
676
+ }
677
+
678
+ .e-btn-group .e-btn:disabled.e-outline.e-warning,
679
+ .e-btn-group input:disabled + label.e-btn.e-outline.e-warning,
680
+ .e-css.e-btn-group .e-btn:disabled.e-outline.e-warning,
681
+ .e-css.e-btn-group input:disabled + label.e-btn.e-outline.e-warning {
682
+ background-color: rgba(255, 193, 7, 0.65);
683
+ border-color: rgba(255, 193, 7, 0.65);
684
+ box-shadow: none;
685
+ color: rgba(0, 0, 0, 0.65);
686
+ border-color: #ffc107;
687
+ }
688
+
689
+ .e-btn-group .e-btn:disabled.e-outline.e-danger,
690
+ .e-btn-group input:disabled + label.e-btn.e-outline.e-danger,
691
+ .e-css.e-btn-group .e-btn:disabled.e-outline.e-danger,
692
+ .e-css.e-btn-group input:disabled + label.e-btn.e-outline.e-danger {
693
+ background-color: rgba(220, 53, 69, 0.65);
694
+ border-color: rgba(220, 53, 69, 0.65);
695
+ box-shadow: none;
696
+ color: rgba(255, 255, 255, 0.65);
697
+ border-color: #dc3545;
698
+ }
699
+
700
+ .e-btn-group:not(.e-vertical):not(.e-rtl) .e-outline:not(:first-of-type):not(:last-of-type),
701
+ .e-css.e-btn-group:not(.e-vertical):not(.e-rtl) .e-outline:not(:first-of-type):not(:last-of-type) {
702
+ border-left: transparent;
703
+ border-right: transparent;
704
+ }
705
+
706
+ .e-btn-group:not(.e-vertical):not(.e-rtl) .e-outline:first-of-type,
707
+ .e-css.e-btn-group:not(.e-vertical):not(.e-rtl) .e-outline:first-of-type {
708
+ border-right: transparent;
709
+ }
710
+
711
+ .e-btn-group:not(.e-vertical):not(.e-rtl) .e-outline:last-of-type,
712
+ .e-css.e-btn-group:not(.e-vertical):not(.e-rtl) .e-outline:last-of-type {
713
+ border-left: transparent;
714
+ }
715
+
716
+ .e-btn-group:not(.e-vertical):not(.e-rtl) .e-btn:focus.e-outline,
717
+ .e-btn-group:not(.e-vertical):not(.e-rtl) input:focus + label.e-btn.e-outline,
718
+ .e-css.e-btn-group:not(.e-vertical):not(.e-rtl) .e-btn:focus.e-outline,
719
+ .e-css.e-btn-group:not(.e-vertical):not(.e-rtl) input:focus + label.e-btn.e-outline {
720
+ border-color: #6c757d;
721
+ outline-color: inherit;
722
+ }
723
+
724
+ .e-btn-group:not(.e-vertical):not(.e-rtl) .e-btn:focus.e-outline.e-primary,
725
+ .e-btn-group:not(.e-vertical):not(.e-rtl) input:focus + label.e-btn.e-outline.e-primary,
726
+ .e-css.e-btn-group:not(.e-vertical):not(.e-rtl) .e-btn:focus.e-outline.e-primary,
727
+ .e-css.e-btn-group:not(.e-vertical):not(.e-rtl) input:focus + label.e-btn.e-outline.e-primary {
728
+ border-color: #0d6efd;
729
+ outline-color: inherit;
730
+ }
731
+
732
+ .e-btn-group:not(.e-vertical):not(.e-rtl) .e-btn:focus.e-outline.e-success,
733
+ .e-btn-group:not(.e-vertical):not(.e-rtl) input:focus + label.e-btn.e-outline.e-success,
734
+ .e-css.e-btn-group:not(.e-vertical):not(.e-rtl) .e-btn:focus.e-outline.e-success,
735
+ .e-css.e-btn-group:not(.e-vertical):not(.e-rtl) input:focus + label.e-btn.e-outline.e-success {
736
+ border-color: #198754;
737
+ outline-color: inherit;
738
+ }
739
+
740
+ .e-btn-group:not(.e-vertical):not(.e-rtl) .e-btn:focus.e-outline.e-info,
741
+ .e-btn-group:not(.e-vertical):not(.e-rtl) input:focus + label.e-btn.e-outline.e-info,
742
+ .e-css.e-btn-group:not(.e-vertical):not(.e-rtl) .e-btn:focus.e-outline.e-info,
743
+ .e-css.e-btn-group:not(.e-vertical):not(.e-rtl) input:focus + label.e-btn.e-outline.e-info {
744
+ border-color: #0dcaf0;
745
+ outline-color: inherit;
746
+ }
747
+
748
+ .e-btn-group:not(.e-vertical):not(.e-rtl) .e-btn:focus.e-outline.e-warning,
749
+ .e-btn-group:not(.e-vertical):not(.e-rtl) input:focus + label.e-btn.e-outline.e-warning,
750
+ .e-css.e-btn-group:not(.e-vertical):not(.e-rtl) .e-btn:focus.e-outline.e-warning,
751
+ .e-css.e-btn-group:not(.e-vertical):not(.e-rtl) input:focus + label.e-btn.e-outline.e-warning {
752
+ border-color: #ffc107;
753
+ outline-color: inherit;
754
+ }
755
+
756
+ .e-btn-group:not(.e-vertical):not(.e-rtl) .e-btn:focus.e-outline.e-danger,
757
+ .e-btn-group:not(.e-vertical):not(.e-rtl) input:focus + label.e-btn.e-outline.e-danger,
758
+ .e-css.e-btn-group:not(.e-vertical):not(.e-rtl) .e-btn:focus.e-outline.e-danger,
759
+ .e-css.e-btn-group:not(.e-vertical):not(.e-rtl) input:focus + label.e-btn.e-outline.e-danger {
760
+ border-color: #dc3545;
761
+ outline-color: inherit;
762
+ }
763
+
764
+ .e-btn-group.e-vertical:not(.e-rtl) .e-outline:not(:first-of-type):not(:last-of-type),
765
+ .e-css.e-btn-group.e-vertical:not(.e-rtl) .e-outline:not(:first-of-type):not(:last-of-type) {
766
+ border-bottom: transparent;
767
+ border-top: transparent;
768
+ }
769
+
770
+ .e-btn-group.e-vertical:not(.e-rtl) .e-outline:first-of-type,
771
+ .e-css.e-btn-group.e-vertical:not(.e-rtl) .e-outline:first-of-type {
772
+ border-bottom: transparent;
773
+ }
774
+
775
+ .e-btn-group.e-vertical:not(.e-rtl) .e-outline:last-of-type,
776
+ .e-css.e-btn-group.e-vertical:not(.e-rtl) .e-outline:last-of-type {
777
+ border-top: transparent;
778
+ }
779
+
780
+ .e-btn-group.e-vertical:not(.e-rtl) .e-btn:focus.e-outline,
781
+ .e-btn-group.e-vertical:not(.e-rtl) input:focus + label.e-btn.e-outline,
782
+ .e-css.e-btn-group.e-vertical:not(.e-rtl) .e-btn:focus.e-outline,
783
+ .e-css.e-btn-group.e-vertical:not(.e-rtl) input:focus + label.e-btn.e-outline {
784
+ border-color: #6c757d;
785
+ outline-color: inherit;
786
+ }
787
+
788
+ .e-btn-group.e-vertical:not(.e-rtl) .e-btn:focus.e-outline.e-primary,
789
+ .e-btn-group.e-vertical:not(.e-rtl) input:focus + label.e-btn.e-outline.e-primary,
790
+ .e-css.e-btn-group.e-vertical:not(.e-rtl) .e-btn:focus.e-outline.e-primary,
791
+ .e-css.e-btn-group.e-vertical:not(.e-rtl) input:focus + label.e-btn.e-outline.e-primary {
792
+ border-color: #0d6efd;
793
+ outline-color: inherit;
794
+ }
795
+
796
+ .e-btn-group.e-vertical:not(.e-rtl) .e-btn:focus.e-outline.e-success,
797
+ .e-btn-group.e-vertical:not(.e-rtl) input:focus + label.e-btn.e-outline.e-success,
798
+ .e-css.e-btn-group.e-vertical:not(.e-rtl) .e-btn:focus.e-outline.e-success,
799
+ .e-css.e-btn-group.e-vertical:not(.e-rtl) input:focus + label.e-btn.e-outline.e-success {
800
+ border-color: #198754;
801
+ outline-color: inherit;
802
+ }
803
+
804
+ .e-btn-group.e-vertical:not(.e-rtl) .e-btn:focus.e-outline.e-info,
805
+ .e-btn-group.e-vertical:not(.e-rtl) input:focus + label.e-btn.e-outline.e-info,
806
+ .e-css.e-btn-group.e-vertical:not(.e-rtl) .e-btn:focus.e-outline.e-info,
807
+ .e-css.e-btn-group.e-vertical:not(.e-rtl) input:focus + label.e-btn.e-outline.e-info {
808
+ border-color: #0dcaf0;
809
+ outline-color: inherit;
810
+ }
811
+
812
+ .e-btn-group.e-vertical:not(.e-rtl) .e-btn:focus.e-outline.e-warning,
813
+ .e-btn-group.e-vertical:not(.e-rtl) input:focus + label.e-btn.e-outline.e-warning,
814
+ .e-css.e-btn-group.e-vertical:not(.e-rtl) .e-btn:focus.e-outline.e-warning,
815
+ .e-css.e-btn-group.e-vertical:not(.e-rtl) input:focus + label.e-btn.e-outline.e-warning {
816
+ border-color: #ffc107;
817
+ outline-color: inherit;
818
+ }
819
+
820
+ .e-btn-group.e-vertical:not(.e-rtl) .e-btn:focus.e-outline.e-danger,
821
+ .e-btn-group.e-vertical:not(.e-rtl) input:focus + label.e-btn.e-outline.e-danger,
822
+ .e-css.e-btn-group.e-vertical:not(.e-rtl) .e-btn:focus.e-outline.e-danger,
823
+ .e-css.e-btn-group.e-vertical:not(.e-rtl) input:focus + label.e-btn.e-outline.e-danger {
824
+ border-color: #dc3545;
825
+ outline-color: inherit;
826
+ }
827
+
828
+ .e-btn-group.e-rtl .e-btn:not(:first-of-type):not(:last-of-type),
829
+ .e-css.e-btn-group.e-rtl .e-btn:not(:first-of-type):not(:last-of-type) {
830
+ border-left: transparent;
831
+ border-right: transparent;
832
+ }
833
+
834
+ .e-btn-group.e-rtl .e-btn:first-of-type,
835
+ .e-css.e-btn-group.e-rtl .e-btn:first-of-type {
836
+ border-left: transparent;
837
+ }
838
+
839
+ .e-btn-group.e-rtl .e-btn:last-of-type,
840
+ .e-css.e-btn-group.e-rtl .e-btn:last-of-type {
841
+ border-right: transparent;
842
+ }