@syncfusion/ej2-splitbuttons 19.2.62 → 19.3.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.
- package/.eslintrc.json +1 -1
- package/CHANGELOG.md +1 -1
- package/dist/ej2-splitbuttons.umd.min.js +2 -2
- package/dist/ej2-splitbuttons.umd.min.js.map +1 -1
- package/dist/es6/ej2-splitbuttons.es2015.js +39 -8
- package/dist/es6/ej2-splitbuttons.es2015.js.map +1 -1
- package/dist/es6/ej2-splitbuttons.es5.js +38 -7
- package/dist/es6/ej2-splitbuttons.es5.js.map +1 -1
- package/dist/global/ej2-splitbuttons.min.js +2 -2
- package/dist/global/ej2-splitbuttons.min.js.map +1 -1
- package/dist/global/index.d.ts +1 -1
- package/helpers/e2e/dropdownbuttonHelper.d.ts +42 -0
- package/helpers/e2e/dropdownbuttonHelper.js +39 -0
- package/helpers/e2e/index.d.ts +3 -0
- package/helpers/e2e/index.js +8 -0
- package/helpers/e2e/progressbuttonHelper.d.ts +37 -0
- package/helpers/e2e/progressbuttonHelper.js +36 -0
- package/helpers/e2e/splitbuttonHelper.d.ts +45 -0
- package/helpers/e2e/splitbuttonHelper.js +42 -0
- package/package.json +7 -7
- package/src/drop-down-button/drop-down-button.d.ts +2 -0
- package/src/drop-down-button/drop-down-button.js +37 -6
- package/src/split-button/split-button.d.ts +1 -1
- package/src/split-button/split-button.js +1 -1
- package/styles/bootstrap-dark.css +1 -31
- package/styles/bootstrap.css +1 -19
- package/styles/bootstrap4.css +1 -31
- package/styles/bootstrap5-dark.css +2105 -0
- package/styles/bootstrap5-dark.scss +4 -0
- package/styles/bootstrap5.css +2105 -0
- package/styles/bootstrap5.scss +4 -0
- package/styles/button-group/_bootstrap5-dark-definition.scss +1 -0
- package/styles/button-group/_bootstrap5-definition.scss +31 -0
- package/styles/button-group/_tailwind-dark-definition.scss +1 -30
- package/styles/button-group/_tailwind-definition.scss +1 -0
- package/styles/button-group/_theme.scss +35 -47
- package/styles/button-group/bootstrap-dark.css +1 -31
- package/styles/button-group/bootstrap.css +1 -19
- package/styles/button-group/bootstrap4.css +1 -31
- package/styles/button-group/bootstrap5-dark.css +842 -0
- package/styles/button-group/bootstrap5-dark.scss +4 -0
- package/styles/button-group/bootstrap5.css +842 -0
- package/styles/button-group/bootstrap5.scss +4 -0
- package/styles/button-group/fabric-dark.css +1 -31
- package/styles/button-group/fabric.css +1 -31
- package/styles/button-group/highcontrast-light.css +1 -31
- package/styles/button-group/highcontrast.css +1 -31
- package/styles/button-group/material-dark.css +5 -35
- package/styles/button-group/material.css +1 -31
- package/styles/button-group/tailwind-dark.css +1 -31
- package/styles/button-group/tailwind.css +1 -31
- package/styles/drop-down-button/_bootstrap5-dark-definition.scss +1 -0
- package/styles/drop-down-button/_bootstrap5-definition.scss +51 -0
- package/styles/drop-down-button/_layout.scss +12 -5
- package/styles/drop-down-button/_tailwind-dark-definition.scss +1 -48
- package/styles/drop-down-button/_tailwind-definition.scss +19 -17
- package/styles/drop-down-button/_theme.scss +6 -1
- package/styles/drop-down-button/bootstrap5-dark.css +248 -0
- package/styles/drop-down-button/bootstrap5-dark.scss +6 -0
- package/styles/drop-down-button/bootstrap5.css +248 -0
- package/styles/drop-down-button/bootstrap5.scss +6 -0
- package/styles/drop-down-button/icons/_bootstrap5-dark.scss +1 -0
- package/styles/drop-down-button/icons/_bootstrap5.scss +10 -0
- package/styles/drop-down-button/tailwind-dark.css +5 -0
- package/styles/drop-down-button/tailwind.css +5 -0
- package/styles/fabric-dark.css +1 -31
- package/styles/fabric.css +1 -31
- package/styles/highcontrast-light.css +1 -31
- package/styles/highcontrast.css +1 -31
- package/styles/material-dark.css +15 -45
- package/styles/material.css +2 -32
- package/styles/progress-button/_bootstrap5-dark-definition.scss +1 -0
- package/styles/progress-button/_bootstrap5-definition.scss +21 -0
- package/styles/progress-button/_tailwind-dark-definition.scss +1 -24
- package/styles/progress-button/_tailwind-definition.scss +6 -9
- package/styles/progress-button/_theme.scss +2 -2
- package/styles/progress-button/bootstrap5-dark.css +645 -0
- package/styles/progress-button/bootstrap5-dark.scss +5 -0
- package/styles/progress-button/bootstrap5.css +645 -0
- package/styles/progress-button/bootstrap5.scss +5 -0
- package/styles/progress-button/material-dark.css +9 -9
- package/styles/progress-button/tailwind-dark.css +10 -10
- package/styles/split-button/_bootstrap5-dark-definition.scss +1 -0
- package/styles/split-button/_bootstrap5-definition.scss +25 -0
- package/styles/split-button/_layout.scss +13 -9
- package/styles/split-button/_tailwind-dark-definition.scss +1 -23
- package/styles/split-button/_tailwind-definition.scss +7 -5
- package/styles/split-button/bootstrap5-dark.css +367 -0
- package/styles/split-button/bootstrap5-dark.scss +6 -0
- package/styles/split-button/bootstrap5.css +367 -0
- package/styles/split-button/bootstrap5.scss +6 -0
- package/styles/split-button/material-dark.css +1 -1
- package/styles/split-button/material.css +1 -1
- package/styles/split-button/tailwind-dark.css +2 -0
- package/styles/split-button/tailwind.css +2 -0
- package/styles/tailwind-dark.css +18 -41
- package/styles/tailwind.css +8 -31
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@import './bootstrap5-definition.scss';
|
|
@@ -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;
|
|
@@ -1,30 +1 @@
|
|
|
1
|
-
|
|
2
|
-
$btn-grp-margin-left: -1px !default;
|
|
3
|
-
$btn-grp-wrapper-border: 4px !default;
|
|
4
|
-
$btn-grp-round-radius: 20px !default;
|
|
5
|
-
$btn-grp-icon-font-size: 18px !default;
|
|
6
|
-
$btn-grp-icon-font-size-bigger: 22px !default;
|
|
7
|
-
|
|
8
|
-
//Normal Outline GroupButton
|
|
9
|
-
$btn-grp-outline-focus-border-color: $secondary-border-color !default;
|
|
10
|
-
$btn-grp-outline-focus-color: inherit !default;
|
|
11
|
-
|
|
12
|
-
//Outline Primary
|
|
13
|
-
$btn-grp-outline-primary-focus-border-color: $primary !default;
|
|
14
|
-
$btn-grp-outline-focus-primary-color: inherit !default;
|
|
15
|
-
|
|
16
|
-
//Outline Success
|
|
17
|
-
$btn-grp-outline-success-focus-border-color: $btn-success-focus-border-color !default;
|
|
18
|
-
$btn-grp-outline-focus-success-color: inherit !default;
|
|
19
|
-
|
|
20
|
-
//Outline Info
|
|
21
|
-
$btn-grp-outline-info-focus-border-color: $btn-info-focus-border-color !default;
|
|
22
|
-
$btn-grp-outline-focus-info-color: inherit !default;
|
|
23
|
-
|
|
24
|
-
//Outline warning
|
|
25
|
-
$btn-grp-outline-warning-focus-border-color: $btn-warning-focus-border-color !default;
|
|
26
|
-
$btn-grp-outline-focus-warning-color: inherit !default;
|
|
27
|
-
|
|
28
|
-
//Outline danger
|
|
29
|
-
$btn-grp-outline-danger-focus-border-color: $btn-danger-focus-border-color !default;
|
|
30
|
-
$btn-grp-outline-focus-danger-color: inherit !default;
|
|
1
|
+
@import './tailwind-definition.scss';
|
|
@@ -22,7 +22,9 @@
|
|
|
22
22
|
.e-btn:focus,
|
|
23
23
|
input:focus+label.e-btn {
|
|
24
24
|
@include button-focus;
|
|
25
|
-
|
|
25
|
+
@if $skin-name != 'bootstrap5' {
|
|
26
|
+
box-shadow: none;
|
|
27
|
+
}
|
|
26
28
|
outline-color: $btn-grp-outline-focus-color;
|
|
27
29
|
@if $skin-name == 'fabric' {
|
|
28
30
|
outline-offset: -2px;
|
|
@@ -34,7 +36,9 @@
|
|
|
34
36
|
|
|
35
37
|
&.e-primary {
|
|
36
38
|
@include primary-focus;
|
|
37
|
-
|
|
39
|
+
@if $skin-name != 'bootstrap5' {
|
|
40
|
+
box-shadow: none;
|
|
41
|
+
}
|
|
38
42
|
outline-color: $btn-grp-outline-focus-primary-color;
|
|
39
43
|
@if $skin-name == 'fabric' {
|
|
40
44
|
border-color: transparent;
|
|
@@ -43,7 +47,9 @@
|
|
|
43
47
|
|
|
44
48
|
&.e-success {
|
|
45
49
|
@include success-focus;
|
|
46
|
-
|
|
50
|
+
@if $skin-name != 'bootstrap5' {
|
|
51
|
+
box-shadow: none;
|
|
52
|
+
}
|
|
47
53
|
outline-color: $btn-grp-outline-focus-success-color;
|
|
48
54
|
@if $skin-name == 'fabric' {
|
|
49
55
|
border-color: transparent;
|
|
@@ -52,7 +58,9 @@
|
|
|
52
58
|
|
|
53
59
|
&.e-info {
|
|
54
60
|
@include info-focus;
|
|
55
|
-
|
|
61
|
+
@if $skin-name != 'bootstrap5' {
|
|
62
|
+
box-shadow: none;
|
|
63
|
+
}
|
|
56
64
|
outline-color: $btn-grp-outline-focus-info-color;
|
|
57
65
|
@if $skin-name == 'fabric' {
|
|
58
66
|
border-color: transparent;
|
|
@@ -61,7 +69,9 @@
|
|
|
61
69
|
|
|
62
70
|
&.e-warning {
|
|
63
71
|
@include warning-focus;
|
|
64
|
-
|
|
72
|
+
@if $skin-name != 'bootstrap5' {
|
|
73
|
+
box-shadow: none;
|
|
74
|
+
}
|
|
65
75
|
outline-color: $btn-grp-outline-focus-warning-color;
|
|
66
76
|
@if $skin-name == 'fabric' {
|
|
67
77
|
border-color: transparent;
|
|
@@ -70,7 +80,9 @@
|
|
|
70
80
|
|
|
71
81
|
&.e-danger {
|
|
72
82
|
@include danger-focus;
|
|
73
|
-
|
|
83
|
+
@if $skin-name != 'bootstrap5' {
|
|
84
|
+
box-shadow: none;
|
|
85
|
+
}
|
|
74
86
|
outline-color: $btn-grp-outline-focus-danger-color;
|
|
75
87
|
@if $skin-name == 'fabric' {
|
|
76
88
|
border-color: transparent;
|
|
@@ -87,31 +99,43 @@
|
|
|
87
99
|
|
|
88
100
|
&.e-outline {
|
|
89
101
|
@include outline-focus;
|
|
90
|
-
|
|
102
|
+
@if $skin-name != 'bootstrap5' {
|
|
103
|
+
box-shadow: none;
|
|
104
|
+
}
|
|
91
105
|
|
|
92
106
|
&.e-primary {
|
|
93
107
|
@include outline-primary-focus;
|
|
94
|
-
|
|
108
|
+
@if $skin-name != 'bootstrap5' {
|
|
109
|
+
box-shadow: none;
|
|
110
|
+
}
|
|
95
111
|
}
|
|
96
112
|
|
|
97
113
|
&.e-success {
|
|
98
114
|
@include outline-success-focus;
|
|
99
|
-
|
|
115
|
+
@if $skin-name != 'bootstrap5' {
|
|
116
|
+
box-shadow: none;
|
|
117
|
+
}
|
|
100
118
|
}
|
|
101
119
|
|
|
102
120
|
&.e-info {
|
|
103
121
|
@include outline-info-focus;
|
|
122
|
+
@if $skin-name != 'bootstrap5' {
|
|
104
123
|
box-shadow: none;
|
|
124
|
+
}
|
|
105
125
|
}
|
|
106
126
|
|
|
107
127
|
&.e-warning {
|
|
108
128
|
@include outline-warning-focus;
|
|
109
|
-
|
|
129
|
+
@if $skin-name != 'bootstrap5' {
|
|
130
|
+
box-shadow: none;
|
|
131
|
+
}
|
|
110
132
|
}
|
|
111
133
|
|
|
112
134
|
&.e-danger {
|
|
113
135
|
@include outline-danger-focus;
|
|
114
|
-
|
|
136
|
+
@if $skin-name != 'bootstrap5' {
|
|
137
|
+
box-shadow: none;
|
|
138
|
+
}
|
|
115
139
|
}
|
|
116
140
|
}
|
|
117
141
|
}
|
|
@@ -121,84 +145,48 @@
|
|
|
121
145
|
input:active+label.e-btn,
|
|
122
146
|
input:checked+label.e-btn {
|
|
123
147
|
@include button-active;
|
|
124
|
-
@if $skin-name != 'bootstrap' {
|
|
125
|
-
box-shadow: none;
|
|
126
|
-
}
|
|
127
148
|
|
|
128
149
|
&.e-primary {
|
|
129
150
|
@include primary-active;
|
|
130
|
-
@if $skin-name != 'bootstrap' {
|
|
131
|
-
box-shadow: none;
|
|
132
|
-
}
|
|
133
151
|
}
|
|
134
152
|
|
|
135
153
|
&.e-success {
|
|
136
154
|
@include success-active;
|
|
137
|
-
@if $skin-name != 'bootstrap' {
|
|
138
|
-
box-shadow: none;
|
|
139
|
-
}
|
|
140
155
|
}
|
|
141
156
|
|
|
142
157
|
&.e-info {
|
|
143
158
|
@include info-active;
|
|
144
|
-
@if $skin-name != 'bootstrap' {
|
|
145
|
-
box-shadow: none;
|
|
146
|
-
}
|
|
147
159
|
}
|
|
148
160
|
|
|
149
161
|
&.e-warning {
|
|
150
162
|
@include warning-active;
|
|
151
|
-
@if $skin-name != 'bootstrap' {
|
|
152
|
-
box-shadow: none;
|
|
153
|
-
}
|
|
154
163
|
}
|
|
155
164
|
|
|
156
165
|
&.e-danger {
|
|
157
166
|
@include danger-active;
|
|
158
|
-
@if $skin-name != 'bootstrap' {
|
|
159
|
-
box-shadow: none;
|
|
160
|
-
}
|
|
161
167
|
}
|
|
162
168
|
|
|
163
169
|
&.e-outline {
|
|
164
170
|
@include outline-active;
|
|
165
|
-
@if $skin-name != 'bootstrap' {
|
|
166
|
-
box-shadow: none;
|
|
167
|
-
}
|
|
168
171
|
|
|
169
172
|
&.e-primary {
|
|
170
173
|
@include outline-primary-active;
|
|
171
|
-
@if $skin-name != 'bootstrap' {
|
|
172
|
-
box-shadow: none;
|
|
173
|
-
}
|
|
174
174
|
}
|
|
175
175
|
|
|
176
176
|
&.e-success {
|
|
177
177
|
@include outline-success-active;
|
|
178
|
-
@if $skin-name != 'bootstrap' {
|
|
179
|
-
box-shadow: none;
|
|
180
|
-
}
|
|
181
178
|
}
|
|
182
179
|
|
|
183
180
|
&.e-info {
|
|
184
181
|
@include outline-info-active;
|
|
185
|
-
@if $skin-name != 'bootstrap' {
|
|
186
|
-
box-shadow: none;
|
|
187
|
-
}
|
|
188
182
|
}
|
|
189
183
|
|
|
190
184
|
&.e-warning {
|
|
191
185
|
@include outline-warning-active;
|
|
192
|
-
@if $skin-name != 'bootstrap' {
|
|
193
|
-
box-shadow: none;
|
|
194
|
-
}
|
|
195
186
|
}
|
|
196
187
|
|
|
197
188
|
&.e-danger {
|
|
198
189
|
@include outline-danger-active;
|
|
199
|
-
@if $skin-name != 'bootstrap' {
|
|
200
|
-
box-shadow: none;
|
|
201
|
-
}
|
|
202
190
|
}
|
|
203
191
|
}
|
|
204
192
|
}
|
|
@@ -389,9 +389,6 @@
|
|
|
389
389
|
.e-btn-group input:focus + label.e-btn.e-outline,
|
|
390
390
|
.e-css.e-btn-group .e-btn:focus.e-outline,
|
|
391
391
|
.e-css.e-btn-group input:focus + label.e-btn.e-outline {
|
|
392
|
-
background-color: #2a2a2a;
|
|
393
|
-
border-color: #585858;
|
|
394
|
-
color: #fff;
|
|
395
392
|
box-shadow: none;
|
|
396
393
|
box-shadow: none;
|
|
397
394
|
}
|
|
@@ -400,9 +397,6 @@
|
|
|
400
397
|
.e-btn-group input:focus + label.e-btn.e-outline.e-primary,
|
|
401
398
|
.e-css.e-btn-group .e-btn:focus.e-outline.e-primary,
|
|
402
399
|
.e-css.e-btn-group input:focus + label.e-btn.e-outline.e-primary {
|
|
403
|
-
background-color: #0058bd;
|
|
404
|
-
border-color: #0058bd;
|
|
405
|
-
color: #fff;
|
|
406
400
|
box-shadow: none;
|
|
407
401
|
}
|
|
408
402
|
|
|
@@ -410,9 +404,6 @@
|
|
|
410
404
|
.e-btn-group input:focus + label.e-btn.e-outline.e-success,
|
|
411
405
|
.e-css.e-btn-group .e-btn:focus.e-outline.e-success,
|
|
412
406
|
.e-css.e-btn-group input:focus + label.e-btn.e-outline.e-success {
|
|
413
|
-
background-color: #265e28;
|
|
414
|
-
border-color: #265e28;
|
|
415
|
-
color: #fff;
|
|
416
407
|
box-shadow: none;
|
|
417
408
|
}
|
|
418
409
|
|
|
@@ -420,9 +411,6 @@
|
|
|
420
411
|
.e-btn-group input:focus + label.e-btn.e-outline.e-info,
|
|
421
412
|
.e-css.e-btn-group .e-btn:focus.e-outline.e-info,
|
|
422
413
|
.e-css.e-btn-group input:focus + label.e-btn.e-outline.e-info {
|
|
423
|
-
background-color: #1b6d7b;
|
|
424
|
-
border-color: #175b66;
|
|
425
|
-
color: #fff;
|
|
426
414
|
box-shadow: none;
|
|
427
415
|
}
|
|
428
416
|
|
|
@@ -430,9 +418,6 @@
|
|
|
430
418
|
.e-btn-group input:focus + label.e-btn.e-outline.e-warning,
|
|
431
419
|
.e-css.e-btn-group .e-btn:focus.e-outline.e-warning,
|
|
432
420
|
.e-css.e-btn-group input:focus + label.e-btn.e-outline.e-warning {
|
|
433
|
-
background-color: #dd8907;
|
|
434
|
-
border-color: #7a4c04;
|
|
435
|
-
color: #000;
|
|
436
421
|
box-shadow: none;
|
|
437
422
|
}
|
|
438
423
|
|
|
@@ -440,9 +425,6 @@
|
|
|
440
425
|
.e-btn-group input:focus + label.e-btn.e-outline.e-danger,
|
|
441
426
|
.e-css.e-btn-group .e-btn:focus.e-outline.e-danger,
|
|
442
427
|
.e-css.e-btn-group input:focus + label.e-btn.e-outline.e-danger {
|
|
443
|
-
background-color: #ac2a2a;
|
|
444
|
-
border-color: #982525;
|
|
445
|
-
color: #fff;
|
|
446
428
|
box-shadow: none;
|
|
447
429
|
}
|
|
448
430
|
|
|
@@ -458,7 +440,6 @@
|
|
|
458
440
|
outline: #393939 0 solid;
|
|
459
441
|
outline-offset: 0;
|
|
460
442
|
box-shadow: inset 0 4px 5px rgba(26, 26, 26, 0.4);
|
|
461
|
-
box-shadow: none;
|
|
462
443
|
}
|
|
463
444
|
|
|
464
445
|
.e-btn-group .e-btn:active.e-primary,
|
|
@@ -472,7 +453,6 @@
|
|
|
472
453
|
color: #fff;
|
|
473
454
|
outline: #393939 0 solid;
|
|
474
455
|
box-shadow: inset 0 4px 5px rgba(26, 26, 26, 0.4);
|
|
475
|
-
box-shadow: none;
|
|
476
456
|
}
|
|
477
457
|
|
|
478
458
|
.e-btn-group .e-btn:active.e-success,
|
|
@@ -485,7 +465,6 @@
|
|
|
485
465
|
border-color: #265e28;
|
|
486
466
|
color: #fff;
|
|
487
467
|
box-shadow: inset 0 4px 5px rgba(26, 26, 26, 0.4);
|
|
488
|
-
box-shadow: none;
|
|
489
468
|
}
|
|
490
469
|
|
|
491
470
|
.e-btn-group .e-btn:active.e-info,
|
|
@@ -495,10 +474,9 @@
|
|
|
495
474
|
.e-css.e-btn-group input:active + label.e-btn.e-info,
|
|
496
475
|
.e-css.e-btn-group input:checked + label.e-btn.e-info {
|
|
497
476
|
background-color: #124851;
|
|
498
|
-
border-color: #175b66;
|
|
499
477
|
color: #fff;
|
|
478
|
+
border-color: #175b66;
|
|
500
479
|
box-shadow: inset 0 4px 5px rgba(26, 26, 26, 0.4);
|
|
501
|
-
box-shadow: none;
|
|
502
480
|
}
|
|
503
481
|
|
|
504
482
|
.e-btn-group .e-btn:active.e-warning,
|
|
@@ -511,7 +489,6 @@
|
|
|
511
489
|
border-color: #ab6a05;
|
|
512
490
|
color: #000;
|
|
513
491
|
box-shadow: inset 0 4px 5px rgba(26, 26, 26, 0.4);
|
|
514
|
-
box-shadow: none;
|
|
515
492
|
}
|
|
516
493
|
|
|
517
494
|
.e-btn-group .e-btn:active.e-danger,
|
|
@@ -524,7 +501,6 @@
|
|
|
524
501
|
border-color: #982525;
|
|
525
502
|
color: #fff;
|
|
526
503
|
box-shadow: inset 0 4px 5px rgba(26, 26, 26, 0.4);
|
|
527
|
-
box-shadow: none;
|
|
528
504
|
}
|
|
529
505
|
|
|
530
506
|
.e-btn-group .e-btn:active.e-outline,
|
|
@@ -537,7 +513,6 @@
|
|
|
537
513
|
border-color: #585858;
|
|
538
514
|
box-shadow: inset 0 4px 5px rgba(26, 26, 26, 0.4);
|
|
539
515
|
color: #fff;
|
|
540
|
-
box-shadow: none;
|
|
541
516
|
}
|
|
542
517
|
|
|
543
518
|
.e-btn-group .e-btn:active.e-outline.e-primary,
|
|
@@ -550,7 +525,6 @@
|
|
|
550
525
|
border-color: #0058bd;
|
|
551
526
|
box-shadow: inset 0 4px 5px rgba(26, 26, 26, 0.4);
|
|
552
527
|
color: #fff;
|
|
553
|
-
box-shadow: none;
|
|
554
528
|
}
|
|
555
529
|
|
|
556
530
|
.e-btn-group .e-btn:active.e-outline.e-success,
|
|
@@ -563,7 +537,6 @@
|
|
|
563
537
|
border-color: #265e28;
|
|
564
538
|
box-shadow: inset 0 4px 5px rgba(26, 26, 26, 0.4);
|
|
565
539
|
color: #fff;
|
|
566
|
-
box-shadow: none;
|
|
567
540
|
}
|
|
568
541
|
|
|
569
542
|
.e-btn-group .e-btn:active.e-outline.e-info,
|
|
@@ -576,7 +549,6 @@
|
|
|
576
549
|
border-color: #175b66;
|
|
577
550
|
box-shadow: inset 0 4px 5px rgba(26, 26, 26, 0.4);
|
|
578
551
|
color: #fff;
|
|
579
|
-
box-shadow: none;
|
|
580
552
|
}
|
|
581
553
|
|
|
582
554
|
.e-btn-group .e-btn:active.e-outline.e-warning,
|
|
@@ -589,7 +561,6 @@
|
|
|
589
561
|
border-color: #ab6a05;
|
|
590
562
|
box-shadow: inset 0 4px 5px rgba(26, 26, 26, 0.4);
|
|
591
563
|
color: #000;
|
|
592
|
-
box-shadow: none;
|
|
593
564
|
}
|
|
594
565
|
|
|
595
566
|
.e-btn-group .e-btn:active.e-outline.e-danger,
|
|
@@ -602,7 +573,6 @@
|
|
|
602
573
|
border-color: #982525;
|
|
603
574
|
box-shadow: inset 0 4px 5px rgba(26, 26, 26, 0.4);
|
|
604
575
|
color: #fff;
|
|
605
|
-
box-shadow: none;
|
|
606
576
|
}
|
|
607
577
|
|
|
608
578
|
.e-btn-group .e-btn:disabled,
|
|
@@ -389,9 +389,6 @@
|
|
|
389
389
|
.e-btn-group input:focus + label.e-btn.e-outline,
|
|
390
390
|
.e-css.e-btn-group .e-btn:focus.e-outline,
|
|
391
391
|
.e-css.e-btn-group input:focus + label.e-btn.e-outline {
|
|
392
|
-
background-color: #e6e6e6;
|
|
393
|
-
border-color: #8c8c8c;
|
|
394
|
-
color: #333;
|
|
395
392
|
box-shadow: none;
|
|
396
393
|
box-shadow: none;
|
|
397
394
|
}
|
|
@@ -400,9 +397,6 @@
|
|
|
400
397
|
.e-btn-group input:focus + label.e-btn.e-outline.e-primary,
|
|
401
398
|
.e-css.e-btn-group .e-btn:focus.e-outline.e-primary,
|
|
402
399
|
.e-css.e-btn-group input:focus + label.e-btn.e-outline.e-primary {
|
|
403
|
-
background-color: #21527d;
|
|
404
|
-
border-color: #0c1d2c;
|
|
405
|
-
color: #fff;
|
|
406
400
|
box-shadow: none;
|
|
407
401
|
}
|
|
408
402
|
|
|
@@ -410,9 +404,6 @@
|
|
|
410
404
|
.e-btn-group input:focus + label.e-btn.e-outline.e-success,
|
|
411
405
|
.e-css.e-btn-group .e-btn:focus.e-outline.e-success,
|
|
412
406
|
.e-css.e-btn-group input:focus + label.e-btn.e-outline.e-success {
|
|
413
|
-
background-color: #124a1f;
|
|
414
|
-
border-color: black;
|
|
415
|
-
color: #fff;
|
|
416
407
|
box-shadow: none;
|
|
417
408
|
}
|
|
418
409
|
|
|
@@ -420,9 +411,6 @@
|
|
|
420
411
|
.e-btn-group input:focus + label.e-btn.e-outline.e-info,
|
|
421
412
|
.e-css.e-btn-group .e-btn:focus.e-outline.e-info,
|
|
422
413
|
.e-css.e-btn-group input:focus + label.e-btn.e-outline.e-info {
|
|
423
|
-
background-color: #104b5d;
|
|
424
|
-
border-color: #010406;
|
|
425
|
-
color: #fff;
|
|
426
414
|
box-shadow: none;
|
|
427
415
|
}
|
|
428
416
|
|
|
@@ -430,9 +418,6 @@
|
|
|
430
418
|
.e-btn-group input:focus + label.e-btn.e-outline.e-warning,
|
|
431
419
|
.e-css.e-btn-group .e-btn:focus.e-outline.e-warning,
|
|
432
420
|
.e-css.e-btn-group input:focus + label.e-btn.e-outline.e-warning {
|
|
433
|
-
background-color: #613b05;
|
|
434
|
-
border-color: black;
|
|
435
|
-
color: #fff;
|
|
436
421
|
box-shadow: none;
|
|
437
422
|
}
|
|
438
423
|
|
|
@@ -440,9 +425,6 @@
|
|
|
440
425
|
.e-btn-group input:focus + label.e-btn.e-outline.e-danger,
|
|
441
426
|
.e-css.e-btn-group .e-btn:focus.e-outline.e-danger,
|
|
442
427
|
.e-css.e-btn-group input:focus + label.e-btn.e-outline.e-danger {
|
|
443
|
-
background-color: #a51c2a;
|
|
444
|
-
border-color: #4e0d14;
|
|
445
|
-
color: #fff;
|
|
446
428
|
box-shadow: none;
|
|
447
429
|
}
|
|
448
430
|
|
|
@@ -492,8 +474,8 @@
|
|
|
492
474
|
.e-css.e-btn-group input:active + label.e-btn.e-info,
|
|
493
475
|
.e-css.e-btn-group input:checked + label.e-btn.e-info {
|
|
494
476
|
background-color: #104b5d;
|
|
495
|
-
border-color: #082831;
|
|
496
477
|
color: #fff;
|
|
478
|
+
border-color: #082831;
|
|
497
479
|
box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
|
|
498
480
|
}
|
|
499
481
|
|
|
@@ -397,9 +397,6 @@
|
|
|
397
397
|
.e-btn-group input:focus + label.e-btn.e-outline,
|
|
398
398
|
.e-css.e-btn-group .e-btn:focus.e-outline,
|
|
399
399
|
.e-css.e-btn-group input:focus + label.e-btn.e-outline {
|
|
400
|
-
background-color: #6c757d;
|
|
401
|
-
border-color: #6c757d;
|
|
402
|
-
color: #fff;
|
|
403
400
|
box-shadow: 0 0 0 0.25em rgba(108, 117, 125, 0.5);
|
|
404
401
|
box-shadow: none;
|
|
405
402
|
}
|
|
@@ -408,9 +405,6 @@
|
|
|
408
405
|
.e-btn-group input:focus + label.e-btn.e-outline.e-primary,
|
|
409
406
|
.e-css.e-btn-group .e-btn:focus.e-outline.e-primary,
|
|
410
407
|
.e-css.e-btn-group input:focus + label.e-btn.e-outline.e-primary {
|
|
411
|
-
background-color: #007bff;
|
|
412
|
-
border-color: #007bff;
|
|
413
|
-
color: #fff;
|
|
414
408
|
box-shadow: 0 0 0 0.25em rgba(0, 123, 255, 0.5);
|
|
415
409
|
box-shadow: none;
|
|
416
410
|
}
|
|
@@ -419,9 +413,6 @@
|
|
|
419
413
|
.e-btn-group input:focus + label.e-btn.e-outline.e-success,
|
|
420
414
|
.e-css.e-btn-group .e-btn:focus.e-outline.e-success,
|
|
421
415
|
.e-css.e-btn-group input:focus + label.e-btn.e-outline.e-success {
|
|
422
|
-
background-color: #28a745;
|
|
423
|
-
border-color: #28a745;
|
|
424
|
-
color: #fff;
|
|
425
416
|
box-shadow: 0 0 0 0.25em rgba(40, 167, 69, 0.5);
|
|
426
417
|
box-shadow: none;
|
|
427
418
|
}
|
|
@@ -430,9 +421,6 @@
|
|
|
430
421
|
.e-btn-group input:focus + label.e-btn.e-outline.e-info,
|
|
431
422
|
.e-css.e-btn-group .e-btn:focus.e-outline.e-info,
|
|
432
423
|
.e-css.e-btn-group input:focus + label.e-btn.e-outline.e-info {
|
|
433
|
-
background-color: #138496;
|
|
434
|
-
border-color: #17a2b8;
|
|
435
|
-
color: #fff;
|
|
436
424
|
box-shadow: 0 0 0 0.25em rgba(23, 162, 184, 0.5);
|
|
437
425
|
box-shadow: none;
|
|
438
426
|
}
|
|
@@ -441,9 +429,6 @@
|
|
|
441
429
|
.e-btn-group input:focus + label.e-btn.e-outline.e-warning,
|
|
442
430
|
.e-css.e-btn-group .e-btn:focus.e-outline.e-warning,
|
|
443
431
|
.e-css.e-btn-group input:focus + label.e-btn.e-outline.e-warning {
|
|
444
|
-
background-color: #e0a800;
|
|
445
|
-
border-color: #ffc107;
|
|
446
|
-
color: #212529;
|
|
447
432
|
box-shadow: 0 0 0 0.25em rgba(255, 193, 7, 0.5);
|
|
448
433
|
box-shadow: none;
|
|
449
434
|
}
|
|
@@ -452,9 +437,6 @@
|
|
|
452
437
|
.e-btn-group input:focus + label.e-btn.e-outline.e-danger,
|
|
453
438
|
.e-css.e-btn-group .e-btn:focus.e-outline.e-danger,
|
|
454
439
|
.e-css.e-btn-group input:focus + label.e-btn.e-outline.e-danger {
|
|
455
|
-
background-color: #c82333;
|
|
456
|
-
border-color: #dc3545;
|
|
457
|
-
color: #fff;
|
|
458
440
|
box-shadow: 0 0 0 0.25em rgba(220, 53, 69, 0.5);
|
|
459
441
|
box-shadow: none;
|
|
460
442
|
}
|
|
@@ -471,7 +453,6 @@
|
|
|
471
453
|
outline: #6c757d 0 solid;
|
|
472
454
|
outline-offset: 0;
|
|
473
455
|
box-shadow: 0 0 0 0.25em rgba(79, 85, 91, 0.5);
|
|
474
|
-
box-shadow: none;
|
|
475
456
|
}
|
|
476
457
|
|
|
477
458
|
.e-btn-group .e-btn:active.e-primary,
|
|
@@ -485,7 +466,6 @@
|
|
|
485
466
|
color: #fff;
|
|
486
467
|
outline: #6c757d 0 solid;
|
|
487
468
|
box-shadow: 0 0 0 0.25em rgba(0, 92, 191, 0.5);
|
|
488
|
-
box-shadow: none;
|
|
489
469
|
}
|
|
490
470
|
|
|
491
471
|
.e-btn-group .e-btn:active.e-success,
|
|
@@ -498,7 +478,6 @@
|
|
|
498
478
|
border-color: #1c7430;
|
|
499
479
|
color: #fff;
|
|
500
480
|
box-shadow: 0 0 0 0.25em rgba(28, 116, 48, 0.5);
|
|
501
|
-
box-shadow: none;
|
|
502
481
|
}
|
|
503
482
|
|
|
504
483
|
.e-btn-group .e-btn:active.e-info,
|
|
@@ -508,10 +487,9 @@
|
|
|
508
487
|
.e-css.e-btn-group input:active + label.e-btn.e-info,
|
|
509
488
|
.e-css.e-btn-group input:checked + label.e-btn.e-info {
|
|
510
489
|
background-color: #117a8b;
|
|
511
|
-
border-color: #10707f;
|
|
512
490
|
color: #fff;
|
|
491
|
+
border-color: #10707f;
|
|
513
492
|
box-shadow: 0 0 0 0.25em rgba(16, 112, 128, 0.5);
|
|
514
|
-
box-shadow: none;
|
|
515
493
|
}
|
|
516
494
|
|
|
517
495
|
.e-btn-group .e-btn:active.e-warning,
|
|
@@ -524,7 +502,6 @@
|
|
|
524
502
|
border-color: #c69500;
|
|
525
503
|
color: #212529;
|
|
526
504
|
box-shadow: 0 0 0 0.25em rgba(198, 149, 0, 0.5);
|
|
527
|
-
box-shadow: none;
|
|
528
505
|
}
|
|
529
506
|
|
|
530
507
|
.e-btn-group .e-btn:active.e-danger,
|
|
@@ -537,7 +514,6 @@
|
|
|
537
514
|
border-color: #b21f2d;
|
|
538
515
|
color: #fff;
|
|
539
516
|
box-shadow: 0 0 0 0.25em rgba(178, 31, 45, 0.5);
|
|
540
|
-
box-shadow: none;
|
|
541
517
|
}
|
|
542
518
|
|
|
543
519
|
.e-btn-group .e-btn:active.e-outline,
|
|
@@ -550,7 +526,6 @@
|
|
|
550
526
|
border-color: transparent;
|
|
551
527
|
box-shadow: 0 0 0 0.25em rgba(79, 85, 91, 0.5);
|
|
552
528
|
color: #fff;
|
|
553
|
-
box-shadow: none;
|
|
554
529
|
}
|
|
555
530
|
|
|
556
531
|
.e-btn-group .e-btn:active.e-outline.e-primary,
|
|
@@ -563,7 +538,6 @@
|
|
|
563
538
|
border-color: transparent;
|
|
564
539
|
box-shadow: 0 0 0 0.25em rgba(0, 123, 255, 0.5);
|
|
565
540
|
color: #fff;
|
|
566
|
-
box-shadow: none;
|
|
567
541
|
}
|
|
568
542
|
|
|
569
543
|
.e-btn-group .e-btn:active.e-outline.e-success,
|
|
@@ -576,7 +550,6 @@
|
|
|
576
550
|
border-color: transparent;
|
|
577
551
|
box-shadow: 0 0 0 0.25em rgba(28, 116, 48, 0.5);
|
|
578
552
|
color: #fff;
|
|
579
|
-
box-shadow: none;
|
|
580
553
|
}
|
|
581
554
|
|
|
582
555
|
.e-btn-group .e-btn:active.e-outline.e-info,
|
|
@@ -589,7 +562,6 @@
|
|
|
589
562
|
border-color: transparent;
|
|
590
563
|
box-shadow: 0 0 0 0.25em rgba(16, 112, 128, 0.5);
|
|
591
564
|
color: #fff;
|
|
592
|
-
box-shadow: none;
|
|
593
565
|
}
|
|
594
566
|
|
|
595
567
|
.e-btn-group .e-btn:active.e-outline.e-warning,
|
|
@@ -602,7 +574,6 @@
|
|
|
602
574
|
border-color: transparent;
|
|
603
575
|
box-shadow: 0 0 0 0.25em rgba(198, 149, 0, 0.5);
|
|
604
576
|
color: #212529;
|
|
605
|
-
box-shadow: none;
|
|
606
577
|
}
|
|
607
578
|
|
|
608
579
|
.e-btn-group .e-btn:active.e-outline.e-danger,
|
|
@@ -615,7 +586,6 @@
|
|
|
615
586
|
border-color: transparent;
|
|
616
587
|
box-shadow: 0 0 0 0.25em rgba(178, 31, 45, 0.5);
|
|
617
588
|
color: #fff;
|
|
618
|
-
box-shadow: none;
|
|
619
589
|
}
|
|
620
590
|
|
|
621
591
|
.e-btn-group .e-btn:disabled,
|