@syncfusion/ej2-splitbuttons 25.2.4 → 26.1.35
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.eslintrc.json +3 -2
- package/dist/ej2-splitbuttons.min.js +2 -2
- package/dist/ej2-splitbuttons.umd.min.js +2 -2
- package/dist/ej2-splitbuttons.umd.min.js.map +1 -1
- package/dist/es6/ej2-splitbuttons.es2015.js +29 -48
- package/dist/es6/ej2-splitbuttons.es2015.js.map +1 -1
- package/dist/es6/ej2-splitbuttons.es5.js +30 -45
- package/dist/es6/ej2-splitbuttons.es5.js.map +1 -1
- package/dist/global/ej2-splitbuttons.min.js +2 -2
- package/dist/global/ej2-splitbuttons.min.js.map +1 -1
- package/dist/global/index.d.ts +1 -1
- package/package.json +8 -8
- package/src/drop-down-button/drop-down-button.js +6 -1
- package/src/progress-button/progress-button.js +3 -3
- package/src/split-button/split-button.js +2 -1
- package/styles/bootstrap-dark.css +263 -97
- package/styles/bootstrap-dark.scss +14 -4
- package/styles/bootstrap.css +263 -97
- package/styles/bootstrap.scss +14 -4
- package/styles/bootstrap4.css +227 -80
- package/styles/bootstrap4.scss +14 -4
- package/styles/bootstrap5-dark.css +227 -174
- package/styles/bootstrap5-dark.scss +14 -4
- package/styles/bootstrap5.css +227 -174
- package/styles/bootstrap5.scss +14 -4
- package/styles/button-group/_bootstrap-dark-definition.scss +0 -2
- package/styles/button-group/_bootstrap5.3-definition.scss +31 -0
- package/styles/button-group/_fabric-dark-definition.scss +0 -2
- package/styles/button-group/_fluent2-definition.scss +31 -0
- package/styles/button-group/_group-button-mixin.scss +21 -0
- package/styles/button-group/_highcontrast-light-definition.scss +0 -2
- package/styles/button-group/_layout.scss +5 -13
- package/styles/button-group/_material-dark-definition.scss +0 -2
- package/styles/button-group/_theme.scss +30 -84
- package/styles/button-group/bootstrap-dark.css +93 -57
- package/styles/button-group/bootstrap.css +93 -57
- package/styles/button-group/bootstrap4.css +69 -46
- package/styles/button-group/bootstrap5-dark.css +69 -46
- package/styles/button-group/bootstrap5.css +69 -46
- package/styles/button-group/fabric-dark.css +93 -57
- package/styles/button-group/fabric.css +98 -62
- package/styles/button-group/fluent-dark.css +109 -65
- package/styles/button-group/fluent.css +109 -65
- package/styles/button-group/fluent2.css +1849 -0
- package/styles/button-group/fluent2.scss +4 -0
- package/styles/button-group/highcontrast-light.css +93 -57
- package/styles/button-group/highcontrast.css +93 -57
- package/styles/button-group/material-dark.css +107 -64
- package/styles/button-group/material.css +109 -65
- package/styles/button-group/material3-dark.css +151 -77
- package/styles/button-group/material3.css +151 -77
- package/styles/button-group/tailwind-dark.css +91 -57
- package/styles/button-group/tailwind.css +91 -57
- package/styles/drop-down-button/_bds-definition.scss +5 -5
- package/styles/drop-down-button/_bootstrap-dark-definition.scss +0 -3
- package/styles/drop-down-button/_bootstrap5-definition.scss +0 -1
- package/styles/drop-down-button/_bootstrap5.3-definition.scss +49 -0
- package/styles/drop-down-button/_fabric-dark-definition.scss +0 -3
- package/styles/drop-down-button/_fluent-definition.scss +0 -1
- package/styles/drop-down-button/_fluent2-definition.scss +48 -0
- package/styles/drop-down-button/_fusionnew-definition.scss +0 -1
- package/styles/drop-down-button/_highcontrast-light-definition.scss +0 -3
- package/styles/drop-down-button/_layout.scss +51 -6
- package/styles/drop-down-button/_material-dark-definition.scss +0 -3
- package/styles/drop-down-button/_material3-definition.scss +0 -1
- package/styles/drop-down-button/_tailwind-definition.scss +0 -1
- package/styles/drop-down-button/_theme.scss +8 -8
- package/styles/drop-down-button/bootstrap-dark.css +27 -14
- package/styles/drop-down-button/bootstrap.css +27 -14
- package/styles/drop-down-button/bootstrap4.css +23 -12
- package/styles/drop-down-button/bootstrap5-dark.css +23 -12
- package/styles/drop-down-button/bootstrap5.css +23 -12
- package/styles/drop-down-button/fabric-dark.css +27 -14
- package/styles/drop-down-button/fabric.css +27 -14
- package/styles/drop-down-button/fluent-dark.css +27 -14
- package/styles/drop-down-button/fluent.css +27 -14
- package/styles/drop-down-button/fluent2.css +1308 -0
- package/styles/drop-down-button/fluent2.scss +6 -0
- package/styles/drop-down-button/highcontrast-light.css +27 -14
- package/styles/drop-down-button/highcontrast.css +27 -14
- package/styles/drop-down-button/icons/_bootstrap5.3.scss +10 -0
- package/styles/drop-down-button/icons/_fluent2.scss +10 -0
- package/styles/drop-down-button/material-dark.css +27 -14
- package/styles/drop-down-button/material.css +27 -14
- package/styles/drop-down-button/material3-dark.css +33 -17
- package/styles/drop-down-button/material3.css +33 -17
- package/styles/drop-down-button/tailwind-dark.css +27 -14
- package/styles/drop-down-button/tailwind.css +27 -14
- package/styles/fabric-dark.css +263 -97
- package/styles/fabric-dark.scss +14 -4
- package/styles/fabric.css +268 -102
- package/styles/fabric.scss +14 -4
- package/styles/fluent-dark.css +271 -102
- package/styles/fluent-dark.scss +14 -4
- package/styles/fluent.css +271 -102
- package/styles/fluent.scss +14 -4
- package/styles/fluent2.css +3072 -0
- package/styles/fluent2.scss +14 -0
- package/styles/highcontrast-light.css +263 -97
- package/styles/highcontrast-light.scss +14 -4
- package/styles/highcontrast.css +263 -97
- package/styles/highcontrast.scss +14 -4
- package/styles/material-dark.css +277 -104
- package/styles/material-dark.scss +14 -4
- package/styles/material.css +279 -105
- package/styles/material.scss +14 -4
- package/styles/material3-dark.css +357 -134
- package/styles/material3-dark.scss +14 -4
- package/styles/material3.css +353 -132
- package/styles/material3.scss +14 -4
- package/styles/progress-button/_bootstrap-dark-definition.scss +0 -3
- package/styles/progress-button/_bootstrap5-definition.scss +0 -1
- package/styles/progress-button/_bootstrap5.3-definition.scss +20 -0
- package/styles/progress-button/_fabric-dark-definition.scss +0 -3
- package/styles/progress-button/_fluent-definition.scss +0 -1
- package/styles/progress-button/_fluent2-definition.scss +26 -0
- package/styles/progress-button/_fusionnew-definition.scss +0 -1
- package/styles/progress-button/_layout.scss +0 -2
- package/styles/progress-button/_material-dark-definition.scss +0 -3
- package/styles/progress-button/_material3-definition.scss +0 -1
- package/styles/progress-button/_tailwind-definition.scss +0 -1
- package/styles/progress-button/_theme.scss +115 -50
- package/styles/progress-button/bootstrap-dark.css +118 -13
- package/styles/progress-button/bootstrap.css +118 -13
- package/styles/progress-button/bootstrap4.css +118 -13
- package/styles/progress-button/bootstrap5-dark.css +118 -106
- package/styles/progress-button/bootstrap5.css +118 -106
- package/styles/progress-button/fabric-dark.css +118 -13
- package/styles/progress-button/fabric.css +118 -13
- package/styles/progress-button/fluent-dark.css +118 -13
- package/styles/progress-button/fluent.css +118 -13
- package/styles/progress-button/fluent2.css +1636 -0
- package/styles/progress-button/fluent2.scss +5 -0
- package/styles/progress-button/highcontrast-light.css +118 -13
- package/styles/progress-button/highcontrast.css +118 -13
- package/styles/progress-button/material-dark.css +118 -13
- package/styles/progress-button/material.css +118 -13
- package/styles/progress-button/material3-dark.css +119 -14
- package/styles/progress-button/material3.css +119 -14
- package/styles/progress-button/tailwind-dark.css +118 -13
- package/styles/progress-button/tailwind.css +118 -13
- package/styles/split-button/_bds-definition.scss +0 -1
- package/styles/split-button/_bootstrap-dark-definition.scss +0 -3
- package/styles/split-button/_bootstrap4-definition.scss +0 -3
- package/styles/split-button/_bootstrap5-definition.scss +0 -1
- package/styles/split-button/_bootstrap5.3-definition.scss +23 -0
- package/styles/split-button/_fabric-dark-definition.scss +0 -3
- package/styles/split-button/_fluent-definition.scss +0 -1
- package/styles/split-button/_fluent2-definition.scss +23 -0
- package/styles/split-button/_fusionnew-definition.scss +0 -1
- package/styles/split-button/_highcontrast-light-definition.scss +0 -3
- package/styles/split-button/_layout.scss +16 -4
- package/styles/split-button/_theme.scss +0 -2
- package/styles/split-button/bootstrap-dark.css +25 -13
- package/styles/split-button/bootstrap.css +25 -13
- package/styles/split-button/bootstrap4.css +17 -9
- package/styles/split-button/bootstrap5-dark.css +17 -9
- package/styles/split-button/bootstrap5.css +17 -9
- package/styles/split-button/fabric-dark.css +25 -13
- package/styles/split-button/fabric.css +25 -13
- package/styles/split-button/fluent-dark.css +17 -9
- package/styles/split-button/fluent.css +17 -9
- package/styles/split-button/fluent2.css +1379 -0
- package/styles/split-button/fluent2.scss +6 -0
- package/styles/split-button/highcontrast-light.css +25 -13
- package/styles/split-button/highcontrast.css +25 -13
- package/styles/split-button/material-dark.css +25 -13
- package/styles/split-button/material.css +25 -13
- package/styles/split-button/material3-dark.css +57 -28
- package/styles/split-button/material3.css +53 -26
- package/styles/split-button/tailwind-dark.css +25 -13
- package/styles/split-button/tailwind.css +25 -13
- package/styles/tailwind-dark.css +261 -98
- package/styles/tailwind-dark.scss +14 -4
- package/styles/tailwind.css +261 -98
- package/styles/tailwind.scss +14 -4
- package/CHANGELOG.md +0 -373
package/styles/tailwind.css
CHANGED
|
@@ -4,24 +4,27 @@
|
|
|
4
4
|
content: "\e729";
|
|
5
5
|
}
|
|
6
6
|
|
|
7
|
-
/*! drop-down button layout */
|
|
8
7
|
.e-dropdown-btn,
|
|
9
8
|
.e-dropdown-btn.e-btn {
|
|
10
|
-
box-shadow: none;
|
|
9
|
+
-webkit-box-shadow: none;
|
|
10
|
+
box-shadow: none;
|
|
11
11
|
text-transform: none;
|
|
12
12
|
white-space: normal;
|
|
13
13
|
}
|
|
14
14
|
.e-dropdown-btn:hover,
|
|
15
15
|
.e-dropdown-btn.e-btn:hover {
|
|
16
|
-
box-shadow: none;
|
|
16
|
+
-webkit-box-shadow: none;
|
|
17
|
+
box-shadow: none;
|
|
17
18
|
}
|
|
18
19
|
.e-dropdown-btn:focus,
|
|
19
20
|
.e-dropdown-btn.e-btn:focus {
|
|
20
|
-
box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.95), 0 0 0 4px #4f46e5;
|
|
21
|
+
-webkit-box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.95), 0 0 0 4px #4f46e5;
|
|
22
|
+
box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.95), 0 0 0 4px #4f46e5;
|
|
21
23
|
}
|
|
22
24
|
.e-dropdown-btn:active,
|
|
23
25
|
.e-dropdown-btn.e-btn:active {
|
|
24
|
-
box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
|
|
26
|
+
-webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
|
|
27
|
+
box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
|
|
25
28
|
}
|
|
26
29
|
.e-dropdown-btn .e-btn-icon,
|
|
27
30
|
.e-dropdown-btn.e-btn .e-btn-icon {
|
|
@@ -53,7 +56,6 @@
|
|
|
53
56
|
line-height: 1;
|
|
54
57
|
padding: 6px 12px;
|
|
55
58
|
}
|
|
56
|
-
|
|
57
59
|
.e-bigger .e-dropdown-btn .e-btn-icon,
|
|
58
60
|
.e-bigger.e-dropdown-btn .e-btn-icon {
|
|
59
61
|
font-size: 16px;
|
|
@@ -81,8 +83,10 @@
|
|
|
81
83
|
.e-dropdown-popup ul {
|
|
82
84
|
border: 1px solid #e5e7eb;
|
|
83
85
|
border-radius: 4px;
|
|
84
|
-
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
|
|
85
|
-
|
|
86
|
+
-webkit-box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
|
|
87
|
+
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
|
|
88
|
+
-webkit-box-sizing: border-box;
|
|
89
|
+
box-sizing: border-box;
|
|
86
90
|
font-size: 14px;
|
|
87
91
|
font-weight: 400;
|
|
88
92
|
list-style-image: none;
|
|
@@ -93,18 +97,23 @@
|
|
|
93
97
|
overflow: hidden;
|
|
94
98
|
padding: 4px 0;
|
|
95
99
|
-webkit-user-select: none;
|
|
100
|
+
-moz-user-select: none;
|
|
96
101
|
-ms-user-select: none;
|
|
97
102
|
user-select: none;
|
|
98
103
|
white-space: nowrap;
|
|
99
104
|
}
|
|
100
105
|
.e-dropdown-popup ul .e-item {
|
|
101
106
|
cursor: pointer;
|
|
107
|
+
display: -webkit-box;
|
|
102
108
|
display: -ms-flexbox;
|
|
103
109
|
display: flex;
|
|
104
110
|
height: 30px;
|
|
105
111
|
line-height: 30px;
|
|
106
112
|
padding: 0 12px;
|
|
107
113
|
}
|
|
114
|
+
.e-dropdown-popup ul .e-item.e-separator {
|
|
115
|
+
padding: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
116
|
+
}
|
|
108
117
|
.e-dropdown-popup ul .e-item.e-url {
|
|
109
118
|
padding: 0;
|
|
110
119
|
}
|
|
@@ -137,7 +146,8 @@
|
|
|
137
146
|
}
|
|
138
147
|
.e-dropdown-popup.e-transparent {
|
|
139
148
|
background: transparent;
|
|
140
|
-
box-shadow: none;
|
|
149
|
+
-webkit-box-shadow: none;
|
|
150
|
+
box-shadow: none;
|
|
141
151
|
}
|
|
142
152
|
.e-dropdown-popup.e-transparent .e-dropdown-menu {
|
|
143
153
|
border: 0;
|
|
@@ -160,7 +170,8 @@
|
|
|
160
170
|
|
|
161
171
|
*.e-bigger .e-dropdown-popup ul,
|
|
162
172
|
*.e-bigger.e-dropdown-popup ul {
|
|
163
|
-
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
|
|
173
|
+
-webkit-box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
|
|
174
|
+
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
|
|
164
175
|
font-size: 16px;
|
|
165
176
|
max-width: 202px;
|
|
166
177
|
min-width: 112px;
|
|
@@ -189,7 +200,6 @@
|
|
|
189
200
|
line-height: normal;
|
|
190
201
|
}
|
|
191
202
|
|
|
192
|
-
/*! drop-down button theme */
|
|
193
203
|
.e-dropdown-popup {
|
|
194
204
|
background: #fff;
|
|
195
205
|
color: #374151;
|
|
@@ -202,7 +212,8 @@
|
|
|
202
212
|
}
|
|
203
213
|
.e-dropdown-popup ul .e-item.e-focused {
|
|
204
214
|
background: #f3f4f6;
|
|
205
|
-
box-shadow: none;
|
|
215
|
+
-webkit-box-shadow: none;
|
|
216
|
+
box-shadow: none;
|
|
206
217
|
}
|
|
207
218
|
.e-dropdown-popup ul .e-item:hover {
|
|
208
219
|
background: #f3f4f6;
|
|
@@ -226,7 +237,8 @@
|
|
|
226
237
|
.e-dropdown-btn.e-btn.e-inherit {
|
|
227
238
|
background: inherit;
|
|
228
239
|
border-color: transparent;
|
|
229
|
-
box-shadow: none;
|
|
240
|
+
-webkit-box-shadow: none;
|
|
241
|
+
box-shadow: none;
|
|
230
242
|
color: inherit;
|
|
231
243
|
}
|
|
232
244
|
.e-dropdown-btn.e-inherit:hover, .e-dropdown-btn.e-inherit:focus, .e-dropdown-btn.e-inherit:active, .e-dropdown-btn.e-inherit.e-active,
|
|
@@ -236,16 +248,18 @@
|
|
|
236
248
|
.e-dropdown-btn.e-btn.e-inherit.e-active {
|
|
237
249
|
background: rgba(0, 0, 0, 0.056);
|
|
238
250
|
border-color: transparent;
|
|
239
|
-
box-shadow: none;
|
|
251
|
+
-webkit-box-shadow: none;
|
|
252
|
+
box-shadow: none;
|
|
240
253
|
color: inherit;
|
|
241
254
|
}
|
|
242
255
|
|
|
243
|
-
/* stylelint-disable-line no-empty-source */
|
|
244
|
-
/*! splitbutton layout */
|
|
245
256
|
.e-split-btn-wrapper {
|
|
257
|
+
display: -webkit-inline-box;
|
|
246
258
|
display: -ms-inline-flexbox;
|
|
247
259
|
display: inline-flex;
|
|
248
260
|
white-space: nowrap;
|
|
261
|
+
width: -webkit-min-content;
|
|
262
|
+
width: -moz-min-content;
|
|
249
263
|
width: min-content;
|
|
250
264
|
}
|
|
251
265
|
.e-split-btn-wrapper .e-split-btn {
|
|
@@ -262,14 +276,17 @@
|
|
|
262
276
|
outline-offset: 0;
|
|
263
277
|
}
|
|
264
278
|
.e-split-btn-wrapper .e-split-btn:hover {
|
|
265
|
-
box-shadow: none;
|
|
279
|
+
-webkit-box-shadow: none;
|
|
280
|
+
box-shadow: none;
|
|
266
281
|
}
|
|
267
282
|
.e-split-btn-wrapper .e-split-btn:focus {
|
|
268
|
-
box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.95), 0 0 0 4px #4f46e5;
|
|
283
|
+
-webkit-box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.95), 0 0 0 4px #4f46e5;
|
|
284
|
+
box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.95), 0 0 0 4px #4f46e5;
|
|
269
285
|
z-index: 2;
|
|
270
286
|
}
|
|
271
287
|
.e-split-btn-wrapper .e-split-btn:active {
|
|
272
|
-
box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.95), 0 0 0 4px #4f46e5;
|
|
288
|
+
-webkit-box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.95), 0 0 0 4px #4f46e5;
|
|
289
|
+
box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.95), 0 0 0 4px #4f46e5;
|
|
273
290
|
z-index: 2;
|
|
274
291
|
}
|
|
275
292
|
.e-split-btn-wrapper .e-split-btn.e-top-icon-btn {
|
|
@@ -302,10 +319,12 @@
|
|
|
302
319
|
z-index: 1;
|
|
303
320
|
}
|
|
304
321
|
.e-split-btn-wrapper .e-dropdown-btn:focus, .e-split-btn-wrapper .e-dropdown-btn:hover {
|
|
305
|
-
box-shadow: none;
|
|
322
|
+
-webkit-box-shadow: none;
|
|
323
|
+
box-shadow: none;
|
|
306
324
|
}
|
|
307
325
|
.e-split-btn-wrapper .e-dropdown-btn:active {
|
|
308
|
-
box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.95), 0 0 0 4px #4f46e5;
|
|
326
|
+
-webkit-box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.95), 0 0 0 4px #4f46e5;
|
|
327
|
+
box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.95), 0 0 0 4px #4f46e5;
|
|
309
328
|
z-index: 2;
|
|
310
329
|
}
|
|
311
330
|
.e-split-btn-wrapper .e-dropdown-btn:disabled:focus, .e-split-btn-wrapper .e-dropdown-btn:disabled:hover, .e-split-btn-wrapper .e-dropdown-btn:disabled:active {
|
|
@@ -315,24 +334,30 @@
|
|
|
315
334
|
outline-offset: 0;
|
|
316
335
|
}
|
|
317
336
|
.e-split-btn-wrapper .e-btn {
|
|
318
|
-
box-shadow: none;
|
|
337
|
+
-webkit-box-shadow: none;
|
|
338
|
+
box-shadow: none;
|
|
319
339
|
}
|
|
320
340
|
.e-split-btn-wrapper .e-btn:hover {
|
|
321
|
-
box-shadow: none;
|
|
341
|
+
-webkit-box-shadow: none;
|
|
342
|
+
box-shadow: none;
|
|
322
343
|
}
|
|
323
344
|
.e-split-btn-wrapper .e-btn:focus {
|
|
324
|
-
box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.95), 0 0 0 4px #4f46e5;
|
|
345
|
+
-webkit-box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.95), 0 0 0 4px #4f46e5;
|
|
346
|
+
box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.95), 0 0 0 4px #4f46e5;
|
|
325
347
|
z-index: 2;
|
|
326
348
|
}
|
|
327
349
|
.e-split-btn-wrapper .e-btn:active {
|
|
328
|
-
box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.95), 0 0 0 4px #4f46e5;
|
|
350
|
+
-webkit-box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.95), 0 0 0 4px #4f46e5;
|
|
351
|
+
box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.95), 0 0 0 4px #4f46e5;
|
|
329
352
|
z-index: 2;
|
|
330
353
|
}
|
|
331
354
|
.e-split-btn-wrapper .e-btn:disabled {
|
|
332
|
-
box-shadow: none;
|
|
355
|
+
-webkit-box-shadow: none;
|
|
356
|
+
box-shadow: none;
|
|
333
357
|
}
|
|
334
358
|
.e-split-btn-wrapper .e-btn.e-inherit:focus, .e-split-btn-wrapper .e-btn.e-inherit:active {
|
|
335
|
-
box-shadow: none;
|
|
359
|
+
-webkit-box-shadow: none;
|
|
360
|
+
box-shadow: none;
|
|
336
361
|
}
|
|
337
362
|
.e-split-btn-wrapper.e-rtl .e-split-btn {
|
|
338
363
|
border-bottom-left-radius: 0;
|
|
@@ -486,7 +511,6 @@
|
|
|
486
511
|
padding-top: 0;
|
|
487
512
|
}
|
|
488
513
|
|
|
489
|
-
/*! splitbutton theme */
|
|
490
514
|
.e-split-btn-wrapper .e-split-btn {
|
|
491
515
|
border-right-color: #d1d5db;
|
|
492
516
|
}
|
|
@@ -588,11 +612,14 @@
|
|
|
588
612
|
/* stylelint-disable */
|
|
589
613
|
*.e-btn-group,
|
|
590
614
|
*.e-css.e-btn-group {
|
|
615
|
+
display: -webkit-inline-box;
|
|
591
616
|
display: -ms-inline-flexbox;
|
|
592
617
|
display: inline-flex;
|
|
593
618
|
border-radius: 4px;
|
|
594
|
-
-
|
|
595
|
-
|
|
619
|
+
-webkit-box-orient: horizontal;
|
|
620
|
+
-webkit-box-direction: normal;
|
|
621
|
+
-ms-flex-direction: row;
|
|
622
|
+
flex-direction: row;
|
|
596
623
|
position: relative;
|
|
597
624
|
}
|
|
598
625
|
*.e-btn-group input:focus + label.e-btn,
|
|
@@ -635,8 +662,9 @@
|
|
|
635
662
|
*.e-css.e-btn-group:not(.e-rtl):not(.e-vertical) .e-btn:not(:first-of-type):not(:last-of-type) {
|
|
636
663
|
border-radius: 0;
|
|
637
664
|
}
|
|
638
|
-
*.e-btn-group:not(.e-rtl):not(.e-vertical) .e-btn:first-of-type,
|
|
639
|
-
*.e-css.e-btn-group:not(.e-rtl):not(.e-vertical) .e-btn:first-of-type
|
|
665
|
+
*.e-btn-group:not(.e-rtl):not(.e-vertical) .e-btn:first-of-type, *.e-btn-group:not(.e-rtl):not(.e-vertical) .e-btn:last-of-type:not(:last-child),
|
|
666
|
+
*.e-css.e-btn-group:not(.e-rtl):not(.e-vertical) .e-btn:first-of-type,
|
|
667
|
+
*.e-css.e-btn-group:not(.e-rtl):not(.e-vertical) .e-btn:last-of-type:not(:last-child) {
|
|
640
668
|
border-bottom-right-radius: 0;
|
|
641
669
|
border-top-right-radius: 0;
|
|
642
670
|
}
|
|
@@ -645,11 +673,6 @@
|
|
|
645
673
|
border-bottom-left-radius: 0;
|
|
646
674
|
border-top-left-radius: 0;
|
|
647
675
|
}
|
|
648
|
-
*.e-btn-group:not(.e-rtl):not(.e-vertical) .e-btn:last-of-type:not(:last-child),
|
|
649
|
-
*.e-css.e-btn-group:not(.e-rtl):not(.e-vertical) .e-btn:last-of-type:not(:last-child) {
|
|
650
|
-
border-bottom-right-radius: 0;
|
|
651
|
-
border-top-right-radius: 0;
|
|
652
|
-
}
|
|
653
676
|
*.e-btn-group:not(.e-rtl):not(.e-vertical) .e-split-btn-wrapper + .e-btn,
|
|
654
677
|
*.e-css.e-btn-group:not(.e-rtl):not(.e-vertical) .e-split-btn-wrapper + .e-btn {
|
|
655
678
|
border-bottom-left-radius: 0;
|
|
@@ -683,8 +706,9 @@
|
|
|
683
706
|
*.e-css.e-btn-group.e-rtl .e-btn:not(:first-of-type):not(:last-of-type) {
|
|
684
707
|
border-radius: 0;
|
|
685
708
|
}
|
|
686
|
-
*.e-btn-group.e-rtl .e-btn:first-of-type,
|
|
687
|
-
*.e-css.e-btn-group.e-rtl .e-btn:first-of-type
|
|
709
|
+
*.e-btn-group.e-rtl .e-btn:first-of-type, *.e-btn-group.e-rtl .e-btn:last-of-type:not(:last-child),
|
|
710
|
+
*.e-css.e-btn-group.e-rtl .e-btn:first-of-type,
|
|
711
|
+
*.e-css.e-btn-group.e-rtl .e-btn:last-of-type:not(:last-child) {
|
|
688
712
|
border-bottom-left-radius: 0;
|
|
689
713
|
border-top-left-radius: 0;
|
|
690
714
|
}
|
|
@@ -693,11 +717,6 @@
|
|
|
693
717
|
border-bottom-right-radius: 0;
|
|
694
718
|
border-top-right-radius: 0;
|
|
695
719
|
}
|
|
696
|
-
*.e-btn-group.e-rtl .e-btn:last-of-type:not(:last-child),
|
|
697
|
-
*.e-css.e-btn-group.e-rtl .e-btn:last-of-type:not(:last-child) {
|
|
698
|
-
border-bottom-left-radius: 0;
|
|
699
|
-
border-top-left-radius: 0;
|
|
700
|
-
}
|
|
701
720
|
*.e-btn-group.e-rtl .e-split-btn-wrapper + .e-btn,
|
|
702
721
|
*.e-css.e-btn-group.e-rtl .e-split-btn-wrapper + .e-btn {
|
|
703
722
|
border-bottom-right-radius: 0;
|
|
@@ -725,8 +744,10 @@
|
|
|
725
744
|
}
|
|
726
745
|
*.e-btn-group.e-vertical,
|
|
727
746
|
*.e-css.e-btn-group.e-vertical {
|
|
728
|
-
-
|
|
729
|
-
|
|
747
|
+
-webkit-box-orient: vertical;
|
|
748
|
+
-webkit-box-direction: normal;
|
|
749
|
+
-ms-flex-direction: column;
|
|
750
|
+
flex-direction: column;
|
|
730
751
|
}
|
|
731
752
|
*.e-btn-group.e-vertical input,
|
|
732
753
|
*.e-css.e-btn-group.e-vertical input {
|
|
@@ -833,11 +854,13 @@
|
|
|
833
854
|
/* stylelint-disable */
|
|
834
855
|
.e-btn-group:not(.e-outline),
|
|
835
856
|
.e-css.e-btn-group:not(.e-outline) {
|
|
836
|
-
box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
|
|
857
|
+
-webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
|
|
858
|
+
box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
|
|
837
859
|
}
|
|
838
860
|
.e-btn-group .e-btn:hover,
|
|
839
861
|
.e-css.e-btn-group .e-btn:hover {
|
|
840
|
-
box-shadow: none;
|
|
862
|
+
-webkit-box-shadow: none;
|
|
863
|
+
box-shadow: none;
|
|
841
864
|
}
|
|
842
865
|
.e-btn-group .e-btn:focus,
|
|
843
866
|
.e-btn-group input:focus-visible + label.e-btn,
|
|
@@ -850,7 +873,8 @@
|
|
|
850
873
|
color: #374151;
|
|
851
874
|
outline: #fff 0 solid;
|
|
852
875
|
outline-offset: 0;
|
|
853
|
-
box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.95), 0 0 0 4px #4f46e5;
|
|
876
|
+
-webkit-box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.95), 0 0 0 4px #4f46e5;
|
|
877
|
+
box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.95), 0 0 0 4px #4f46e5;
|
|
854
878
|
outline-color: inherit;
|
|
855
879
|
}
|
|
856
880
|
.e-btn-group .e-btn:focus.e-primary,
|
|
@@ -863,7 +887,8 @@
|
|
|
863
887
|
border-color: #4f46e5;
|
|
864
888
|
color: #fff;
|
|
865
889
|
outline: #fff 0 solid;
|
|
866
|
-
box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.95), 0 0 0 4px #4f46e5;
|
|
890
|
+
-webkit-box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.95), 0 0 0 4px #4f46e5;
|
|
891
|
+
box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.95), 0 0 0 4px #4f46e5;
|
|
867
892
|
outline-color: inherit;
|
|
868
893
|
}
|
|
869
894
|
.e-btn-group .e-btn:focus.e-success,
|
|
@@ -875,7 +900,8 @@
|
|
|
875
900
|
background: #166534;
|
|
876
901
|
border-color: #15803d;
|
|
877
902
|
color: #fff;
|
|
878
|
-
box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.95), 0 0 0 4px #4f46e5;
|
|
903
|
+
-webkit-box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.95), 0 0 0 4px #4f46e5;
|
|
904
|
+
box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.95), 0 0 0 4px #4f46e5;
|
|
879
905
|
outline-color: inherit;
|
|
880
906
|
}
|
|
881
907
|
.e-btn-group .e-btn:focus.e-info,
|
|
@@ -887,7 +913,8 @@
|
|
|
887
913
|
background: #155e75;
|
|
888
914
|
border-color: #0e7490;
|
|
889
915
|
color: #fff;
|
|
890
|
-
box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.95), 0 0 0 4px #4f46e5;
|
|
916
|
+
-webkit-box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.95), 0 0 0 4px #4f46e5;
|
|
917
|
+
box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.95), 0 0 0 4px #4f46e5;
|
|
891
918
|
outline-color: inherit;
|
|
892
919
|
}
|
|
893
920
|
.e-btn-group .e-btn:focus.e-warning,
|
|
@@ -899,7 +926,8 @@
|
|
|
899
926
|
background: #9a3412;
|
|
900
927
|
border-color: #c2410c;
|
|
901
928
|
color: #fff;
|
|
902
|
-
box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.95), 0 0 0 4px #4f46e5;
|
|
929
|
+
-webkit-box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.95), 0 0 0 4px #4f46e5;
|
|
930
|
+
box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.95), 0 0 0 4px #4f46e5;
|
|
903
931
|
outline-color: inherit;
|
|
904
932
|
}
|
|
905
933
|
.e-btn-group .e-btn:focus.e-danger,
|
|
@@ -911,7 +939,8 @@
|
|
|
911
939
|
background: #b91c1c;
|
|
912
940
|
border-color: #dc2626;
|
|
913
941
|
color: #fff;
|
|
914
|
-
box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.95), 0 0 0 4px #4f46e5;
|
|
942
|
+
-webkit-box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.95), 0 0 0 4px #4f46e5;
|
|
943
|
+
box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.95), 0 0 0 4px #4f46e5;
|
|
915
944
|
outline-color: inherit;
|
|
916
945
|
}
|
|
917
946
|
.e-btn-group .e-btn:focus.e-link,
|
|
@@ -925,7 +954,8 @@
|
|
|
925
954
|
color: #3730a3;
|
|
926
955
|
background-color: transparent;
|
|
927
956
|
border-color: transparent;
|
|
928
|
-
box-shadow: none;
|
|
957
|
+
-webkit-box-shadow: none;
|
|
958
|
+
box-shadow: none;
|
|
929
959
|
outline: none;
|
|
930
960
|
}
|
|
931
961
|
.e-btn-group .e-btn:focus.e-outline,
|
|
@@ -934,8 +964,8 @@
|
|
|
934
964
|
.e-css.e-btn-group .e-btn:focus.e-outline,
|
|
935
965
|
.e-css.e-btn-group input:focus-visible + label.e-btn.e-outline,
|
|
936
966
|
.e-css.e-btn-group input:focus + label.e-btn.e-outline {
|
|
937
|
-
box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.95), 0 0 0 4px #4f46e5;
|
|
938
|
-
|
|
967
|
+
-webkit-box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.95), 0 0 0 4px #4f46e5;
|
|
968
|
+
box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.95), 0 0 0 4px #4f46e5;
|
|
939
969
|
}
|
|
940
970
|
.e-btn-group .e-btn:focus.e-outline.e-primary,
|
|
941
971
|
.e-btn-group input:focus-visible + label.e-btn.e-outline.e-primary,
|
|
@@ -943,7 +973,8 @@
|
|
|
943
973
|
.e-css.e-btn-group .e-btn:focus.e-outline.e-primary,
|
|
944
974
|
.e-css.e-btn-group input:focus-visible + label.e-btn.e-outline.e-primary,
|
|
945
975
|
.e-css.e-btn-group input:focus + label.e-btn.e-outline.e-primary {
|
|
946
|
-
box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.95), 0 0 0 4px #4f46e5;
|
|
976
|
+
-webkit-box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.95), 0 0 0 4px #4f46e5;
|
|
977
|
+
box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.95), 0 0 0 4px #4f46e5;
|
|
947
978
|
}
|
|
948
979
|
.e-btn-group .e-btn:focus.e-outline.e-success,
|
|
949
980
|
.e-btn-group input:focus-visible + label.e-btn.e-outline.e-success,
|
|
@@ -951,7 +982,8 @@
|
|
|
951
982
|
.e-css.e-btn-group .e-btn:focus.e-outline.e-success,
|
|
952
983
|
.e-css.e-btn-group input:focus-visible + label.e-btn.e-outline.e-success,
|
|
953
984
|
.e-css.e-btn-group input:focus + label.e-btn.e-outline.e-success {
|
|
954
|
-
box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.95), 0 0 0 4px #4f46e5;
|
|
985
|
+
-webkit-box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.95), 0 0 0 4px #4f46e5;
|
|
986
|
+
box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.95), 0 0 0 4px #4f46e5;
|
|
955
987
|
}
|
|
956
988
|
.e-btn-group .e-btn:focus.e-outline.e-info,
|
|
957
989
|
.e-btn-group input:focus-visible + label.e-btn.e-outline.e-info,
|
|
@@ -959,7 +991,8 @@
|
|
|
959
991
|
.e-css.e-btn-group .e-btn:focus.e-outline.e-info,
|
|
960
992
|
.e-css.e-btn-group input:focus-visible + label.e-btn.e-outline.e-info,
|
|
961
993
|
.e-css.e-btn-group input:focus + label.e-btn.e-outline.e-info {
|
|
962
|
-
box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.95), 0 0 0 4px #4f46e5;
|
|
994
|
+
-webkit-box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.95), 0 0 0 4px #4f46e5;
|
|
995
|
+
box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.95), 0 0 0 4px #4f46e5;
|
|
963
996
|
}
|
|
964
997
|
.e-btn-group .e-btn:focus.e-outline.e-warning,
|
|
965
998
|
.e-btn-group input:focus-visible + label.e-btn.e-outline.e-warning,
|
|
@@ -967,7 +1000,8 @@
|
|
|
967
1000
|
.e-css.e-btn-group .e-btn:focus.e-outline.e-warning,
|
|
968
1001
|
.e-css.e-btn-group input:focus-visible + label.e-btn.e-outline.e-warning,
|
|
969
1002
|
.e-css.e-btn-group input:focus + label.e-btn.e-outline.e-warning {
|
|
970
|
-
box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.95), 0 0 0 4px #4f46e5;
|
|
1003
|
+
-webkit-box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.95), 0 0 0 4px #4f46e5;
|
|
1004
|
+
box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.95), 0 0 0 4px #4f46e5;
|
|
971
1005
|
}
|
|
972
1006
|
.e-btn-group .e-btn:focus.e-outline.e-danger,
|
|
973
1007
|
.e-btn-group input:focus-visible + label.e-btn.e-outline.e-danger,
|
|
@@ -975,7 +1009,8 @@
|
|
|
975
1009
|
.e-css.e-btn-group .e-btn:focus.e-outline.e-danger,
|
|
976
1010
|
.e-css.e-btn-group input:focus-visible + label.e-btn.e-outline.e-danger,
|
|
977
1011
|
.e-css.e-btn-group input:focus + label.e-btn.e-outline.e-danger {
|
|
978
|
-
box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.95), 0 0 0 4px #4f46e5;
|
|
1012
|
+
-webkit-box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.95), 0 0 0 4px #4f46e5;
|
|
1013
|
+
box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.95), 0 0 0 4px #4f46e5;
|
|
979
1014
|
}
|
|
980
1015
|
.e-btn-group .e-btn:active,
|
|
981
1016
|
.e-btn-group input:active + label.e-btn,
|
|
@@ -999,7 +1034,8 @@
|
|
|
999
1034
|
border-color: #3730a3;
|
|
1000
1035
|
color: #fff;
|
|
1001
1036
|
outline: #fff 0 solid;
|
|
1002
|
-
box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
|
|
1037
|
+
-webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
|
|
1038
|
+
box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
|
|
1003
1039
|
}
|
|
1004
1040
|
.e-btn-group .e-btn:active.e-success,
|
|
1005
1041
|
.e-btn-group input:active + label.e-btn.e-success,
|
|
@@ -1010,7 +1046,8 @@
|
|
|
1010
1046
|
background: #14532d;
|
|
1011
1047
|
border-color: #14532d;
|
|
1012
1048
|
color: #fff;
|
|
1013
|
-
box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
|
|
1049
|
+
-webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
|
|
1050
|
+
box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
|
|
1014
1051
|
}
|
|
1015
1052
|
.e-btn-group .e-btn:active.e-info,
|
|
1016
1053
|
.e-btn-group input:active + label.e-btn.e-info,
|
|
@@ -1021,7 +1058,8 @@
|
|
|
1021
1058
|
background: #164e63;
|
|
1022
1059
|
color: #fff;
|
|
1023
1060
|
border-color: #164e63;
|
|
1024
|
-
box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
|
|
1061
|
+
-webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
|
|
1062
|
+
box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
|
|
1025
1063
|
}
|
|
1026
1064
|
.e-btn-group .e-btn:active.e-warning,
|
|
1027
1065
|
.e-btn-group input:active + label.e-btn.e-warning,
|
|
@@ -1032,7 +1070,8 @@
|
|
|
1032
1070
|
background: #7c2d12;
|
|
1033
1071
|
border-color: #7c2d12;
|
|
1034
1072
|
color: #fff;
|
|
1035
|
-
box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
|
|
1073
|
+
-webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
|
|
1074
|
+
box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
|
|
1036
1075
|
}
|
|
1037
1076
|
.e-btn-group .e-btn:active.e-danger,
|
|
1038
1077
|
.e-btn-group input:active + label.e-btn.e-danger,
|
|
@@ -1043,7 +1082,8 @@
|
|
|
1043
1082
|
background: #991b1b;
|
|
1044
1083
|
border-color: #991b1b;
|
|
1045
1084
|
color: #fff;
|
|
1046
|
-
box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
|
|
1085
|
+
-webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
|
|
1086
|
+
box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
|
|
1047
1087
|
}
|
|
1048
1088
|
.e-btn-group .e-btn:active.e-outline,
|
|
1049
1089
|
.e-btn-group input:active + label.e-btn.e-outline,
|
|
@@ -1053,7 +1093,8 @@
|
|
|
1053
1093
|
.e-css.e-btn-group input:checked + label.e-btn.e-outline {
|
|
1054
1094
|
background: #e5e7eb;
|
|
1055
1095
|
border-color: #d1d5db;
|
|
1056
|
-
box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
|
|
1096
|
+
-webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
|
|
1097
|
+
box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
|
|
1057
1098
|
color: #374151;
|
|
1058
1099
|
}
|
|
1059
1100
|
.e-btn-group .e-btn:active.e-outline.e-primary,
|
|
@@ -1064,7 +1105,8 @@
|
|
|
1064
1105
|
.e-css.e-btn-group input:checked + label.e-btn.e-outline.e-primary {
|
|
1065
1106
|
background: #3730a3;
|
|
1066
1107
|
border-color: #4f46e5;
|
|
1067
|
-
box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
|
|
1108
|
+
-webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
|
|
1109
|
+
box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
|
|
1068
1110
|
color: #fff;
|
|
1069
1111
|
}
|
|
1070
1112
|
.e-btn-group .e-btn:active.e-outline.e-success,
|
|
@@ -1075,7 +1117,8 @@
|
|
|
1075
1117
|
.e-css.e-btn-group input:checked + label.e-btn.e-outline.e-success {
|
|
1076
1118
|
background: #14532d;
|
|
1077
1119
|
border-color: #14532d;
|
|
1078
|
-
box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
|
|
1120
|
+
-webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
|
|
1121
|
+
box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
|
|
1079
1122
|
color: #fff;
|
|
1080
1123
|
}
|
|
1081
1124
|
.e-btn-group .e-btn:active.e-outline.e-info,
|
|
@@ -1086,7 +1129,8 @@
|
|
|
1086
1129
|
.e-css.e-btn-group input:checked + label.e-btn.e-outline.e-info {
|
|
1087
1130
|
background: #164e63;
|
|
1088
1131
|
border-color: #164e63;
|
|
1089
|
-
box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
|
|
1132
|
+
-webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
|
|
1133
|
+
box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
|
|
1090
1134
|
color: #fff;
|
|
1091
1135
|
}
|
|
1092
1136
|
.e-btn-group .e-btn:active.e-outline.e-warning,
|
|
@@ -1097,7 +1141,8 @@
|
|
|
1097
1141
|
.e-css.e-btn-group input:checked + label.e-btn.e-outline.e-warning {
|
|
1098
1142
|
background: #7c2d12;
|
|
1099
1143
|
border-color: #7c2d12;
|
|
1100
|
-
box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
|
|
1144
|
+
-webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
|
|
1145
|
+
box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
|
|
1101
1146
|
color: #fff;
|
|
1102
1147
|
}
|
|
1103
1148
|
.e-btn-group .e-btn:active.e-outline.e-danger,
|
|
@@ -1108,7 +1153,8 @@
|
|
|
1108
1153
|
.e-css.e-btn-group input:checked + label.e-btn.e-outline.e-danger {
|
|
1109
1154
|
background: #991b1b;
|
|
1110
1155
|
border-color: #991b1b;
|
|
1111
|
-
box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
|
|
1156
|
+
-webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
|
|
1157
|
+
box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
|
|
1112
1158
|
color: #fff;
|
|
1113
1159
|
}
|
|
1114
1160
|
.e-btn-group .e-btn:disabled,
|
|
@@ -1117,7 +1163,8 @@
|
|
|
1117
1163
|
.e-css.e-btn-group input:disabled + label.e-btn {
|
|
1118
1164
|
background-color: #fff;
|
|
1119
1165
|
border-color: #e5e7eb;
|
|
1120
|
-
box-shadow: none;
|
|
1166
|
+
-webkit-box-shadow: none;
|
|
1167
|
+
box-shadow: none;
|
|
1121
1168
|
color: #9ca3af;
|
|
1122
1169
|
border-color: #d1d5db;
|
|
1123
1170
|
}
|
|
@@ -1127,7 +1174,8 @@
|
|
|
1127
1174
|
.e-css.e-btn-group input:disabled + label.e-btn.e-primary {
|
|
1128
1175
|
background: #a5b4fc;
|
|
1129
1176
|
border-color: #a5b4fc;
|
|
1130
|
-
box-shadow: none;
|
|
1177
|
+
-webkit-box-shadow: none;
|
|
1178
|
+
box-shadow: none;
|
|
1131
1179
|
color: #fff;
|
|
1132
1180
|
border-color: #4f46e5;
|
|
1133
1181
|
}
|
|
@@ -1137,7 +1185,8 @@
|
|
|
1137
1185
|
.e-css.e-btn-group input:disabled + label.e-btn.e-success {
|
|
1138
1186
|
background: #86efac;
|
|
1139
1187
|
border-color: #86efac;
|
|
1140
|
-
box-shadow: none;
|
|
1188
|
+
-webkit-box-shadow: none;
|
|
1189
|
+
box-shadow: none;
|
|
1141
1190
|
color: #fff;
|
|
1142
1191
|
border-color: #15803d;
|
|
1143
1192
|
}
|
|
@@ -1147,7 +1196,8 @@
|
|
|
1147
1196
|
.e-css.e-btn-group input:disabled + label.e-btn.e-info {
|
|
1148
1197
|
background: #67e8f9;
|
|
1149
1198
|
border-color: #67e8f9;
|
|
1150
|
-
box-shadow: none;
|
|
1199
|
+
-webkit-box-shadow: none;
|
|
1200
|
+
box-shadow: none;
|
|
1151
1201
|
color: #fff;
|
|
1152
1202
|
border-color: #0e7490;
|
|
1153
1203
|
}
|
|
@@ -1157,7 +1207,8 @@
|
|
|
1157
1207
|
.e-css.e-btn-group input:disabled + label.e-btn.e-warning {
|
|
1158
1208
|
background: #fdba74;
|
|
1159
1209
|
border-color: #fdba74;
|
|
1160
|
-
box-shadow: none;
|
|
1210
|
+
-webkit-box-shadow: none;
|
|
1211
|
+
box-shadow: none;
|
|
1161
1212
|
color: #fff;
|
|
1162
1213
|
border-color: #c2410c;
|
|
1163
1214
|
}
|
|
@@ -1167,7 +1218,8 @@
|
|
|
1167
1218
|
.e-css.e-btn-group input:disabled + label.e-btn.e-danger {
|
|
1168
1219
|
background: #fca5a5;
|
|
1169
1220
|
border-color: #fca5a5;
|
|
1170
|
-
box-shadow: none;
|
|
1221
|
+
-webkit-box-shadow: none;
|
|
1222
|
+
box-shadow: none;
|
|
1171
1223
|
color: #fff;
|
|
1172
1224
|
border-color: #dc2626;
|
|
1173
1225
|
}
|
|
@@ -1177,7 +1229,8 @@
|
|
|
1177
1229
|
.e-css.e-btn-group input:disabled + label.e-btn.e-link {
|
|
1178
1230
|
color: #9ca3af;
|
|
1179
1231
|
background: transparent;
|
|
1180
|
-
box-shadow: none;
|
|
1232
|
+
-webkit-box-shadow: none;
|
|
1233
|
+
box-shadow: none;
|
|
1181
1234
|
text-decoration: none;
|
|
1182
1235
|
border-color: transparent;
|
|
1183
1236
|
}
|
|
@@ -1196,7 +1249,8 @@
|
|
|
1196
1249
|
.e-css.e-btn-group input:disabled + label.e-btn.e-outline.e-primary {
|
|
1197
1250
|
background: transparent;
|
|
1198
1251
|
border-color: rgba(79, 70, 229, 0.65);
|
|
1199
|
-
box-shadow: none;
|
|
1252
|
+
-webkit-box-shadow: none;
|
|
1253
|
+
box-shadow: none;
|
|
1200
1254
|
color: rgba(79, 70, 229, 0.65);
|
|
1201
1255
|
border-color: #4f46e5;
|
|
1202
1256
|
}
|
|
@@ -1206,7 +1260,8 @@
|
|
|
1206
1260
|
.e-css.e-btn-group input:disabled + label.e-btn.e-outline.e-success {
|
|
1207
1261
|
background: transparent;
|
|
1208
1262
|
border-color: rgba(21, 128, 61, 0.65);
|
|
1209
|
-
box-shadow: none;
|
|
1263
|
+
-webkit-box-shadow: none;
|
|
1264
|
+
box-shadow: none;
|
|
1210
1265
|
color: rgba(21, 128, 61, 0.65);
|
|
1211
1266
|
border-color: #15803d;
|
|
1212
1267
|
}
|
|
@@ -1216,7 +1271,8 @@
|
|
|
1216
1271
|
.e-css.e-btn-group input:disabled + label.e-btn.e-outline.e-info {
|
|
1217
1272
|
background: transparent;
|
|
1218
1273
|
border-color: rgba(14, 116, 144, 0.65);
|
|
1219
|
-
box-shadow: none;
|
|
1274
|
+
-webkit-box-shadow: none;
|
|
1275
|
+
box-shadow: none;
|
|
1220
1276
|
color: rgba(14, 116, 144, 0.65);
|
|
1221
1277
|
border-color: #0e7490;
|
|
1222
1278
|
}
|
|
@@ -1226,7 +1282,8 @@
|
|
|
1226
1282
|
.e-css.e-btn-group input:disabled + label.e-btn.e-outline.e-warning {
|
|
1227
1283
|
background: transparent;
|
|
1228
1284
|
border-color: rgba(194, 65, 12, 0.65);
|
|
1229
|
-
box-shadow: none;
|
|
1285
|
+
-webkit-box-shadow: none;
|
|
1286
|
+
box-shadow: none;
|
|
1230
1287
|
color: rgba(194, 65, 12, 0.65);
|
|
1231
1288
|
border-color: #c2410c;
|
|
1232
1289
|
}
|
|
@@ -1236,7 +1293,8 @@
|
|
|
1236
1293
|
.e-css.e-btn-group input:disabled + label.e-btn.e-outline.e-danger {
|
|
1237
1294
|
background: transparent;
|
|
1238
1295
|
border-color: rgba(220, 38, 38, 0.65);
|
|
1239
|
-
box-shadow: none;
|
|
1296
|
+
-webkit-box-shadow: none;
|
|
1297
|
+
box-shadow: none;
|
|
1240
1298
|
color: rgba(220, 38, 38, 0.65);
|
|
1241
1299
|
border-color: #dc2626;
|
|
1242
1300
|
}
|
|
@@ -1351,23 +1409,46 @@
|
|
|
1351
1409
|
outline-color: inherit;
|
|
1352
1410
|
}
|
|
1353
1411
|
/* stylelint-disable property-no-vendor-prefix */
|
|
1412
|
+
@-webkit-keyframes material-spinner-rotate {
|
|
1413
|
+
0% {
|
|
1414
|
+
-webkit-transform: rotate(0);
|
|
1415
|
+
transform: rotate(0);
|
|
1416
|
+
}
|
|
1417
|
+
100% {
|
|
1418
|
+
-webkit-transform: rotate(360deg);
|
|
1419
|
+
transform: rotate(360deg);
|
|
1420
|
+
}
|
|
1421
|
+
}
|
|
1354
1422
|
@keyframes material-spinner-rotate {
|
|
1355
1423
|
0% {
|
|
1424
|
+
-webkit-transform: rotate(0);
|
|
1356
1425
|
transform: rotate(0);
|
|
1357
1426
|
}
|
|
1358
1427
|
100% {
|
|
1428
|
+
-webkit-transform: rotate(360deg);
|
|
1429
|
+
transform: rotate(360deg);
|
|
1430
|
+
}
|
|
1431
|
+
}
|
|
1432
|
+
@-webkit-keyframes fabric-spinner-rotate {
|
|
1433
|
+
0% {
|
|
1434
|
+
-webkit-transform: rotate(0);
|
|
1435
|
+
transform: rotate(0);
|
|
1436
|
+
}
|
|
1437
|
+
100% {
|
|
1438
|
+
-webkit-transform: rotate(360deg);
|
|
1359
1439
|
transform: rotate(360deg);
|
|
1360
1440
|
}
|
|
1361
1441
|
}
|
|
1362
1442
|
@keyframes fabric-spinner-rotate {
|
|
1363
1443
|
0% {
|
|
1444
|
+
-webkit-transform: rotate(0);
|
|
1364
1445
|
transform: rotate(0);
|
|
1365
1446
|
}
|
|
1366
1447
|
100% {
|
|
1448
|
+
-webkit-transform: rotate(360deg);
|
|
1367
1449
|
transform: rotate(360deg);
|
|
1368
1450
|
}
|
|
1369
1451
|
}
|
|
1370
|
-
/*! Progress Button Layout */
|
|
1371
1452
|
.e-progress-btn {
|
|
1372
1453
|
position: relative;
|
|
1373
1454
|
}
|
|
@@ -1377,9 +1458,11 @@
|
|
|
1377
1458
|
opacity: 0;
|
|
1378
1459
|
position: absolute;
|
|
1379
1460
|
top: 0;
|
|
1461
|
+
-webkit-transition: opacity 0.3s linear;
|
|
1380
1462
|
transition: opacity 0.3s linear;
|
|
1381
1463
|
}
|
|
1382
1464
|
.e-progress-btn .e-spinner {
|
|
1465
|
+
-webkit-transition: all 0.3s linear;
|
|
1383
1466
|
transition: all 0.3s linear;
|
|
1384
1467
|
}
|
|
1385
1468
|
.e-progress-btn .e-btn-content {
|
|
@@ -1412,6 +1495,7 @@
|
|
|
1412
1495
|
opacity: 0;
|
|
1413
1496
|
}
|
|
1414
1497
|
.e-progress-btn.e-spin-top, .e-progress-btn.e-spin-bottom {
|
|
1498
|
+
-webkit-transition: padding 0.3s linear;
|
|
1415
1499
|
transition: padding 0.3s linear;
|
|
1416
1500
|
}
|
|
1417
1501
|
.e-progress-btn.e-progress-active:not(.e-hide-spinner).e-spin-top .e-btn-content,
|
|
@@ -1421,10 +1505,12 @@
|
|
|
1421
1505
|
line-height: 1;
|
|
1422
1506
|
}
|
|
1423
1507
|
.e-progress-btn.e-progress-active:not(.e-hide-spinner).e-spin-center .e-spinner {
|
|
1508
|
+
display: -webkit-box;
|
|
1424
1509
|
display: -ms-flexbox;
|
|
1425
1510
|
display: flex;
|
|
1426
|
-
-
|
|
1427
|
-
|
|
1511
|
+
-webkit-box-pack: center;
|
|
1512
|
+
-ms-flex-pack: center;
|
|
1513
|
+
justify-content: center;
|
|
1428
1514
|
}
|
|
1429
1515
|
.e-progress-btn.e-progress-active:not(.e-hide-spinner).e-spin-left:not(.e-round) .e-spinner {
|
|
1430
1516
|
padding-right: 12px;
|
|
@@ -1510,21 +1596,35 @@
|
|
|
1510
1596
|
left: auto;
|
|
1511
1597
|
position: relative;
|
|
1512
1598
|
top: auto;
|
|
1513
|
-
transform: none;
|
|
1599
|
+
-webkit-transform: none;
|
|
1600
|
+
transform: none;
|
|
1514
1601
|
}
|
|
1515
1602
|
.e-progress-btn .e-cont-animate {
|
|
1516
|
-
-
|
|
1517
|
-
align
|
|
1603
|
+
-webkit-box-align: center;
|
|
1604
|
+
-ms-flex-align: center;
|
|
1605
|
+
align-items: center;
|
|
1606
|
+
display: -webkit-inline-box;
|
|
1518
1607
|
display: -ms-inline-flexbox;
|
|
1519
1608
|
display: inline-flex;
|
|
1520
1609
|
height: 100%;
|
|
1521
|
-
-
|
|
1522
|
-
|
|
1610
|
+
-webkit-box-pack: center;
|
|
1611
|
+
-ms-flex-pack: center;
|
|
1612
|
+
justify-content: center;
|
|
1523
1613
|
left: 0;
|
|
1524
1614
|
position: absolute;
|
|
1525
1615
|
top: 0;
|
|
1526
1616
|
width: 100%;
|
|
1527
1617
|
}
|
|
1618
|
+
@-webkit-keyframes ProgressSlideLeft {
|
|
1619
|
+
from {
|
|
1620
|
+
left: 0%;
|
|
1621
|
+
opacity: 1;
|
|
1622
|
+
}
|
|
1623
|
+
to {
|
|
1624
|
+
left: -100%;
|
|
1625
|
+
opacity: 0;
|
|
1626
|
+
}
|
|
1627
|
+
}
|
|
1528
1628
|
@keyframes ProgressSlideLeft {
|
|
1529
1629
|
from {
|
|
1530
1630
|
left: 0%;
|
|
@@ -1535,6 +1635,16 @@
|
|
|
1535
1635
|
opacity: 0;
|
|
1536
1636
|
}
|
|
1537
1637
|
}
|
|
1638
|
+
@-webkit-keyframes ProgressSlideRight {
|
|
1639
|
+
from {
|
|
1640
|
+
left: 0%;
|
|
1641
|
+
opacity: 1;
|
|
1642
|
+
}
|
|
1643
|
+
to {
|
|
1644
|
+
left: 100%;
|
|
1645
|
+
opacity: 0;
|
|
1646
|
+
}
|
|
1647
|
+
}
|
|
1538
1648
|
@keyframes ProgressSlideRight {
|
|
1539
1649
|
from {
|
|
1540
1650
|
left: 0%;
|
|
@@ -1545,6 +1655,18 @@
|
|
|
1545
1655
|
opacity: 0;
|
|
1546
1656
|
}
|
|
1547
1657
|
}
|
|
1658
|
+
@-webkit-keyframes ProgressSlideUp {
|
|
1659
|
+
from {
|
|
1660
|
+
height: auto;
|
|
1661
|
+
opacity: 1;
|
|
1662
|
+
top: 0;
|
|
1663
|
+
}
|
|
1664
|
+
to {
|
|
1665
|
+
height: auto;
|
|
1666
|
+
opacity: 0;
|
|
1667
|
+
top: -100px;
|
|
1668
|
+
}
|
|
1669
|
+
}
|
|
1548
1670
|
@keyframes ProgressSlideUp {
|
|
1549
1671
|
from {
|
|
1550
1672
|
height: auto;
|
|
@@ -1557,6 +1679,18 @@
|
|
|
1557
1679
|
top: -100px;
|
|
1558
1680
|
}
|
|
1559
1681
|
}
|
|
1682
|
+
@-webkit-keyframes ProgressSlideDown {
|
|
1683
|
+
from {
|
|
1684
|
+
height: auto;
|
|
1685
|
+
opacity: 1;
|
|
1686
|
+
top: 0;
|
|
1687
|
+
}
|
|
1688
|
+
to {
|
|
1689
|
+
height: auto;
|
|
1690
|
+
opacity: 0;
|
|
1691
|
+
top: 100px;
|
|
1692
|
+
}
|
|
1693
|
+
}
|
|
1560
1694
|
@keyframes ProgressSlideDown {
|
|
1561
1695
|
from {
|
|
1562
1696
|
height: auto;
|
|
@@ -1569,22 +1703,48 @@
|
|
|
1569
1703
|
top: 100px;
|
|
1570
1704
|
}
|
|
1571
1705
|
}
|
|
1706
|
+
@-webkit-keyframes ProgressZoomIn {
|
|
1707
|
+
from {
|
|
1708
|
+
opacity: 1;
|
|
1709
|
+
-webkit-transform: translate(0, 0) scale(1);
|
|
1710
|
+
transform: translate(0, 0) scale(1);
|
|
1711
|
+
}
|
|
1712
|
+
to {
|
|
1713
|
+
opacity: 0;
|
|
1714
|
+
-webkit-transform: translate(0, 0) scale(3);
|
|
1715
|
+
transform: translate(0, 0) scale(3);
|
|
1716
|
+
}
|
|
1717
|
+
}
|
|
1572
1718
|
@keyframes ProgressZoomIn {
|
|
1573
1719
|
from {
|
|
1574
1720
|
opacity: 1;
|
|
1575
|
-
transform: translate(0, 0) scale(1);
|
|
1721
|
+
-webkit-transform: translate(0, 0) scale(1);
|
|
1722
|
+
transform: translate(0, 0) scale(1);
|
|
1576
1723
|
}
|
|
1577
1724
|
to {
|
|
1578
1725
|
opacity: 0;
|
|
1579
|
-
transform: translate(0, 0) scale(3);
|
|
1726
|
+
-webkit-transform: translate(0, 0) scale(3);
|
|
1727
|
+
transform: translate(0, 0) scale(3);
|
|
1728
|
+
}
|
|
1729
|
+
}
|
|
1730
|
+
@-webkit-keyframes ProgressZoomOut {
|
|
1731
|
+
from {
|
|
1732
|
+
-webkit-transform: translate(0, 0) scale(1);
|
|
1733
|
+
transform: translate(0, 0) scale(1);
|
|
1734
|
+
}
|
|
1735
|
+
to {
|
|
1736
|
+
-webkit-transform: translate(0, 0) scale(0);
|
|
1737
|
+
transform: translate(0, 0) scale(0);
|
|
1580
1738
|
}
|
|
1581
1739
|
}
|
|
1582
1740
|
@keyframes ProgressZoomOut {
|
|
1583
1741
|
from {
|
|
1584
|
-
transform: translate(0, 0) scale(1);
|
|
1742
|
+
-webkit-transform: translate(0, 0) scale(1);
|
|
1743
|
+
transform: translate(0, 0) scale(1);
|
|
1585
1744
|
}
|
|
1586
1745
|
to {
|
|
1587
|
-
transform: translate(0, 0) scale(0);
|
|
1746
|
+
-webkit-transform: translate(0, 0) scale(0);
|
|
1747
|
+
transform: translate(0, 0) scale(0);
|
|
1588
1748
|
}
|
|
1589
1749
|
}
|
|
1590
1750
|
|
|
@@ -1840,7 +2000,10 @@
|
|
|
1840
2000
|
|
|
1841
2001
|
*.e-primary .e-progress,
|
|
1842
2002
|
*.e-success .e-progress,
|
|
1843
|
-
*.e-danger .e-progress
|
|
2003
|
+
*.e-danger .e-progress {
|
|
2004
|
+
background: rgba(107, 114, 128, 0.2);
|
|
2005
|
+
}
|
|
2006
|
+
|
|
1844
2007
|
*.e-info .e-progress {
|
|
1845
2008
|
background: rgba(107, 114, 128, 0.2);
|
|
1846
2009
|
}
|