@syncfusion/ej2-inplace-editor 25.2.3 → 26.2.4
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-inplace-editor.min.js +2 -2
- package/dist/ej2-inplace-editor.umd.min.js +2 -2
- package/dist/ej2-inplace-editor.umd.min.js.map +1 -1
- package/dist/es6/ej2-inplace-editor.es2015.js +22 -43
- package/dist/es6/ej2-inplace-editor.es2015.js.map +1 -1
- package/dist/es6/ej2-inplace-editor.es5.js +77 -98
- package/dist/es6/ej2-inplace-editor.es5.js.map +1 -1
- package/dist/global/ej2-inplace-editor.min.js +2 -2
- package/dist/global/ej2-inplace-editor.min.js.map +1 -1
- package/dist/global/index.d.ts +1 -1
- package/hotfix/26.1.35_Vol2.txt +1 -0
- package/package.json +18 -18
- package/src/inplace-editor/base/inplace-editor.d.ts +0 -1
- package/src/inplace-editor/base/interface.js +0 -1
- package/src/inplace-editor/base/models.js +0 -2
- package/styles/bootstrap-dark.css +61 -16
- package/styles/bootstrap-dark.scss +26 -1
- package/styles/bootstrap.css +63 -17
- package/styles/bootstrap.scss +26 -1
- package/styles/bootstrap4.css +72 -22
- package/styles/bootstrap4.scss +26 -1
- package/styles/bootstrap5-dark.css +62 -16
- package/styles/bootstrap5-dark.scss +26 -1
- package/styles/bootstrap5.css +62 -16
- package/styles/bootstrap5.scss +26 -1
- package/styles/fabric-dark.css +59 -15
- package/styles/fabric-dark.scss +26 -1
- package/styles/fabric.css +61 -16
- package/styles/fabric.scss +26 -1
- package/styles/fluent-dark.css +63 -17
- package/styles/fluent-dark.scss +26 -1
- package/styles/fluent.css +63 -17
- package/styles/fluent.scss +26 -1
- package/styles/fluent2.css +1994 -0
- package/styles/fluent2.scss +26 -0
- package/styles/highcontrast-light.css +62 -15
- package/styles/highcontrast-light.scss +26 -1
- package/styles/highcontrast.css +64 -16
- package/styles/highcontrast.scss +26 -1
- package/styles/inplace-editor/_bootstrap5.3-definition.scss +69 -0
- package/styles/inplace-editor/_fluent2-definition.scss +71 -0
- package/styles/inplace-editor/_layout.scss +0 -35
- package/styles/inplace-editor/_material3-definition.scss +0 -7
- package/styles/inplace-editor/_theme.scss +8 -32
- package/styles/inplace-editor/bootstrap-dark.css +61 -16
- package/styles/inplace-editor/bootstrap.css +63 -17
- package/styles/inplace-editor/bootstrap4.css +72 -22
- package/styles/inplace-editor/bootstrap5-dark.css +62 -16
- package/styles/inplace-editor/bootstrap5.css +62 -16
- package/styles/inplace-editor/fabric-dark.css +59 -15
- package/styles/inplace-editor/fabric.css +61 -16
- package/styles/inplace-editor/fluent-dark.css +63 -17
- package/styles/inplace-editor/fluent.css +63 -17
- package/styles/inplace-editor/fluent2.css +1994 -0
- package/styles/inplace-editor/fluent2.scss +26 -0
- package/styles/inplace-editor/highcontrast-light.css +62 -15
- package/styles/inplace-editor/highcontrast.css +64 -16
- package/styles/inplace-editor/icons/_bootstrap5.3.scss +19 -0
- package/styles/inplace-editor/icons/_fluent2.scss +19 -0
- package/styles/inplace-editor/material-dark.css +79 -19
- package/styles/inplace-editor/material.css +95 -22
- package/styles/inplace-editor/material3-dark.css +100 -23
- package/styles/inplace-editor/material3.css +100 -23
- package/styles/inplace-editor/tailwind-dark.css +72 -19
- package/styles/inplace-editor/tailwind.css +72 -19
- package/styles/material-dark.css +79 -19
- package/styles/material-dark.scss +26 -1
- package/styles/material.css +95 -22
- package/styles/material.scss +26 -1
- package/styles/material3-dark.css +100 -23
- package/styles/material3-dark.scss +26 -1
- package/styles/material3.css +100 -23
- package/styles/material3.scss +26 -1
- package/styles/tailwind-dark.css +72 -19
- package/styles/tailwind-dark.scss +26 -1
- package/styles/tailwind.css +72 -19
- package/styles/tailwind.scss +26 -1
- package/CHANGELOG.md +0 -262
|
@@ -1,8 +1,10 @@
|
|
|
1
1
|
/* stylelint-disable property-no-vendor-prefix */
|
|
2
|
-
/* stylelint-disable-line no-empty-source */
|
|
2
|
+
/* stylelint-disable-line no-empty-source */
|
|
3
|
+
/*! calendar fabric theme variables */
|
|
3
4
|
.e-ddl.e-popup {
|
|
4
5
|
border: 0;
|
|
5
|
-
box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.4);
|
|
6
|
+
-webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.4);
|
|
7
|
+
box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.4);
|
|
6
8
|
margin-top: 1px;
|
|
7
9
|
}
|
|
8
10
|
.e-ddl.e-popup .e-input-group input {
|
|
@@ -10,6 +12,7 @@
|
|
|
10
12
|
}
|
|
11
13
|
|
|
12
14
|
.e-ddl.e-popup .e-input-group {
|
|
15
|
+
display: -webkit-box;
|
|
13
16
|
display: -ms-flexbox;
|
|
14
17
|
display: flex;
|
|
15
18
|
width: auto;
|
|
@@ -94,19 +97,43 @@
|
|
|
94
97
|
}
|
|
95
98
|
|
|
96
99
|
/* stylelint-disable property-no-vendor-prefix */
|
|
100
|
+
@-webkit-keyframes material-spinner-rotate {
|
|
101
|
+
0% {
|
|
102
|
+
-webkit-transform: rotate(0);
|
|
103
|
+
transform: rotate(0);
|
|
104
|
+
}
|
|
105
|
+
100% {
|
|
106
|
+
-webkit-transform: rotate(360deg);
|
|
107
|
+
transform: rotate(360deg);
|
|
108
|
+
}
|
|
109
|
+
}
|
|
97
110
|
@keyframes material-spinner-rotate {
|
|
98
111
|
0% {
|
|
112
|
+
-webkit-transform: rotate(0);
|
|
113
|
+
transform: rotate(0);
|
|
114
|
+
}
|
|
115
|
+
100% {
|
|
116
|
+
-webkit-transform: rotate(360deg);
|
|
117
|
+
transform: rotate(360deg);
|
|
118
|
+
}
|
|
119
|
+
}
|
|
120
|
+
@-webkit-keyframes fabric-spinner-rotate {
|
|
121
|
+
0% {
|
|
122
|
+
-webkit-transform: rotate(0);
|
|
99
123
|
transform: rotate(0);
|
|
100
124
|
}
|
|
101
125
|
100% {
|
|
126
|
+
-webkit-transform: rotate(360deg);
|
|
102
127
|
transform: rotate(360deg);
|
|
103
128
|
}
|
|
104
129
|
}
|
|
105
130
|
@keyframes fabric-spinner-rotate {
|
|
106
131
|
0% {
|
|
132
|
+
-webkit-transform: rotate(0);
|
|
107
133
|
transform: rotate(0);
|
|
108
134
|
}
|
|
109
135
|
100% {
|
|
136
|
+
-webkit-transform: rotate(360deg);
|
|
110
137
|
transform: rotate(360deg);
|
|
111
138
|
}
|
|
112
139
|
}
|
|
@@ -132,7 +159,6 @@
|
|
|
132
159
|
content: "\e97c";
|
|
133
160
|
}
|
|
134
161
|
|
|
135
|
-
/*! inplaceeditor layout */
|
|
136
162
|
.e-bigger .e-inplaceeditor .e-editable-value-wrapper,
|
|
137
163
|
.e-inplaceeditor.e-bigger .e-editable-value-wrapper {
|
|
138
164
|
padding: 8px 12px;
|
|
@@ -253,6 +279,7 @@
|
|
|
253
279
|
.e-inplaceeditor .e-editable-value-wrapper .e-editable-overlay-icon {
|
|
254
280
|
bottom: 0;
|
|
255
281
|
cursor: pointer;
|
|
282
|
+
display: -webkit-inline-box;
|
|
256
283
|
display: -ms-inline-flexbox;
|
|
257
284
|
display: inline-flex;
|
|
258
285
|
height: inherit;
|
|
@@ -263,8 +290,10 @@
|
|
|
263
290
|
width: 18px;
|
|
264
291
|
}
|
|
265
292
|
.e-inplaceeditor .e-editable-value-wrapper .e-editable-overlay-icon::before {
|
|
266
|
-
-
|
|
267
|
-
align
|
|
293
|
+
-webkit-box-align: center;
|
|
294
|
+
-ms-flex-align: center;
|
|
295
|
+
align-items: center;
|
|
296
|
+
display: -webkit-box;
|
|
268
297
|
display: -ms-flexbox;
|
|
269
298
|
display: flex;
|
|
270
299
|
font-size: 14px;
|
|
@@ -274,6 +303,7 @@
|
|
|
274
303
|
}
|
|
275
304
|
.e-inplaceeditor .e-editable-value-wrapper.e-editable-open {
|
|
276
305
|
-webkit-user-select: none;
|
|
306
|
+
-moz-user-select: none;
|
|
277
307
|
-ms-user-select: none;
|
|
278
308
|
user-select: none;
|
|
279
309
|
}
|
|
@@ -306,6 +336,7 @@
|
|
|
306
336
|
.e-inplaceeditor .e-editable-value-container .e-editable-overlay-icon {
|
|
307
337
|
bottom: 0;
|
|
308
338
|
cursor: pointer;
|
|
339
|
+
display: -webkit-inline-box;
|
|
309
340
|
display: -ms-inline-flexbox;
|
|
310
341
|
display: inline-flex;
|
|
311
342
|
height: inherit;
|
|
@@ -316,8 +347,10 @@
|
|
|
316
347
|
width: 18px;
|
|
317
348
|
}
|
|
318
349
|
.e-inplaceeditor .e-editable-value-container .e-editable-overlay-icon::before {
|
|
319
|
-
-
|
|
320
|
-
align
|
|
350
|
+
-webkit-box-align: center;
|
|
351
|
+
-ms-flex-align: center;
|
|
352
|
+
align-items: center;
|
|
353
|
+
display: -webkit-box;
|
|
321
354
|
display: -ms-flexbox;
|
|
322
355
|
display: flex;
|
|
323
356
|
font-size: 14px;
|
|
@@ -327,6 +360,7 @@
|
|
|
327
360
|
}
|
|
328
361
|
.e-inplaceeditor .e-editable-value-container.e-editable-open {
|
|
329
362
|
-webkit-user-select: none;
|
|
363
|
+
-moz-user-select: none;
|
|
330
364
|
-ms-user-select: none;
|
|
331
365
|
user-select: none;
|
|
332
366
|
}
|
|
@@ -351,6 +385,7 @@
|
|
|
351
385
|
}
|
|
352
386
|
.e-inplaceeditor.e-overlay {
|
|
353
387
|
-webkit-user-select: none;
|
|
388
|
+
-moz-user-select: none;
|
|
354
389
|
-ms-user-select: none;
|
|
355
390
|
user-select: none;
|
|
356
391
|
}
|
|
@@ -416,7 +451,8 @@
|
|
|
416
451
|
.e-inplaceeditor-tip .e-editable-loading.e-show:not(.e-rte-spin-wrap) .e-spinner-inner {
|
|
417
452
|
left: auto;
|
|
418
453
|
right: 5px;
|
|
419
|
-
transform: translateX(-30%) translateY(-50%);
|
|
454
|
+
-webkit-transform: translateX(-30%) translateY(-50%);
|
|
455
|
+
transform: translateX(-30%) translateY(-50%);
|
|
420
456
|
}
|
|
421
457
|
.e-inplaceeditor .e-editable-form,
|
|
422
458
|
.e-inplaceeditor-tip .e-editable-form {
|
|
@@ -444,6 +480,7 @@
|
|
|
444
480
|
opacity: 0.5;
|
|
445
481
|
pointer-events: none;
|
|
446
482
|
-webkit-user-select: none;
|
|
483
|
+
-moz-user-select: none;
|
|
447
484
|
-ms-user-select: none;
|
|
448
485
|
user-select: none;
|
|
449
486
|
visibility: visible;
|
|
@@ -480,7 +517,8 @@
|
|
|
480
517
|
.e-inplaceeditor-tip.e-rtl .e-editable-loading.e-show:not(.e-rte-spin-wrap) .e-spinner-inner {
|
|
481
518
|
left: 5px;
|
|
482
519
|
right: auto;
|
|
483
|
-
transform: translateX(30%) translateY(-50%);
|
|
520
|
+
-webkit-transform: translateX(30%) translateY(-50%);
|
|
521
|
+
transform: translateX(30%) translateY(-50%);
|
|
484
522
|
}
|
|
485
523
|
|
|
486
524
|
.e-bigger .e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content,
|
|
@@ -532,19 +570,24 @@
|
|
|
532
570
|
.e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content .e-editable-title {
|
|
533
571
|
-ms-flex-line-pack: center;
|
|
534
572
|
align-content: center;
|
|
573
|
+
display: -webkit-box;
|
|
535
574
|
display: -ms-flexbox;
|
|
536
575
|
display: flex;
|
|
537
|
-
-
|
|
538
|
-
|
|
576
|
+
-webkit-box-orient: vertical;
|
|
577
|
+
-webkit-box-direction: normal;
|
|
578
|
+
-ms-flex-direction: column;
|
|
579
|
+
flex-direction: column;
|
|
539
580
|
font-family: "Segoe UI", "GeezaPro", "DejaVu Serif", sans-serif, "-apple-system", "BlinkMacSystemFont";
|
|
540
581
|
font-size: 13px;
|
|
541
582
|
font-weight: 600;
|
|
542
583
|
height: 30px;
|
|
543
|
-
-
|
|
544
|
-
|
|
584
|
+
-webkit-box-pack: center;
|
|
585
|
+
-ms-flex-pack: center;
|
|
586
|
+
justify-content: center;
|
|
545
587
|
padding: 0 0 0 12px;
|
|
546
588
|
}
|
|
547
589
|
.e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content .e-editable-wrapper {
|
|
590
|
+
display: -webkit-box;
|
|
548
591
|
display: -ms-flexbox;
|
|
549
592
|
display: flex;
|
|
550
593
|
padding: 12px;
|
|
@@ -557,6 +600,7 @@
|
|
|
557
600
|
top: auto;
|
|
558
601
|
}
|
|
559
602
|
.e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content .e-editable-container {
|
|
603
|
+
display: -webkit-box;
|
|
560
604
|
display: -ms-flexbox;
|
|
561
605
|
display: flex;
|
|
562
606
|
padding: 12px;
|
|
@@ -598,7 +642,6 @@
|
|
|
598
642
|
min-height: 70px;
|
|
599
643
|
}
|
|
600
644
|
|
|
601
|
-
/*! inplaceeditor theme */
|
|
602
645
|
.e-inplaceeditor .e-editable-value-wrapper .e-editable-value {
|
|
603
646
|
border-bottom: 1px dashed #333;
|
|
604
647
|
color: #333;
|
|
@@ -655,7 +698,8 @@
|
|
|
655
698
|
.e-inplaceeditor .e-editable-action-buttons .e-btn-cancel.e-icon-btn,
|
|
656
699
|
.e-inplaceeditor-tip .e-editable-action-buttons .e-btn-save.e-icon-btn,
|
|
657
700
|
.e-inplaceeditor-tip .e-editable-action-buttons .e-btn-cancel.e-icon-btn {
|
|
658
|
-
box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.25);
|
|
701
|
+
-webkit-box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.25);
|
|
702
|
+
box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.25);
|
|
659
703
|
}
|
|
660
704
|
.e-inplaceeditor .e-editable-action-buttons .e-btn-save.e-icon-btn .e-btn-icon.e-icons,
|
|
661
705
|
.e-inplaceeditor .e-editable-action-buttons .e-btn-cancel.e-icon-btn .e-btn-icon.e-icons,
|
|
@@ -665,7 +709,8 @@
|
|
|
665
709
|
}
|
|
666
710
|
.e-inplaceeditor-tip.e-tooltip-wrap.e-popup {
|
|
667
711
|
background: #fff;
|
|
668
|
-
box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.26);
|
|
712
|
+
-webkit-box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.26);
|
|
713
|
+
box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.26);
|
|
669
714
|
}
|
|
670
715
|
.e-inplaceeditor-tip.e-tooltip-wrap.e-popup .e-tip-content {
|
|
671
716
|
border-radius: 0;
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
/* stylelint-disable property-no-vendor-prefix */
|
|
2
|
-
/* stylelint-disable-line no-empty-source */
|
|
2
|
+
/* stylelint-disable-line no-empty-source */
|
|
3
|
+
/*! calendar bootstrap5 theme variables */
|
|
3
4
|
.e-daterangepicker.e-popup .e-calendar .e-header .e-title {
|
|
4
5
|
width: 65%;
|
|
5
6
|
}
|
|
@@ -19,7 +20,8 @@
|
|
|
19
20
|
|
|
20
21
|
.e-popup.e-ddl {
|
|
21
22
|
border-radius: 4px;
|
|
22
|
-
box-shadow: none;
|
|
23
|
+
-webkit-box-shadow: none;
|
|
24
|
+
box-shadow: none;
|
|
23
25
|
margin-top: 1px;
|
|
24
26
|
}
|
|
25
27
|
.e-popup.e-ddl .e-input-group {
|
|
@@ -34,6 +36,7 @@
|
|
|
34
36
|
}
|
|
35
37
|
|
|
36
38
|
.e-popup.e-ddl .e-filter-parent .e-input-group {
|
|
39
|
+
display: -webkit-box;
|
|
37
40
|
display: -ms-flexbox;
|
|
38
41
|
display: flex;
|
|
39
42
|
width: auto;
|
|
@@ -105,11 +108,13 @@
|
|
|
105
108
|
.e-control.e-dropdownlist .e-input-group:not(.e-disabled) .e-input-group-icon:active,
|
|
106
109
|
.e-ddl.e-popup .e-input-group:not(.e-disabled) .e-back-icon:active,
|
|
107
110
|
.e-ddl.e-popup .e-input-group:not(.e-disabled) .e-clear-icon:active {
|
|
108
|
-
box-shadow: none;
|
|
111
|
+
-webkit-box-shadow: none;
|
|
112
|
+
box-shadow: none;
|
|
109
113
|
}
|
|
110
114
|
|
|
111
115
|
.e-ddl.e-popup .e-input-group:not(.e-disabled) .e-clear-icon {
|
|
112
116
|
background: none;
|
|
117
|
+
display: -webkit-box;
|
|
113
118
|
display: -ms-flexbox;
|
|
114
119
|
display: flex;
|
|
115
120
|
position: relative;
|
|
@@ -181,24 +186,48 @@
|
|
|
181
186
|
|
|
182
187
|
.e-bigger .e-multiselect.e-control-container .e-multi-select-wrapper.e-down-icon .e-clear-icon,
|
|
183
188
|
.e-bigger.e-multiselect.e-control-container .e-multi-select-wrapper.e-down-icon .e-clear-icon {
|
|
184
|
-
margin-top: -1.
|
|
189
|
+
margin-top: -1.6em;
|
|
185
190
|
}
|
|
186
191
|
|
|
187
192
|
/* stylelint-disable-line no-empty-source */
|
|
188
193
|
/* stylelint-disable property-no-vendor-prefix */
|
|
194
|
+
@-webkit-keyframes material-spinner-rotate {
|
|
195
|
+
0% {
|
|
196
|
+
-webkit-transform: rotate(0);
|
|
197
|
+
transform: rotate(0);
|
|
198
|
+
}
|
|
199
|
+
100% {
|
|
200
|
+
-webkit-transform: rotate(360deg);
|
|
201
|
+
transform: rotate(360deg);
|
|
202
|
+
}
|
|
203
|
+
}
|
|
189
204
|
@keyframes material-spinner-rotate {
|
|
190
205
|
0% {
|
|
206
|
+
-webkit-transform: rotate(0);
|
|
207
|
+
transform: rotate(0);
|
|
208
|
+
}
|
|
209
|
+
100% {
|
|
210
|
+
-webkit-transform: rotate(360deg);
|
|
211
|
+
transform: rotate(360deg);
|
|
212
|
+
}
|
|
213
|
+
}
|
|
214
|
+
@-webkit-keyframes fabric-spinner-rotate {
|
|
215
|
+
0% {
|
|
216
|
+
-webkit-transform: rotate(0);
|
|
191
217
|
transform: rotate(0);
|
|
192
218
|
}
|
|
193
219
|
100% {
|
|
220
|
+
-webkit-transform: rotate(360deg);
|
|
194
221
|
transform: rotate(360deg);
|
|
195
222
|
}
|
|
196
223
|
}
|
|
197
224
|
@keyframes fabric-spinner-rotate {
|
|
198
225
|
0% {
|
|
226
|
+
-webkit-transform: rotate(0);
|
|
199
227
|
transform: rotate(0);
|
|
200
228
|
}
|
|
201
229
|
100% {
|
|
230
|
+
-webkit-transform: rotate(360deg);
|
|
202
231
|
transform: rotate(360deg);
|
|
203
232
|
}
|
|
204
233
|
}
|
|
@@ -216,7 +245,6 @@
|
|
|
216
245
|
content: "\e730";
|
|
217
246
|
}
|
|
218
247
|
|
|
219
|
-
/*! inplaceeditor layout */
|
|
220
248
|
.e-bigger .e-inplaceeditor .e-editable-value-wrapper,
|
|
221
249
|
.e-inplaceeditor.e-bigger .e-editable-value-wrapper {
|
|
222
250
|
padding: 7px 12px 9px 12px;
|
|
@@ -337,6 +365,7 @@
|
|
|
337
365
|
.e-inplaceeditor .e-editable-value-wrapper .e-editable-overlay-icon {
|
|
338
366
|
bottom: 0;
|
|
339
367
|
cursor: pointer;
|
|
368
|
+
display: -webkit-inline-box;
|
|
340
369
|
display: -ms-inline-flexbox;
|
|
341
370
|
display: inline-flex;
|
|
342
371
|
height: inherit;
|
|
@@ -347,8 +376,10 @@
|
|
|
347
376
|
width: 20px;
|
|
348
377
|
}
|
|
349
378
|
.e-inplaceeditor .e-editable-value-wrapper .e-editable-overlay-icon::before {
|
|
350
|
-
-
|
|
351
|
-
align
|
|
379
|
+
-webkit-box-align: center;
|
|
380
|
+
-ms-flex-align: center;
|
|
381
|
+
align-items: center;
|
|
382
|
+
display: -webkit-box;
|
|
352
383
|
display: -ms-flexbox;
|
|
353
384
|
display: flex;
|
|
354
385
|
font-size: 14px;
|
|
@@ -358,6 +389,7 @@
|
|
|
358
389
|
}
|
|
359
390
|
.e-inplaceeditor .e-editable-value-wrapper.e-editable-open {
|
|
360
391
|
-webkit-user-select: none;
|
|
392
|
+
-moz-user-select: none;
|
|
361
393
|
-ms-user-select: none;
|
|
362
394
|
user-select: none;
|
|
363
395
|
}
|
|
@@ -390,6 +422,7 @@
|
|
|
390
422
|
.e-inplaceeditor .e-editable-value-container .e-editable-overlay-icon {
|
|
391
423
|
bottom: 0;
|
|
392
424
|
cursor: pointer;
|
|
425
|
+
display: -webkit-inline-box;
|
|
393
426
|
display: -ms-inline-flexbox;
|
|
394
427
|
display: inline-flex;
|
|
395
428
|
height: inherit;
|
|
@@ -400,8 +433,10 @@
|
|
|
400
433
|
width: 20px;
|
|
401
434
|
}
|
|
402
435
|
.e-inplaceeditor .e-editable-value-container .e-editable-overlay-icon::before {
|
|
403
|
-
-
|
|
404
|
-
align
|
|
436
|
+
-webkit-box-align: center;
|
|
437
|
+
-ms-flex-align: center;
|
|
438
|
+
align-items: center;
|
|
439
|
+
display: -webkit-box;
|
|
405
440
|
display: -ms-flexbox;
|
|
406
441
|
display: flex;
|
|
407
442
|
font-size: 14px;
|
|
@@ -411,6 +446,7 @@
|
|
|
411
446
|
}
|
|
412
447
|
.e-inplaceeditor .e-editable-value-container.e-editable-open {
|
|
413
448
|
-webkit-user-select: none;
|
|
449
|
+
-moz-user-select: none;
|
|
414
450
|
-ms-user-select: none;
|
|
415
451
|
user-select: none;
|
|
416
452
|
}
|
|
@@ -435,6 +471,7 @@
|
|
|
435
471
|
}
|
|
436
472
|
.e-inplaceeditor.e-overlay {
|
|
437
473
|
-webkit-user-select: none;
|
|
474
|
+
-moz-user-select: none;
|
|
438
475
|
-ms-user-select: none;
|
|
439
476
|
user-select: none;
|
|
440
477
|
}
|
|
@@ -500,7 +537,8 @@
|
|
|
500
537
|
.e-inplaceeditor-tip .e-editable-loading.e-show:not(.e-rte-spin-wrap) .e-spinner-inner {
|
|
501
538
|
left: auto;
|
|
502
539
|
right: 5px;
|
|
503
|
-
transform: translateX(-30%) translateY(-50%);
|
|
540
|
+
-webkit-transform: translateX(-30%) translateY(-50%);
|
|
541
|
+
transform: translateX(-30%) translateY(-50%);
|
|
504
542
|
}
|
|
505
543
|
.e-inplaceeditor .e-editable-form,
|
|
506
544
|
.e-inplaceeditor-tip .e-editable-form {
|
|
@@ -528,6 +566,7 @@
|
|
|
528
566
|
opacity: 0.5;
|
|
529
567
|
pointer-events: none;
|
|
530
568
|
-webkit-user-select: none;
|
|
569
|
+
-moz-user-select: none;
|
|
531
570
|
-ms-user-select: none;
|
|
532
571
|
user-select: none;
|
|
533
572
|
visibility: visible;
|
|
@@ -564,7 +603,8 @@
|
|
|
564
603
|
.e-inplaceeditor-tip.e-rtl .e-editable-loading.e-show:not(.e-rte-spin-wrap) .e-spinner-inner {
|
|
565
604
|
left: 5px;
|
|
566
605
|
right: auto;
|
|
567
|
-
transform: translateX(30%) translateY(-50%);
|
|
606
|
+
-webkit-transform: translateX(30%) translateY(-50%);
|
|
607
|
+
transform: translateX(30%) translateY(-50%);
|
|
568
608
|
}
|
|
569
609
|
|
|
570
610
|
.e-bigger .e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content,
|
|
@@ -616,19 +656,24 @@
|
|
|
616
656
|
.e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content .e-editable-title {
|
|
617
657
|
-ms-flex-line-pack: center;
|
|
618
658
|
align-content: center;
|
|
659
|
+
display: -webkit-box;
|
|
619
660
|
display: -ms-flexbox;
|
|
620
661
|
display: flex;
|
|
621
|
-
-
|
|
622
|
-
|
|
662
|
+
-webkit-box-orient: vertical;
|
|
663
|
+
-webkit-box-direction: normal;
|
|
664
|
+
-ms-flex-direction: column;
|
|
665
|
+
flex-direction: column;
|
|
623
666
|
font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, "Roboto", "Helvetica Neue", sans-serif;
|
|
624
667
|
font-size: 16px;
|
|
625
668
|
font-weight: 600;
|
|
626
669
|
height: 24px;
|
|
627
|
-
-
|
|
628
|
-
|
|
670
|
+
-webkit-box-pack: center;
|
|
671
|
+
-ms-flex-pack: center;
|
|
672
|
+
justify-content: center;
|
|
629
673
|
padding: 6px 12px 0 12px;
|
|
630
674
|
}
|
|
631
675
|
.e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content .e-editable-wrapper {
|
|
676
|
+
display: -webkit-box;
|
|
632
677
|
display: -ms-flexbox;
|
|
633
678
|
display: flex;
|
|
634
679
|
padding: 18px 12px 12px 12px;
|
|
@@ -641,6 +686,7 @@
|
|
|
641
686
|
top: auto;
|
|
642
687
|
}
|
|
643
688
|
.e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content .e-editable-container {
|
|
689
|
+
display: -webkit-box;
|
|
644
690
|
display: -ms-flexbox;
|
|
645
691
|
display: flex;
|
|
646
692
|
padding: 18px 12px 12px 12px;
|
|
@@ -682,7 +728,6 @@
|
|
|
682
728
|
min-height: 70px;
|
|
683
729
|
}
|
|
684
730
|
|
|
685
|
-
/*! inplaceeditor theme */
|
|
686
731
|
.e-inplaceeditor .e-editable-value-wrapper .e-editable-value {
|
|
687
732
|
border-bottom: 1px dashed #f3f2f1;
|
|
688
733
|
color: #f3f2f1;
|
|
@@ -743,7 +788,8 @@
|
|
|
743
788
|
}
|
|
744
789
|
.e-inplaceeditor-tip.e-tooltip-wrap.e-popup {
|
|
745
790
|
background: #252423;
|
|
746
|
-
box-shadow: 0 25.6px 57.6px 0 rgba(0, 0, 0, 0.22), 0 4.8px 14.4px 0 rgba(0, 0, 0, 0.18);
|
|
791
|
+
-webkit-box-shadow: 0 25.6px 57.6px 0 rgba(0, 0, 0, 0.22), 0 4.8px 14.4px 0 rgba(0, 0, 0, 0.18);
|
|
792
|
+
box-shadow: 0 25.6px 57.6px 0 rgba(0, 0, 0, 0.22), 0 4.8px 14.4px 0 rgba(0, 0, 0, 0.18);
|
|
747
793
|
border-radius: 0;
|
|
748
794
|
}
|
|
749
795
|
.e-inplaceeditor-tip.e-tooltip-wrap.e-popup .e-tip-content {
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
/* stylelint-disable property-no-vendor-prefix */
|
|
2
|
-
/* stylelint-disable-line no-empty-source */
|
|
2
|
+
/* stylelint-disable-line no-empty-source */
|
|
3
|
+
/*! calendar bootstrap5 theme variables */
|
|
3
4
|
.e-daterangepicker.e-popup .e-calendar .e-header .e-title {
|
|
4
5
|
width: 65%;
|
|
5
6
|
}
|
|
@@ -19,7 +20,8 @@
|
|
|
19
20
|
|
|
20
21
|
.e-popup.e-ddl {
|
|
21
22
|
border-radius: 4px;
|
|
22
|
-
box-shadow: none;
|
|
23
|
+
-webkit-box-shadow: none;
|
|
24
|
+
box-shadow: none;
|
|
23
25
|
margin-top: 1px;
|
|
24
26
|
}
|
|
25
27
|
.e-popup.e-ddl .e-input-group {
|
|
@@ -34,6 +36,7 @@
|
|
|
34
36
|
}
|
|
35
37
|
|
|
36
38
|
.e-popup.e-ddl .e-filter-parent .e-input-group {
|
|
39
|
+
display: -webkit-box;
|
|
37
40
|
display: -ms-flexbox;
|
|
38
41
|
display: flex;
|
|
39
42
|
width: auto;
|
|
@@ -105,11 +108,13 @@
|
|
|
105
108
|
.e-control.e-dropdownlist .e-input-group:not(.e-disabled) .e-input-group-icon:active,
|
|
106
109
|
.e-ddl.e-popup .e-input-group:not(.e-disabled) .e-back-icon:active,
|
|
107
110
|
.e-ddl.e-popup .e-input-group:not(.e-disabled) .e-clear-icon:active {
|
|
108
|
-
box-shadow: none;
|
|
111
|
+
-webkit-box-shadow: none;
|
|
112
|
+
box-shadow: none;
|
|
109
113
|
}
|
|
110
114
|
|
|
111
115
|
.e-ddl.e-popup .e-input-group:not(.e-disabled) .e-clear-icon {
|
|
112
116
|
background: none;
|
|
117
|
+
display: -webkit-box;
|
|
113
118
|
display: -ms-flexbox;
|
|
114
119
|
display: flex;
|
|
115
120
|
position: relative;
|
|
@@ -181,24 +186,48 @@
|
|
|
181
186
|
|
|
182
187
|
.e-bigger .e-multiselect.e-control-container .e-multi-select-wrapper.e-down-icon .e-clear-icon,
|
|
183
188
|
.e-bigger.e-multiselect.e-control-container .e-multi-select-wrapper.e-down-icon .e-clear-icon {
|
|
184
|
-
margin-top: -1.
|
|
189
|
+
margin-top: -1.6em;
|
|
185
190
|
}
|
|
186
191
|
|
|
187
192
|
/* stylelint-disable-line no-empty-source */
|
|
188
193
|
/* stylelint-disable property-no-vendor-prefix */
|
|
194
|
+
@-webkit-keyframes material-spinner-rotate {
|
|
195
|
+
0% {
|
|
196
|
+
-webkit-transform: rotate(0);
|
|
197
|
+
transform: rotate(0);
|
|
198
|
+
}
|
|
199
|
+
100% {
|
|
200
|
+
-webkit-transform: rotate(360deg);
|
|
201
|
+
transform: rotate(360deg);
|
|
202
|
+
}
|
|
203
|
+
}
|
|
189
204
|
@keyframes material-spinner-rotate {
|
|
190
205
|
0% {
|
|
206
|
+
-webkit-transform: rotate(0);
|
|
207
|
+
transform: rotate(0);
|
|
208
|
+
}
|
|
209
|
+
100% {
|
|
210
|
+
-webkit-transform: rotate(360deg);
|
|
211
|
+
transform: rotate(360deg);
|
|
212
|
+
}
|
|
213
|
+
}
|
|
214
|
+
@-webkit-keyframes fabric-spinner-rotate {
|
|
215
|
+
0% {
|
|
216
|
+
-webkit-transform: rotate(0);
|
|
191
217
|
transform: rotate(0);
|
|
192
218
|
}
|
|
193
219
|
100% {
|
|
220
|
+
-webkit-transform: rotate(360deg);
|
|
194
221
|
transform: rotate(360deg);
|
|
195
222
|
}
|
|
196
223
|
}
|
|
197
224
|
@keyframes fabric-spinner-rotate {
|
|
198
225
|
0% {
|
|
226
|
+
-webkit-transform: rotate(0);
|
|
199
227
|
transform: rotate(0);
|
|
200
228
|
}
|
|
201
229
|
100% {
|
|
230
|
+
-webkit-transform: rotate(360deg);
|
|
202
231
|
transform: rotate(360deg);
|
|
203
232
|
}
|
|
204
233
|
}
|
|
@@ -216,7 +245,6 @@
|
|
|
216
245
|
content: "\e730";
|
|
217
246
|
}
|
|
218
247
|
|
|
219
|
-
/*! inplaceeditor layout */
|
|
220
248
|
.e-bigger .e-inplaceeditor .e-editable-value-wrapper,
|
|
221
249
|
.e-inplaceeditor.e-bigger .e-editable-value-wrapper {
|
|
222
250
|
padding: 7px 12px 9px 12px;
|
|
@@ -337,6 +365,7 @@
|
|
|
337
365
|
.e-inplaceeditor .e-editable-value-wrapper .e-editable-overlay-icon {
|
|
338
366
|
bottom: 0;
|
|
339
367
|
cursor: pointer;
|
|
368
|
+
display: -webkit-inline-box;
|
|
340
369
|
display: -ms-inline-flexbox;
|
|
341
370
|
display: inline-flex;
|
|
342
371
|
height: inherit;
|
|
@@ -347,8 +376,10 @@
|
|
|
347
376
|
width: 20px;
|
|
348
377
|
}
|
|
349
378
|
.e-inplaceeditor .e-editable-value-wrapper .e-editable-overlay-icon::before {
|
|
350
|
-
-
|
|
351
|
-
align
|
|
379
|
+
-webkit-box-align: center;
|
|
380
|
+
-ms-flex-align: center;
|
|
381
|
+
align-items: center;
|
|
382
|
+
display: -webkit-box;
|
|
352
383
|
display: -ms-flexbox;
|
|
353
384
|
display: flex;
|
|
354
385
|
font-size: 14px;
|
|
@@ -358,6 +389,7 @@
|
|
|
358
389
|
}
|
|
359
390
|
.e-inplaceeditor .e-editable-value-wrapper.e-editable-open {
|
|
360
391
|
-webkit-user-select: none;
|
|
392
|
+
-moz-user-select: none;
|
|
361
393
|
-ms-user-select: none;
|
|
362
394
|
user-select: none;
|
|
363
395
|
}
|
|
@@ -390,6 +422,7 @@
|
|
|
390
422
|
.e-inplaceeditor .e-editable-value-container .e-editable-overlay-icon {
|
|
391
423
|
bottom: 0;
|
|
392
424
|
cursor: pointer;
|
|
425
|
+
display: -webkit-inline-box;
|
|
393
426
|
display: -ms-inline-flexbox;
|
|
394
427
|
display: inline-flex;
|
|
395
428
|
height: inherit;
|
|
@@ -400,8 +433,10 @@
|
|
|
400
433
|
width: 20px;
|
|
401
434
|
}
|
|
402
435
|
.e-inplaceeditor .e-editable-value-container .e-editable-overlay-icon::before {
|
|
403
|
-
-
|
|
404
|
-
align
|
|
436
|
+
-webkit-box-align: center;
|
|
437
|
+
-ms-flex-align: center;
|
|
438
|
+
align-items: center;
|
|
439
|
+
display: -webkit-box;
|
|
405
440
|
display: -ms-flexbox;
|
|
406
441
|
display: flex;
|
|
407
442
|
font-size: 14px;
|
|
@@ -411,6 +446,7 @@
|
|
|
411
446
|
}
|
|
412
447
|
.e-inplaceeditor .e-editable-value-container.e-editable-open {
|
|
413
448
|
-webkit-user-select: none;
|
|
449
|
+
-moz-user-select: none;
|
|
414
450
|
-ms-user-select: none;
|
|
415
451
|
user-select: none;
|
|
416
452
|
}
|
|
@@ -435,6 +471,7 @@
|
|
|
435
471
|
}
|
|
436
472
|
.e-inplaceeditor.e-overlay {
|
|
437
473
|
-webkit-user-select: none;
|
|
474
|
+
-moz-user-select: none;
|
|
438
475
|
-ms-user-select: none;
|
|
439
476
|
user-select: none;
|
|
440
477
|
}
|
|
@@ -500,7 +537,8 @@
|
|
|
500
537
|
.e-inplaceeditor-tip .e-editable-loading.e-show:not(.e-rte-spin-wrap) .e-spinner-inner {
|
|
501
538
|
left: auto;
|
|
502
539
|
right: 5px;
|
|
503
|
-
transform: translateX(-30%) translateY(-50%);
|
|
540
|
+
-webkit-transform: translateX(-30%) translateY(-50%);
|
|
541
|
+
transform: translateX(-30%) translateY(-50%);
|
|
504
542
|
}
|
|
505
543
|
.e-inplaceeditor .e-editable-form,
|
|
506
544
|
.e-inplaceeditor-tip .e-editable-form {
|
|
@@ -528,6 +566,7 @@
|
|
|
528
566
|
opacity: 0.5;
|
|
529
567
|
pointer-events: none;
|
|
530
568
|
-webkit-user-select: none;
|
|
569
|
+
-moz-user-select: none;
|
|
531
570
|
-ms-user-select: none;
|
|
532
571
|
user-select: none;
|
|
533
572
|
visibility: visible;
|
|
@@ -564,7 +603,8 @@
|
|
|
564
603
|
.e-inplaceeditor-tip.e-rtl .e-editable-loading.e-show:not(.e-rte-spin-wrap) .e-spinner-inner {
|
|
565
604
|
left: 5px;
|
|
566
605
|
right: auto;
|
|
567
|
-
transform: translateX(30%) translateY(-50%);
|
|
606
|
+
-webkit-transform: translateX(30%) translateY(-50%);
|
|
607
|
+
transform: translateX(30%) translateY(-50%);
|
|
568
608
|
}
|
|
569
609
|
|
|
570
610
|
.e-bigger .e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content,
|
|
@@ -616,19 +656,24 @@
|
|
|
616
656
|
.e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content .e-editable-title {
|
|
617
657
|
-ms-flex-line-pack: center;
|
|
618
658
|
align-content: center;
|
|
659
|
+
display: -webkit-box;
|
|
619
660
|
display: -ms-flexbox;
|
|
620
661
|
display: flex;
|
|
621
|
-
-
|
|
622
|
-
|
|
662
|
+
-webkit-box-orient: vertical;
|
|
663
|
+
-webkit-box-direction: normal;
|
|
664
|
+
-ms-flex-direction: column;
|
|
665
|
+
flex-direction: column;
|
|
623
666
|
font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, "Roboto", "Helvetica Neue", sans-serif;
|
|
624
667
|
font-size: 16px;
|
|
625
668
|
font-weight: 600;
|
|
626
669
|
height: 24px;
|
|
627
|
-
-
|
|
628
|
-
|
|
670
|
+
-webkit-box-pack: center;
|
|
671
|
+
-ms-flex-pack: center;
|
|
672
|
+
justify-content: center;
|
|
629
673
|
padding: 6px 12px 0 12px;
|
|
630
674
|
}
|
|
631
675
|
.e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content .e-editable-wrapper {
|
|
676
|
+
display: -webkit-box;
|
|
632
677
|
display: -ms-flexbox;
|
|
633
678
|
display: flex;
|
|
634
679
|
padding: 18px 12px 12px 12px;
|
|
@@ -641,6 +686,7 @@
|
|
|
641
686
|
top: auto;
|
|
642
687
|
}
|
|
643
688
|
.e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content .e-editable-container {
|
|
689
|
+
display: -webkit-box;
|
|
644
690
|
display: -ms-flexbox;
|
|
645
691
|
display: flex;
|
|
646
692
|
padding: 18px 12px 12px 12px;
|
|
@@ -682,7 +728,6 @@
|
|
|
682
728
|
min-height: 70px;
|
|
683
729
|
}
|
|
684
730
|
|
|
685
|
-
/*! inplaceeditor theme */
|
|
686
731
|
.e-inplaceeditor .e-editable-value-wrapper .e-editable-value {
|
|
687
732
|
border-bottom: 1px dashed #201f1e;
|
|
688
733
|
color: #201f1e;
|
|
@@ -743,7 +788,8 @@
|
|
|
743
788
|
}
|
|
744
789
|
.e-inplaceeditor-tip.e-tooltip-wrap.e-popup {
|
|
745
790
|
background: #fff;
|
|
746
|
-
box-shadow: 0 25.6px 57.6px 0 rgba(0, 0, 0, 0.22), 0 4.8px 14.4px 0 rgba(0, 0, 0, 0.18);
|
|
791
|
+
-webkit-box-shadow: 0 25.6px 57.6px 0 rgba(0, 0, 0, 0.22), 0 4.8px 14.4px 0 rgba(0, 0, 0, 0.18);
|
|
792
|
+
box-shadow: 0 25.6px 57.6px 0 rgba(0, 0, 0, 0.22), 0 4.8px 14.4px 0 rgba(0, 0, 0, 0.18);
|
|
747
793
|
border-radius: 0;
|
|
748
794
|
}
|
|
749
795
|
.e-inplaceeditor-tip.e-tooltip-wrap.e-popup .e-tip-content {
|