@syncfusion/ej2-inplace-editor 25.1.35 → 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-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/dist/ts/index.d.ts +4 -0
- package/dist/ts/index.ts +4 -0
- package/dist/ts/inplace-editor/base/classes.d.ts +63 -0
- package/dist/ts/inplace-editor/base/events.d.ts +17 -0
- package/dist/ts/inplace-editor/base/index.d.ts +10 -0
- package/dist/ts/inplace-editor/base/index.ts +10 -0
- package/dist/ts/inplace-editor/base/inplace-editor-model.d.ts +344 -0
- package/dist/ts/inplace-editor/base/inplace-editor.d.ts +623 -0
- package/dist/ts/inplace-editor/base/inplace-editor.ts +0 -1
- package/dist/ts/inplace-editor/base/interface.d.ts +117 -0
- package/dist/ts/inplace-editor/base/models-model.d.ts +22 -0
- package/dist/ts/inplace-editor/base/models.d.ts +31 -0
- package/dist/ts/inplace-editor/base/models.ts +0 -2
- package/dist/ts/inplace-editor/base/util.d.ts +28 -0
- package/dist/ts/inplace-editor/index.d.ts +5 -0
- package/dist/ts/inplace-editor/index.ts +5 -0
- package/dist/ts/inplace-editor/modules/auto-complete.d.ts +34 -0
- package/dist/ts/inplace-editor/modules/base-module.d.ts +19 -0
- package/dist/ts/inplace-editor/modules/color-picker.d.ts +29 -0
- package/dist/ts/inplace-editor/modules/combo-box.d.ts +34 -0
- package/dist/ts/inplace-editor/modules/date-range-picker.d.ts +29 -0
- package/dist/ts/inplace-editor/modules/index.d.ts +12 -0
- package/dist/ts/inplace-editor/modules/index.ts +12 -0
- package/dist/ts/inplace-editor/modules/multi-select.d.ts +35 -0
- package/dist/ts/inplace-editor/modules/rte.d.ts +31 -0
- package/dist/ts/inplace-editor/modules/rte.ts +3 -2
- package/dist/ts/inplace-editor/modules/slider.d.ts +30 -0
- package/dist/ts/inplace-editor/modules/time-picker.d.ts +29 -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 +65 -14
- package/styles/bootstrap-dark.scss +26 -1
- package/styles/bootstrap.css +67 -15
- package/styles/bootstrap.scss +26 -1
- package/styles/bootstrap4.css +71 -19
- package/styles/bootstrap4.scss +26 -1
- package/styles/bootstrap5-dark.css +62 -14
- package/styles/bootstrap5-dark.scss +26 -1
- package/styles/bootstrap5.css +62 -14
- package/styles/bootstrap5.scss +26 -1
- package/styles/fabric-dark.css +59 -13
- package/styles/fabric-dark.scss +26 -1
- package/styles/fabric.css +61 -14
- package/styles/fabric.scss +26 -1
- package/styles/fluent-dark.css +67 -14
- package/styles/fluent-dark.scss +26 -1
- package/styles/fluent.css +67 -14
- package/styles/fluent.scss +26 -1
- package/styles/fluent2.css +1996 -0
- package/styles/fluent2.scss +26 -0
- package/styles/highcontrast-light.css +62 -13
- package/styles/highcontrast-light.scss +26 -1
- package/styles/highcontrast.css +64 -14
- 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/_theme.scss +8 -3
- package/styles/inplace-editor/bootstrap-dark.css +65 -14
- package/styles/inplace-editor/bootstrap.css +67 -15
- package/styles/inplace-editor/bootstrap4.css +71 -19
- package/styles/inplace-editor/bootstrap5-dark.css +62 -14
- package/styles/inplace-editor/bootstrap5.css +62 -14
- package/styles/inplace-editor/fabric-dark.css +59 -13
- package/styles/inplace-editor/fabric.css +61 -14
- package/styles/inplace-editor/fluent-dark.css +67 -14
- package/styles/inplace-editor/fluent.css +67 -14
- package/styles/inplace-editor/fluent2.css +1996 -0
- package/styles/inplace-editor/fluent2.scss +26 -0
- package/styles/inplace-editor/highcontrast-light.css +62 -13
- package/styles/inplace-editor/highcontrast.css +64 -14
- 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 +88 -17
- package/styles/inplace-editor/material.css +104 -20
- package/styles/inplace-editor/material3-dark.css +101 -21
- package/styles/inplace-editor/material3.css +101 -21
- package/styles/inplace-editor/tailwind-dark.css +72 -17
- package/styles/inplace-editor/tailwind.css +72 -17
- package/styles/material-dark.css +88 -17
- package/styles/material-dark.scss +26 -1
- package/styles/material.css +104 -20
- package/styles/material.scss +26 -1
- package/styles/material3-dark.css +101 -21
- package/styles/material3-dark.scss +26 -1
- package/styles/material3.css +101 -21
- package/styles/material3.scss +26 -1
- package/styles/tailwind-dark.css +72 -17
- package/styles/tailwind-dark.scss +26 -1
- package/styles/tailwind.css +72 -17
- package/styles/tailwind.scss +26 -1
- package/CHANGELOG.md +0 -262
- package/dist/ej2-inplace-editor.min.js +0 -10
|
@@ -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
|
}
|
|
@@ -253,6 +280,7 @@
|
|
|
253
280
|
.e-inplaceeditor .e-editable-value-wrapper .e-editable-overlay-icon {
|
|
254
281
|
bottom: 0;
|
|
255
282
|
cursor: pointer;
|
|
283
|
+
display: -webkit-inline-box;
|
|
256
284
|
display: -ms-inline-flexbox;
|
|
257
285
|
display: inline-flex;
|
|
258
286
|
height: inherit;
|
|
@@ -263,8 +291,10 @@
|
|
|
263
291
|
width: 18px;
|
|
264
292
|
}
|
|
265
293
|
.e-inplaceeditor .e-editable-value-wrapper .e-editable-overlay-icon::before {
|
|
266
|
-
-
|
|
267
|
-
align
|
|
294
|
+
-webkit-box-align: center;
|
|
295
|
+
-ms-flex-align: center;
|
|
296
|
+
align-items: center;
|
|
297
|
+
display: -webkit-box;
|
|
268
298
|
display: -ms-flexbox;
|
|
269
299
|
display: flex;
|
|
270
300
|
font-size: 14px;
|
|
@@ -274,6 +304,7 @@
|
|
|
274
304
|
}
|
|
275
305
|
.e-inplaceeditor .e-editable-value-wrapper.e-editable-open {
|
|
276
306
|
-webkit-user-select: none;
|
|
307
|
+
-moz-user-select: none;
|
|
277
308
|
-ms-user-select: none;
|
|
278
309
|
user-select: none;
|
|
279
310
|
}
|
|
@@ -306,6 +337,7 @@
|
|
|
306
337
|
.e-inplaceeditor .e-editable-value-container .e-editable-overlay-icon {
|
|
307
338
|
bottom: 0;
|
|
308
339
|
cursor: pointer;
|
|
340
|
+
display: -webkit-inline-box;
|
|
309
341
|
display: -ms-inline-flexbox;
|
|
310
342
|
display: inline-flex;
|
|
311
343
|
height: inherit;
|
|
@@ -316,8 +348,10 @@
|
|
|
316
348
|
width: 18px;
|
|
317
349
|
}
|
|
318
350
|
.e-inplaceeditor .e-editable-value-container .e-editable-overlay-icon::before {
|
|
319
|
-
-
|
|
320
|
-
align
|
|
351
|
+
-webkit-box-align: center;
|
|
352
|
+
-ms-flex-align: center;
|
|
353
|
+
align-items: center;
|
|
354
|
+
display: -webkit-box;
|
|
321
355
|
display: -ms-flexbox;
|
|
322
356
|
display: flex;
|
|
323
357
|
font-size: 14px;
|
|
@@ -327,6 +361,7 @@
|
|
|
327
361
|
}
|
|
328
362
|
.e-inplaceeditor .e-editable-value-container.e-editable-open {
|
|
329
363
|
-webkit-user-select: none;
|
|
364
|
+
-moz-user-select: none;
|
|
330
365
|
-ms-user-select: none;
|
|
331
366
|
user-select: none;
|
|
332
367
|
}
|
|
@@ -351,6 +386,7 @@
|
|
|
351
386
|
}
|
|
352
387
|
.e-inplaceeditor.e-overlay {
|
|
353
388
|
-webkit-user-select: none;
|
|
389
|
+
-moz-user-select: none;
|
|
354
390
|
-ms-user-select: none;
|
|
355
391
|
user-select: none;
|
|
356
392
|
}
|
|
@@ -416,7 +452,8 @@
|
|
|
416
452
|
.e-inplaceeditor-tip .e-editable-loading.e-show:not(.e-rte-spin-wrap) .e-spinner-inner {
|
|
417
453
|
left: auto;
|
|
418
454
|
right: 5px;
|
|
419
|
-
transform: translateX(-30%) translateY(-50%);
|
|
455
|
+
-webkit-transform: translateX(-30%) translateY(-50%);
|
|
456
|
+
transform: translateX(-30%) translateY(-50%);
|
|
420
457
|
}
|
|
421
458
|
.e-inplaceeditor .e-editable-form,
|
|
422
459
|
.e-inplaceeditor-tip .e-editable-form {
|
|
@@ -444,6 +481,7 @@
|
|
|
444
481
|
opacity: 0.5;
|
|
445
482
|
pointer-events: none;
|
|
446
483
|
-webkit-user-select: none;
|
|
484
|
+
-moz-user-select: none;
|
|
447
485
|
-ms-user-select: none;
|
|
448
486
|
user-select: none;
|
|
449
487
|
visibility: visible;
|
|
@@ -480,7 +518,8 @@
|
|
|
480
518
|
.e-inplaceeditor-tip.e-rtl .e-editable-loading.e-show:not(.e-rte-spin-wrap) .e-spinner-inner {
|
|
481
519
|
left: 5px;
|
|
482
520
|
right: auto;
|
|
483
|
-
transform: translateX(30%) translateY(-50%);
|
|
521
|
+
-webkit-transform: translateX(30%) translateY(-50%);
|
|
522
|
+
transform: translateX(30%) translateY(-50%);
|
|
484
523
|
}
|
|
485
524
|
|
|
486
525
|
.e-bigger .e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content,
|
|
@@ -532,19 +571,24 @@
|
|
|
532
571
|
.e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content .e-editable-title {
|
|
533
572
|
-ms-flex-line-pack: center;
|
|
534
573
|
align-content: center;
|
|
574
|
+
display: -webkit-box;
|
|
535
575
|
display: -ms-flexbox;
|
|
536
576
|
display: flex;
|
|
537
|
-
-
|
|
538
|
-
|
|
577
|
+
-webkit-box-orient: vertical;
|
|
578
|
+
-webkit-box-direction: normal;
|
|
579
|
+
-ms-flex-direction: column;
|
|
580
|
+
flex-direction: column;
|
|
539
581
|
font-family: "Segoe UI", "GeezaPro", "DejaVu Serif", sans-serif, "-apple-system", "BlinkMacSystemFont";
|
|
540
582
|
font-size: 13px;
|
|
541
583
|
font-weight: 600;
|
|
542
584
|
height: 30px;
|
|
543
|
-
-
|
|
544
|
-
|
|
585
|
+
-webkit-box-pack: center;
|
|
586
|
+
-ms-flex-pack: center;
|
|
587
|
+
justify-content: center;
|
|
545
588
|
padding: 0 0 0 12px;
|
|
546
589
|
}
|
|
547
590
|
.e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content .e-editable-wrapper {
|
|
591
|
+
display: -webkit-box;
|
|
548
592
|
display: -ms-flexbox;
|
|
549
593
|
display: flex;
|
|
550
594
|
padding: 12px;
|
|
@@ -557,6 +601,7 @@
|
|
|
557
601
|
top: auto;
|
|
558
602
|
}
|
|
559
603
|
.e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content .e-editable-container {
|
|
604
|
+
display: -webkit-box;
|
|
560
605
|
display: -ms-flexbox;
|
|
561
606
|
display: flex;
|
|
562
607
|
padding: 12px;
|
|
@@ -655,7 +700,8 @@
|
|
|
655
700
|
.e-inplaceeditor .e-editable-action-buttons .e-btn-cancel.e-icon-btn,
|
|
656
701
|
.e-inplaceeditor-tip .e-editable-action-buttons .e-btn-save.e-icon-btn,
|
|
657
702
|
.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);
|
|
703
|
+
-webkit-box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.25);
|
|
704
|
+
box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.25);
|
|
659
705
|
}
|
|
660
706
|
.e-inplaceeditor .e-editable-action-buttons .e-btn-save.e-icon-btn .e-btn-icon.e-icons,
|
|
661
707
|
.e-inplaceeditor .e-editable-action-buttons .e-btn-cancel.e-icon-btn .e-btn-icon.e-icons,
|
|
@@ -665,7 +711,8 @@
|
|
|
665
711
|
}
|
|
666
712
|
.e-inplaceeditor-tip.e-tooltip-wrap.e-popup {
|
|
667
713
|
background: #fff;
|
|
668
|
-
box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.26);
|
|
714
|
+
-webkit-box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.26);
|
|
715
|
+
box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.26);
|
|
669
716
|
}
|
|
670
717
|
.e-inplaceeditor-tip.e-tooltip-wrap.e-popup .e-tip-content {
|
|
671
718
|
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;
|
|
@@ -179,21 +184,50 @@
|
|
|
179
184
|
border-left-width: 0;
|
|
180
185
|
}
|
|
181
186
|
|
|
187
|
+
.e-bigger .e-multiselect.e-control-container .e-multi-select-wrapper.e-down-icon .e-clear-icon,
|
|
188
|
+
.e-bigger.e-multiselect.e-control-container .e-multi-select-wrapper.e-down-icon .e-clear-icon {
|
|
189
|
+
margin-top: -1.6em;
|
|
190
|
+
}
|
|
191
|
+
|
|
182
192
|
/* stylelint-disable-line no-empty-source */
|
|
183
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
|
+
}
|
|
184
204
|
@keyframes material-spinner-rotate {
|
|
185
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);
|
|
186
217
|
transform: rotate(0);
|
|
187
218
|
}
|
|
188
219
|
100% {
|
|
220
|
+
-webkit-transform: rotate(360deg);
|
|
189
221
|
transform: rotate(360deg);
|
|
190
222
|
}
|
|
191
223
|
}
|
|
192
224
|
@keyframes fabric-spinner-rotate {
|
|
193
225
|
0% {
|
|
226
|
+
-webkit-transform: rotate(0);
|
|
194
227
|
transform: rotate(0);
|
|
195
228
|
}
|
|
196
229
|
100% {
|
|
230
|
+
-webkit-transform: rotate(360deg);
|
|
197
231
|
transform: rotate(360deg);
|
|
198
232
|
}
|
|
199
233
|
}
|
|
@@ -332,6 +366,7 @@
|
|
|
332
366
|
.e-inplaceeditor .e-editable-value-wrapper .e-editable-overlay-icon {
|
|
333
367
|
bottom: 0;
|
|
334
368
|
cursor: pointer;
|
|
369
|
+
display: -webkit-inline-box;
|
|
335
370
|
display: -ms-inline-flexbox;
|
|
336
371
|
display: inline-flex;
|
|
337
372
|
height: inherit;
|
|
@@ -342,8 +377,10 @@
|
|
|
342
377
|
width: 20px;
|
|
343
378
|
}
|
|
344
379
|
.e-inplaceeditor .e-editable-value-wrapper .e-editable-overlay-icon::before {
|
|
345
|
-
-
|
|
346
|
-
align
|
|
380
|
+
-webkit-box-align: center;
|
|
381
|
+
-ms-flex-align: center;
|
|
382
|
+
align-items: center;
|
|
383
|
+
display: -webkit-box;
|
|
347
384
|
display: -ms-flexbox;
|
|
348
385
|
display: flex;
|
|
349
386
|
font-size: 14px;
|
|
@@ -353,6 +390,7 @@
|
|
|
353
390
|
}
|
|
354
391
|
.e-inplaceeditor .e-editable-value-wrapper.e-editable-open {
|
|
355
392
|
-webkit-user-select: none;
|
|
393
|
+
-moz-user-select: none;
|
|
356
394
|
-ms-user-select: none;
|
|
357
395
|
user-select: none;
|
|
358
396
|
}
|
|
@@ -385,6 +423,7 @@
|
|
|
385
423
|
.e-inplaceeditor .e-editable-value-container .e-editable-overlay-icon {
|
|
386
424
|
bottom: 0;
|
|
387
425
|
cursor: pointer;
|
|
426
|
+
display: -webkit-inline-box;
|
|
388
427
|
display: -ms-inline-flexbox;
|
|
389
428
|
display: inline-flex;
|
|
390
429
|
height: inherit;
|
|
@@ -395,8 +434,10 @@
|
|
|
395
434
|
width: 20px;
|
|
396
435
|
}
|
|
397
436
|
.e-inplaceeditor .e-editable-value-container .e-editable-overlay-icon::before {
|
|
398
|
-
-
|
|
399
|
-
align
|
|
437
|
+
-webkit-box-align: center;
|
|
438
|
+
-ms-flex-align: center;
|
|
439
|
+
align-items: center;
|
|
440
|
+
display: -webkit-box;
|
|
400
441
|
display: -ms-flexbox;
|
|
401
442
|
display: flex;
|
|
402
443
|
font-size: 14px;
|
|
@@ -406,6 +447,7 @@
|
|
|
406
447
|
}
|
|
407
448
|
.e-inplaceeditor .e-editable-value-container.e-editable-open {
|
|
408
449
|
-webkit-user-select: none;
|
|
450
|
+
-moz-user-select: none;
|
|
409
451
|
-ms-user-select: none;
|
|
410
452
|
user-select: none;
|
|
411
453
|
}
|
|
@@ -430,6 +472,7 @@
|
|
|
430
472
|
}
|
|
431
473
|
.e-inplaceeditor.e-overlay {
|
|
432
474
|
-webkit-user-select: none;
|
|
475
|
+
-moz-user-select: none;
|
|
433
476
|
-ms-user-select: none;
|
|
434
477
|
user-select: none;
|
|
435
478
|
}
|
|
@@ -495,7 +538,8 @@
|
|
|
495
538
|
.e-inplaceeditor-tip .e-editable-loading.e-show:not(.e-rte-spin-wrap) .e-spinner-inner {
|
|
496
539
|
left: auto;
|
|
497
540
|
right: 5px;
|
|
498
|
-
transform: translateX(-30%) translateY(-50%);
|
|
541
|
+
-webkit-transform: translateX(-30%) translateY(-50%);
|
|
542
|
+
transform: translateX(-30%) translateY(-50%);
|
|
499
543
|
}
|
|
500
544
|
.e-inplaceeditor .e-editable-form,
|
|
501
545
|
.e-inplaceeditor-tip .e-editable-form {
|
|
@@ -523,6 +567,7 @@
|
|
|
523
567
|
opacity: 0.5;
|
|
524
568
|
pointer-events: none;
|
|
525
569
|
-webkit-user-select: none;
|
|
570
|
+
-moz-user-select: none;
|
|
526
571
|
-ms-user-select: none;
|
|
527
572
|
user-select: none;
|
|
528
573
|
visibility: visible;
|
|
@@ -559,7 +604,8 @@
|
|
|
559
604
|
.e-inplaceeditor-tip.e-rtl .e-editable-loading.e-show:not(.e-rte-spin-wrap) .e-spinner-inner {
|
|
560
605
|
left: 5px;
|
|
561
606
|
right: auto;
|
|
562
|
-
transform: translateX(30%) translateY(-50%);
|
|
607
|
+
-webkit-transform: translateX(30%) translateY(-50%);
|
|
608
|
+
transform: translateX(30%) translateY(-50%);
|
|
563
609
|
}
|
|
564
610
|
|
|
565
611
|
.e-bigger .e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content,
|
|
@@ -611,19 +657,24 @@
|
|
|
611
657
|
.e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content .e-editable-title {
|
|
612
658
|
-ms-flex-line-pack: center;
|
|
613
659
|
align-content: center;
|
|
660
|
+
display: -webkit-box;
|
|
614
661
|
display: -ms-flexbox;
|
|
615
662
|
display: flex;
|
|
616
|
-
-
|
|
617
|
-
|
|
663
|
+
-webkit-box-orient: vertical;
|
|
664
|
+
-webkit-box-direction: normal;
|
|
665
|
+
-ms-flex-direction: column;
|
|
666
|
+
flex-direction: column;
|
|
618
667
|
font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, "Roboto", "Helvetica Neue", sans-serif;
|
|
619
668
|
font-size: 16px;
|
|
620
669
|
font-weight: 600;
|
|
621
670
|
height: 24px;
|
|
622
|
-
-
|
|
623
|
-
|
|
671
|
+
-webkit-box-pack: center;
|
|
672
|
+
-ms-flex-pack: center;
|
|
673
|
+
justify-content: center;
|
|
624
674
|
padding: 6px 12px 0 12px;
|
|
625
675
|
}
|
|
626
676
|
.e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content .e-editable-wrapper {
|
|
677
|
+
display: -webkit-box;
|
|
627
678
|
display: -ms-flexbox;
|
|
628
679
|
display: flex;
|
|
629
680
|
padding: 18px 12px 12px 12px;
|
|
@@ -636,6 +687,7 @@
|
|
|
636
687
|
top: auto;
|
|
637
688
|
}
|
|
638
689
|
.e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content .e-editable-container {
|
|
690
|
+
display: -webkit-box;
|
|
639
691
|
display: -ms-flexbox;
|
|
640
692
|
display: flex;
|
|
641
693
|
padding: 18px 12px 12px 12px;
|
|
@@ -738,7 +790,8 @@
|
|
|
738
790
|
}
|
|
739
791
|
.e-inplaceeditor-tip.e-tooltip-wrap.e-popup {
|
|
740
792
|
background: #252423;
|
|
741
|
-
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);
|
|
793
|
+
-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);
|
|
794
|
+
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);
|
|
742
795
|
border-radius: 0;
|
|
743
796
|
}
|
|
744
797
|
.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;
|
|
@@ -179,21 +184,50 @@
|
|
|
179
184
|
border-left-width: 0;
|
|
180
185
|
}
|
|
181
186
|
|
|
187
|
+
.e-bigger .e-multiselect.e-control-container .e-multi-select-wrapper.e-down-icon .e-clear-icon,
|
|
188
|
+
.e-bigger.e-multiselect.e-control-container .e-multi-select-wrapper.e-down-icon .e-clear-icon {
|
|
189
|
+
margin-top: -1.6em;
|
|
190
|
+
}
|
|
191
|
+
|
|
182
192
|
/* stylelint-disable-line no-empty-source */
|
|
183
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
|
+
}
|
|
184
204
|
@keyframes material-spinner-rotate {
|
|
185
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);
|
|
186
217
|
transform: rotate(0);
|
|
187
218
|
}
|
|
188
219
|
100% {
|
|
220
|
+
-webkit-transform: rotate(360deg);
|
|
189
221
|
transform: rotate(360deg);
|
|
190
222
|
}
|
|
191
223
|
}
|
|
192
224
|
@keyframes fabric-spinner-rotate {
|
|
193
225
|
0% {
|
|
226
|
+
-webkit-transform: rotate(0);
|
|
194
227
|
transform: rotate(0);
|
|
195
228
|
}
|
|
196
229
|
100% {
|
|
230
|
+
-webkit-transform: rotate(360deg);
|
|
197
231
|
transform: rotate(360deg);
|
|
198
232
|
}
|
|
199
233
|
}
|
|
@@ -332,6 +366,7 @@
|
|
|
332
366
|
.e-inplaceeditor .e-editable-value-wrapper .e-editable-overlay-icon {
|
|
333
367
|
bottom: 0;
|
|
334
368
|
cursor: pointer;
|
|
369
|
+
display: -webkit-inline-box;
|
|
335
370
|
display: -ms-inline-flexbox;
|
|
336
371
|
display: inline-flex;
|
|
337
372
|
height: inherit;
|
|
@@ -342,8 +377,10 @@
|
|
|
342
377
|
width: 20px;
|
|
343
378
|
}
|
|
344
379
|
.e-inplaceeditor .e-editable-value-wrapper .e-editable-overlay-icon::before {
|
|
345
|
-
-
|
|
346
|
-
align
|
|
380
|
+
-webkit-box-align: center;
|
|
381
|
+
-ms-flex-align: center;
|
|
382
|
+
align-items: center;
|
|
383
|
+
display: -webkit-box;
|
|
347
384
|
display: -ms-flexbox;
|
|
348
385
|
display: flex;
|
|
349
386
|
font-size: 14px;
|
|
@@ -353,6 +390,7 @@
|
|
|
353
390
|
}
|
|
354
391
|
.e-inplaceeditor .e-editable-value-wrapper.e-editable-open {
|
|
355
392
|
-webkit-user-select: none;
|
|
393
|
+
-moz-user-select: none;
|
|
356
394
|
-ms-user-select: none;
|
|
357
395
|
user-select: none;
|
|
358
396
|
}
|
|
@@ -385,6 +423,7 @@
|
|
|
385
423
|
.e-inplaceeditor .e-editable-value-container .e-editable-overlay-icon {
|
|
386
424
|
bottom: 0;
|
|
387
425
|
cursor: pointer;
|
|
426
|
+
display: -webkit-inline-box;
|
|
388
427
|
display: -ms-inline-flexbox;
|
|
389
428
|
display: inline-flex;
|
|
390
429
|
height: inherit;
|
|
@@ -395,8 +434,10 @@
|
|
|
395
434
|
width: 20px;
|
|
396
435
|
}
|
|
397
436
|
.e-inplaceeditor .e-editable-value-container .e-editable-overlay-icon::before {
|
|
398
|
-
-
|
|
399
|
-
align
|
|
437
|
+
-webkit-box-align: center;
|
|
438
|
+
-ms-flex-align: center;
|
|
439
|
+
align-items: center;
|
|
440
|
+
display: -webkit-box;
|
|
400
441
|
display: -ms-flexbox;
|
|
401
442
|
display: flex;
|
|
402
443
|
font-size: 14px;
|
|
@@ -406,6 +447,7 @@
|
|
|
406
447
|
}
|
|
407
448
|
.e-inplaceeditor .e-editable-value-container.e-editable-open {
|
|
408
449
|
-webkit-user-select: none;
|
|
450
|
+
-moz-user-select: none;
|
|
409
451
|
-ms-user-select: none;
|
|
410
452
|
user-select: none;
|
|
411
453
|
}
|
|
@@ -430,6 +472,7 @@
|
|
|
430
472
|
}
|
|
431
473
|
.e-inplaceeditor.e-overlay {
|
|
432
474
|
-webkit-user-select: none;
|
|
475
|
+
-moz-user-select: none;
|
|
433
476
|
-ms-user-select: none;
|
|
434
477
|
user-select: none;
|
|
435
478
|
}
|
|
@@ -495,7 +538,8 @@
|
|
|
495
538
|
.e-inplaceeditor-tip .e-editable-loading.e-show:not(.e-rte-spin-wrap) .e-spinner-inner {
|
|
496
539
|
left: auto;
|
|
497
540
|
right: 5px;
|
|
498
|
-
transform: translateX(-30%) translateY(-50%);
|
|
541
|
+
-webkit-transform: translateX(-30%) translateY(-50%);
|
|
542
|
+
transform: translateX(-30%) translateY(-50%);
|
|
499
543
|
}
|
|
500
544
|
.e-inplaceeditor .e-editable-form,
|
|
501
545
|
.e-inplaceeditor-tip .e-editable-form {
|
|
@@ -523,6 +567,7 @@
|
|
|
523
567
|
opacity: 0.5;
|
|
524
568
|
pointer-events: none;
|
|
525
569
|
-webkit-user-select: none;
|
|
570
|
+
-moz-user-select: none;
|
|
526
571
|
-ms-user-select: none;
|
|
527
572
|
user-select: none;
|
|
528
573
|
visibility: visible;
|
|
@@ -559,7 +604,8 @@
|
|
|
559
604
|
.e-inplaceeditor-tip.e-rtl .e-editable-loading.e-show:not(.e-rte-spin-wrap) .e-spinner-inner {
|
|
560
605
|
left: 5px;
|
|
561
606
|
right: auto;
|
|
562
|
-
transform: translateX(30%) translateY(-50%);
|
|
607
|
+
-webkit-transform: translateX(30%) translateY(-50%);
|
|
608
|
+
transform: translateX(30%) translateY(-50%);
|
|
563
609
|
}
|
|
564
610
|
|
|
565
611
|
.e-bigger .e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content,
|
|
@@ -611,19 +657,24 @@
|
|
|
611
657
|
.e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content .e-editable-title {
|
|
612
658
|
-ms-flex-line-pack: center;
|
|
613
659
|
align-content: center;
|
|
660
|
+
display: -webkit-box;
|
|
614
661
|
display: -ms-flexbox;
|
|
615
662
|
display: flex;
|
|
616
|
-
-
|
|
617
|
-
|
|
663
|
+
-webkit-box-orient: vertical;
|
|
664
|
+
-webkit-box-direction: normal;
|
|
665
|
+
-ms-flex-direction: column;
|
|
666
|
+
flex-direction: column;
|
|
618
667
|
font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, "Roboto", "Helvetica Neue", sans-serif;
|
|
619
668
|
font-size: 16px;
|
|
620
669
|
font-weight: 600;
|
|
621
670
|
height: 24px;
|
|
622
|
-
-
|
|
623
|
-
|
|
671
|
+
-webkit-box-pack: center;
|
|
672
|
+
-ms-flex-pack: center;
|
|
673
|
+
justify-content: center;
|
|
624
674
|
padding: 6px 12px 0 12px;
|
|
625
675
|
}
|
|
626
676
|
.e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content .e-editable-wrapper {
|
|
677
|
+
display: -webkit-box;
|
|
627
678
|
display: -ms-flexbox;
|
|
628
679
|
display: flex;
|
|
629
680
|
padding: 18px 12px 12px 12px;
|
|
@@ -636,6 +687,7 @@
|
|
|
636
687
|
top: auto;
|
|
637
688
|
}
|
|
638
689
|
.e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content .e-editable-container {
|
|
690
|
+
display: -webkit-box;
|
|
639
691
|
display: -ms-flexbox;
|
|
640
692
|
display: flex;
|
|
641
693
|
padding: 18px 12px 12px 12px;
|
|
@@ -738,7 +790,8 @@
|
|
|
738
790
|
}
|
|
739
791
|
.e-inplaceeditor-tip.e-tooltip-wrap.e-popup {
|
|
740
792
|
background: #fff;
|
|
741
|
-
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);
|
|
793
|
+
-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);
|
|
794
|
+
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);
|
|
742
795
|
border-radius: 0;
|
|
743
796
|
}
|
|
744
797
|
.e-inplaceeditor-tip.e-tooltip-wrap.e-popup .e-tip-content {
|