@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,14 +1,26 @@
|
|
|
1
1
|
/* stylelint-disable property-no-vendor-prefix */
|
|
2
|
+
@-webkit-keyframes e-input-ripple {
|
|
3
|
+
100% {
|
|
4
|
+
opacity: 0;
|
|
5
|
+
-webkit-transform: scale(4);
|
|
6
|
+
transform: scale(4);
|
|
7
|
+
}
|
|
8
|
+
}
|
|
2
9
|
@keyframes e-input-ripple {
|
|
3
10
|
100% {
|
|
4
11
|
opacity: 0;
|
|
5
|
-
transform: scale(4);
|
|
12
|
+
-webkit-transform: scale(4);
|
|
13
|
+
transform: scale(4);
|
|
6
14
|
}
|
|
7
15
|
}
|
|
8
16
|
/* stylelint-disable-line no-empty-source */
|
|
9
17
|
.e-ddl.e-control-wrapper .e-ddl-icon::before {
|
|
10
|
-
transform: rotate(0deg);
|
|
18
|
+
-webkit-transform: rotate(0deg);
|
|
19
|
+
transform: rotate(0deg);
|
|
20
|
+
-webkit-transition: -webkit-transform 300ms ease;
|
|
21
|
+
transition: -webkit-transform 300ms ease;
|
|
11
22
|
transition: transform 300ms ease;
|
|
23
|
+
transition: transform 300ms ease, -webkit-transform 300ms ease;
|
|
12
24
|
}
|
|
13
25
|
|
|
14
26
|
.e-popup.e-ddl .e-dropdownbase {
|
|
@@ -16,8 +28,12 @@
|
|
|
16
28
|
}
|
|
17
29
|
|
|
18
30
|
.e-ddl.e-control-wrapper.e-icon-anim .e-ddl-icon::before {
|
|
19
|
-
transform: rotate(180deg);
|
|
31
|
+
-webkit-transform: rotate(180deg);
|
|
32
|
+
transform: rotate(180deg);
|
|
33
|
+
-webkit-transition: -webkit-transform 300ms ease;
|
|
34
|
+
transition: -webkit-transform 300ms ease;
|
|
20
35
|
transition: transform 300ms ease;
|
|
36
|
+
transition: transform 300ms ease, -webkit-transform 300ms ease;
|
|
21
37
|
}
|
|
22
38
|
|
|
23
39
|
.e-dropdownbase .e-list-item.e-active.e-hover {
|
|
@@ -34,12 +50,14 @@
|
|
|
34
50
|
}
|
|
35
51
|
|
|
36
52
|
.e-input-group .e-ddl-icon:not(:active)::after {
|
|
37
|
-
animation: none;
|
|
53
|
+
-webkit-animation: none;
|
|
54
|
+
animation: none;
|
|
38
55
|
}
|
|
39
56
|
|
|
40
57
|
.e-ddl.e-popup {
|
|
41
58
|
border: 0;
|
|
42
|
-
box-shadow: 0 2px 3px 1px rgba(0, 0, 0, 0.21);
|
|
59
|
+
-webkit-box-shadow: 0 2px 3px 1px rgba(0, 0, 0, 0.21);
|
|
60
|
+
box-shadow: 0 2px 3px 1px rgba(0, 0, 0, 0.21);
|
|
43
61
|
margin-top: 2px;
|
|
44
62
|
}
|
|
45
63
|
|
|
@@ -55,7 +73,8 @@
|
|
|
55
73
|
.e-bigger .e-ddl-device .e-input-group.e-input-focus:not(.e-success):not(.e-warning):not(.e-error) {
|
|
56
74
|
background: #f5f5f5;
|
|
57
75
|
border-width: 0;
|
|
58
|
-
box-shadow: none;
|
|
76
|
+
-webkit-box-shadow: none;
|
|
77
|
+
box-shadow: none;
|
|
59
78
|
margin-bottom: 0;
|
|
60
79
|
}
|
|
61
80
|
|
|
@@ -112,20 +131,53 @@
|
|
|
112
131
|
padding: 5px 5px 5px 12px;
|
|
113
132
|
}
|
|
114
133
|
|
|
134
|
+
.e-multiselect.e-input-group.e-checkbox .e-multi-select-wrapper input[type=text] {
|
|
135
|
+
padding: 1px 0;
|
|
136
|
+
}
|
|
137
|
+
|
|
138
|
+
.e-small .e-multiselect.e-input-group.e-checkbox .e-multi-select-wrapper input[type=text],
|
|
139
|
+
.e-small.e-multiselect.e-input-group.e-checkbox .e-multi-select-wrapper input[type=text] {
|
|
140
|
+
padding: 0;
|
|
141
|
+
}
|
|
142
|
+
|
|
115
143
|
/* stylelint-disable property-no-vendor-prefix */
|
|
144
|
+
@-webkit-keyframes material-spinner-rotate {
|
|
145
|
+
0% {
|
|
146
|
+
-webkit-transform: rotate(0deg);
|
|
147
|
+
transform: rotate(0deg);
|
|
148
|
+
}
|
|
149
|
+
100% {
|
|
150
|
+
-webkit-transform: rotate(360deg);
|
|
151
|
+
transform: rotate(360deg);
|
|
152
|
+
}
|
|
153
|
+
}
|
|
116
154
|
@keyframes material-spinner-rotate {
|
|
117
155
|
0% {
|
|
156
|
+
-webkit-transform: rotate(0deg);
|
|
157
|
+
transform: rotate(0deg);
|
|
158
|
+
}
|
|
159
|
+
100% {
|
|
160
|
+
-webkit-transform: rotate(360deg);
|
|
161
|
+
transform: rotate(360deg);
|
|
162
|
+
}
|
|
163
|
+
}
|
|
164
|
+
@-webkit-keyframes fabric-spinner-rotate {
|
|
165
|
+
0% {
|
|
166
|
+
-webkit-transform: rotate(0deg);
|
|
118
167
|
transform: rotate(0deg);
|
|
119
168
|
}
|
|
120
169
|
100% {
|
|
170
|
+
-webkit-transform: rotate(360deg);
|
|
121
171
|
transform: rotate(360deg);
|
|
122
172
|
}
|
|
123
173
|
}
|
|
124
174
|
@keyframes fabric-spinner-rotate {
|
|
125
175
|
0% {
|
|
176
|
+
-webkit-transform: rotate(0deg);
|
|
126
177
|
transform: rotate(0deg);
|
|
127
178
|
}
|
|
128
179
|
100% {
|
|
180
|
+
-webkit-transform: rotate(360deg);
|
|
129
181
|
transform: rotate(360deg);
|
|
130
182
|
}
|
|
131
183
|
}
|
|
@@ -272,6 +324,7 @@
|
|
|
272
324
|
.e-inplaceeditor .e-editable-value-wrapper .e-editable-overlay-icon {
|
|
273
325
|
bottom: 0;
|
|
274
326
|
cursor: pointer;
|
|
327
|
+
display: -webkit-inline-box;
|
|
275
328
|
display: -ms-inline-flexbox;
|
|
276
329
|
display: inline-flex;
|
|
277
330
|
height: inherit;
|
|
@@ -282,8 +335,10 @@
|
|
|
282
335
|
width: 18px;
|
|
283
336
|
}
|
|
284
337
|
.e-inplaceeditor .e-editable-value-wrapper .e-editable-overlay-icon::before {
|
|
285
|
-
-
|
|
286
|
-
align
|
|
338
|
+
-webkit-box-align: center;
|
|
339
|
+
-ms-flex-align: center;
|
|
340
|
+
align-items: center;
|
|
341
|
+
display: -webkit-box;
|
|
287
342
|
display: -ms-flexbox;
|
|
288
343
|
display: flex;
|
|
289
344
|
font-size: 14px;
|
|
@@ -293,6 +348,7 @@
|
|
|
293
348
|
}
|
|
294
349
|
.e-inplaceeditor .e-editable-value-wrapper.e-editable-open {
|
|
295
350
|
-webkit-user-select: none;
|
|
351
|
+
-moz-user-select: none;
|
|
296
352
|
-ms-user-select: none;
|
|
297
353
|
user-select: none;
|
|
298
354
|
}
|
|
@@ -325,6 +381,7 @@
|
|
|
325
381
|
.e-inplaceeditor .e-editable-value-container .e-editable-overlay-icon {
|
|
326
382
|
bottom: 0;
|
|
327
383
|
cursor: pointer;
|
|
384
|
+
display: -webkit-inline-box;
|
|
328
385
|
display: -ms-inline-flexbox;
|
|
329
386
|
display: inline-flex;
|
|
330
387
|
height: inherit;
|
|
@@ -335,8 +392,10 @@
|
|
|
335
392
|
width: 18px;
|
|
336
393
|
}
|
|
337
394
|
.e-inplaceeditor .e-editable-value-container .e-editable-overlay-icon::before {
|
|
338
|
-
-
|
|
339
|
-
align
|
|
395
|
+
-webkit-box-align: center;
|
|
396
|
+
-ms-flex-align: center;
|
|
397
|
+
align-items: center;
|
|
398
|
+
display: -webkit-box;
|
|
340
399
|
display: -ms-flexbox;
|
|
341
400
|
display: flex;
|
|
342
401
|
font-size: 14px;
|
|
@@ -346,6 +405,7 @@
|
|
|
346
405
|
}
|
|
347
406
|
.e-inplaceeditor .e-editable-value-container.e-editable-open {
|
|
348
407
|
-webkit-user-select: none;
|
|
408
|
+
-moz-user-select: none;
|
|
349
409
|
-ms-user-select: none;
|
|
350
410
|
user-select: none;
|
|
351
411
|
}
|
|
@@ -370,6 +430,7 @@
|
|
|
370
430
|
}
|
|
371
431
|
.e-inplaceeditor.e-overlay {
|
|
372
432
|
-webkit-user-select: none;
|
|
433
|
+
-moz-user-select: none;
|
|
373
434
|
-ms-user-select: none;
|
|
374
435
|
user-select: none;
|
|
375
436
|
}
|
|
@@ -435,7 +496,8 @@
|
|
|
435
496
|
.e-inplaceeditor-tip .e-editable-loading.e-show:not(.e-rte-spin-wrap) .e-spinner-inner {
|
|
436
497
|
left: auto;
|
|
437
498
|
right: 5px;
|
|
438
|
-
transform: translateX(-30%) translateY(-50%);
|
|
499
|
+
-webkit-transform: translateX(-30%) translateY(-50%);
|
|
500
|
+
transform: translateX(-30%) translateY(-50%);
|
|
439
501
|
}
|
|
440
502
|
.e-inplaceeditor .e-editable-form,
|
|
441
503
|
.e-inplaceeditor-tip .e-editable-form {
|
|
@@ -463,6 +525,7 @@
|
|
|
463
525
|
opacity: 0.5;
|
|
464
526
|
pointer-events: none;
|
|
465
527
|
-webkit-user-select: none;
|
|
528
|
+
-moz-user-select: none;
|
|
466
529
|
-ms-user-select: none;
|
|
467
530
|
user-select: none;
|
|
468
531
|
visibility: visible;
|
|
@@ -499,7 +562,8 @@
|
|
|
499
562
|
.e-inplaceeditor-tip.e-rtl .e-editable-loading.e-show:not(.e-rte-spin-wrap) .e-spinner-inner {
|
|
500
563
|
left: 5px;
|
|
501
564
|
right: auto;
|
|
502
|
-
transform: translateX(30%) translateY(-50%);
|
|
565
|
+
-webkit-transform: translateX(30%) translateY(-50%);
|
|
566
|
+
transform: translateX(30%) translateY(-50%);
|
|
503
567
|
}
|
|
504
568
|
|
|
505
569
|
.e-bigger .e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content,
|
|
@@ -551,19 +615,24 @@
|
|
|
551
615
|
.e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content .e-editable-title {
|
|
552
616
|
-ms-flex-line-pack: center;
|
|
553
617
|
align-content: center;
|
|
618
|
+
display: -webkit-box;
|
|
554
619
|
display: -ms-flexbox;
|
|
555
620
|
display: flex;
|
|
556
|
-
-
|
|
557
|
-
|
|
621
|
+
-webkit-box-orient: vertical;
|
|
622
|
+
-webkit-box-direction: normal;
|
|
623
|
+
-ms-flex-direction: column;
|
|
624
|
+
flex-direction: column;
|
|
558
625
|
font-family: "Roboto", "Segoe UI", "GeezaPro", "DejaVu Serif", "sans-serif", "-apple-system", "BlinkMacSystemFont";
|
|
559
626
|
font-size: 13px;
|
|
560
627
|
font-weight: 500;
|
|
561
628
|
height: 30px;
|
|
562
|
-
-
|
|
563
|
-
|
|
629
|
+
-webkit-box-pack: center;
|
|
630
|
+
-ms-flex-pack: center;
|
|
631
|
+
justify-content: center;
|
|
564
632
|
padding: 0 0 0 10px;
|
|
565
633
|
}
|
|
566
634
|
.e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content .e-editable-wrapper {
|
|
635
|
+
display: -webkit-box;
|
|
567
636
|
display: -ms-flexbox;
|
|
568
637
|
display: flex;
|
|
569
638
|
padding: 16px;
|
|
@@ -576,6 +645,7 @@
|
|
|
576
645
|
top: auto;
|
|
577
646
|
}
|
|
578
647
|
.e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content .e-editable-container {
|
|
648
|
+
display: -webkit-box;
|
|
579
649
|
display: -ms-flexbox;
|
|
580
650
|
display: flex;
|
|
581
651
|
padding: 16px;
|
|
@@ -678,7 +748,8 @@
|
|
|
678
748
|
}
|
|
679
749
|
.e-inplaceeditor-tip.e-tooltip-wrap.e-popup {
|
|
680
750
|
background: #424242;
|
|
681
|
-
box-shadow: none;
|
|
751
|
+
-webkit-box-shadow: none;
|
|
752
|
+
box-shadow: none;
|
|
682
753
|
}
|
|
683
754
|
.e-inplaceeditor-tip.e-tooltip-wrap.e-popup .e-tip-content {
|
|
684
755
|
border-radius: 2px;
|
|
@@ -1,27 +1,56 @@
|
|
|
1
1
|
/* stylelint-disable property-no-vendor-prefix */
|
|
2
|
+
@-webkit-keyframes e-input-ripple {
|
|
3
|
+
100% {
|
|
4
|
+
opacity: 0;
|
|
5
|
+
-webkit-transform: scale(4);
|
|
6
|
+
transform: scale(4);
|
|
7
|
+
}
|
|
8
|
+
}
|
|
2
9
|
@keyframes e-input-ripple {
|
|
3
10
|
100% {
|
|
4
11
|
opacity: 0;
|
|
5
|
-
transform: scale(4);
|
|
12
|
+
-webkit-transform: scale(4);
|
|
13
|
+
transform: scale(4);
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
@-webkit-keyframes slideTopUp {
|
|
17
|
+
from {
|
|
18
|
+
-webkit-transform: translate3d(0, 0, 0) scale(1);
|
|
19
|
+
transform: translate3d(0, 0, 0) scale(1);
|
|
20
|
+
}
|
|
21
|
+
to {
|
|
22
|
+
-webkit-transform: translate3d(0, 0, 0) scale(1);
|
|
23
|
+
transform: translate3d(0, 0, 0) scale(1);
|
|
6
24
|
}
|
|
7
25
|
}
|
|
8
26
|
@keyframes slideTopUp {
|
|
9
27
|
from {
|
|
10
|
-
transform: translate3d(0, 0, 0) scale(1);
|
|
28
|
+
-webkit-transform: translate3d(0, 0, 0) scale(1);
|
|
29
|
+
transform: translate3d(0, 0, 0) scale(1);
|
|
11
30
|
}
|
|
12
31
|
to {
|
|
13
|
-
transform: translate3d(0, 0, 0) scale(1);
|
|
32
|
+
-webkit-transform: translate3d(0, 0, 0) scale(1);
|
|
33
|
+
transform: translate3d(0, 0, 0) scale(1);
|
|
14
34
|
}
|
|
15
35
|
}
|
|
16
|
-
/* stylelint-disable-line no-empty-source */
|
|
36
|
+
/* stylelint-disable-line no-empty-source */
|
|
37
|
+
/*! calendar material theme variables */
|
|
17
38
|
.e-ddl.e-control-wrapper .e-ddl-icon::before {
|
|
18
|
-
transform: rotate(0deg);
|
|
39
|
+
-webkit-transform: rotate(0deg);
|
|
40
|
+
transform: rotate(0deg);
|
|
41
|
+
-webkit-transition: -webkit-transform 300ms ease;
|
|
42
|
+
transition: -webkit-transform 300ms ease;
|
|
19
43
|
transition: transform 300ms ease;
|
|
44
|
+
transition: transform 300ms ease, -webkit-transform 300ms ease;
|
|
20
45
|
}
|
|
21
46
|
|
|
22
47
|
.e-ddl.e-control-wrapper.e-icon-anim .e-ddl-icon::before {
|
|
23
|
-
transform: rotate(180deg);
|
|
48
|
+
-webkit-transform: rotate(180deg);
|
|
49
|
+
transform: rotate(180deg);
|
|
50
|
+
-webkit-transition: -webkit-transform 300ms ease;
|
|
51
|
+
transition: -webkit-transform 300ms ease;
|
|
24
52
|
transition: transform 300ms ease;
|
|
53
|
+
transition: transform 300ms ease, -webkit-transform 300ms ease;
|
|
25
54
|
}
|
|
26
55
|
|
|
27
56
|
.e-dropdownbase .e-list-item.e-active.e-hover {
|
|
@@ -38,12 +67,14 @@
|
|
|
38
67
|
}
|
|
39
68
|
|
|
40
69
|
.e-input-group .e-ddl-icon:not(:active)::after {
|
|
41
|
-
animation: none;
|
|
70
|
+
-webkit-animation: none;
|
|
71
|
+
animation: none;
|
|
42
72
|
}
|
|
43
73
|
|
|
44
74
|
.e-ddl.e-popup {
|
|
45
75
|
border: 0;
|
|
46
|
-
box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2), 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12);
|
|
76
|
+
-webkit-box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2), 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12);
|
|
77
|
+
box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2), 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12);
|
|
47
78
|
margin-top: 2px;
|
|
48
79
|
}
|
|
49
80
|
|
|
@@ -63,7 +94,8 @@
|
|
|
63
94
|
.e-bigger .e-ddl-device .e-input-group.e-input-focus:not(.e-success):not(.e-warning):not(.e-error) {
|
|
64
95
|
background: #f5f5f5;
|
|
65
96
|
border-width: 0;
|
|
66
|
-
box-shadow: none;
|
|
97
|
+
-webkit-box-shadow: none;
|
|
98
|
+
box-shadow: none;
|
|
67
99
|
margin-bottom: 0;
|
|
68
100
|
}
|
|
69
101
|
|
|
@@ -145,20 +177,53 @@
|
|
|
145
177
|
padding: 4px 8px;
|
|
146
178
|
}
|
|
147
179
|
|
|
180
|
+
.e-multiselect.e-input-group.e-checkbox .e-multi-select-wrapper input[type=text] {
|
|
181
|
+
padding: 1px 0;
|
|
182
|
+
}
|
|
183
|
+
|
|
184
|
+
.e-small .e-multiselect.e-input-group.e-checkbox .e-multi-select-wrapper input[type=text],
|
|
185
|
+
.e-small.e-multiselect.e-input-group.e-checkbox .e-multi-select-wrapper input[type=text] {
|
|
186
|
+
padding: 0;
|
|
187
|
+
}
|
|
188
|
+
|
|
148
189
|
/* stylelint-disable property-no-vendor-prefix */
|
|
190
|
+
@-webkit-keyframes material-spinner-rotate {
|
|
191
|
+
0% {
|
|
192
|
+
-webkit-transform: rotate(0deg);
|
|
193
|
+
transform: rotate(0deg);
|
|
194
|
+
}
|
|
195
|
+
100% {
|
|
196
|
+
-webkit-transform: rotate(360deg);
|
|
197
|
+
transform: rotate(360deg);
|
|
198
|
+
}
|
|
199
|
+
}
|
|
149
200
|
@keyframes material-spinner-rotate {
|
|
150
201
|
0% {
|
|
202
|
+
-webkit-transform: rotate(0deg);
|
|
203
|
+
transform: rotate(0deg);
|
|
204
|
+
}
|
|
205
|
+
100% {
|
|
206
|
+
-webkit-transform: rotate(360deg);
|
|
207
|
+
transform: rotate(360deg);
|
|
208
|
+
}
|
|
209
|
+
}
|
|
210
|
+
@-webkit-keyframes fabric-spinner-rotate {
|
|
211
|
+
0% {
|
|
212
|
+
-webkit-transform: rotate(0deg);
|
|
151
213
|
transform: rotate(0deg);
|
|
152
214
|
}
|
|
153
215
|
100% {
|
|
216
|
+
-webkit-transform: rotate(360deg);
|
|
154
217
|
transform: rotate(360deg);
|
|
155
218
|
}
|
|
156
219
|
}
|
|
157
220
|
@keyframes fabric-spinner-rotate {
|
|
158
221
|
0% {
|
|
222
|
+
-webkit-transform: rotate(0deg);
|
|
159
223
|
transform: rotate(0deg);
|
|
160
224
|
}
|
|
161
225
|
100% {
|
|
226
|
+
-webkit-transform: rotate(360deg);
|
|
162
227
|
transform: rotate(360deg);
|
|
163
228
|
}
|
|
164
229
|
}
|
|
@@ -305,6 +370,7 @@
|
|
|
305
370
|
.e-inplaceeditor .e-editable-value-wrapper .e-editable-overlay-icon {
|
|
306
371
|
bottom: 0;
|
|
307
372
|
cursor: pointer;
|
|
373
|
+
display: -webkit-inline-box;
|
|
308
374
|
display: -ms-inline-flexbox;
|
|
309
375
|
display: inline-flex;
|
|
310
376
|
height: inherit;
|
|
@@ -315,8 +381,10 @@
|
|
|
315
381
|
width: 18px;
|
|
316
382
|
}
|
|
317
383
|
.e-inplaceeditor .e-editable-value-wrapper .e-editable-overlay-icon::before {
|
|
318
|
-
-
|
|
319
|
-
align
|
|
384
|
+
-webkit-box-align: center;
|
|
385
|
+
-ms-flex-align: center;
|
|
386
|
+
align-items: center;
|
|
387
|
+
display: -webkit-box;
|
|
320
388
|
display: -ms-flexbox;
|
|
321
389
|
display: flex;
|
|
322
390
|
font-size: 14px;
|
|
@@ -326,6 +394,7 @@
|
|
|
326
394
|
}
|
|
327
395
|
.e-inplaceeditor .e-editable-value-wrapper.e-editable-open {
|
|
328
396
|
-webkit-user-select: none;
|
|
397
|
+
-moz-user-select: none;
|
|
329
398
|
-ms-user-select: none;
|
|
330
399
|
user-select: none;
|
|
331
400
|
}
|
|
@@ -358,6 +427,7 @@
|
|
|
358
427
|
.e-inplaceeditor .e-editable-value-container .e-editable-overlay-icon {
|
|
359
428
|
bottom: 0;
|
|
360
429
|
cursor: pointer;
|
|
430
|
+
display: -webkit-inline-box;
|
|
361
431
|
display: -ms-inline-flexbox;
|
|
362
432
|
display: inline-flex;
|
|
363
433
|
height: inherit;
|
|
@@ -368,8 +438,10 @@
|
|
|
368
438
|
width: 18px;
|
|
369
439
|
}
|
|
370
440
|
.e-inplaceeditor .e-editable-value-container .e-editable-overlay-icon::before {
|
|
371
|
-
-
|
|
372
|
-
align
|
|
441
|
+
-webkit-box-align: center;
|
|
442
|
+
-ms-flex-align: center;
|
|
443
|
+
align-items: center;
|
|
444
|
+
display: -webkit-box;
|
|
373
445
|
display: -ms-flexbox;
|
|
374
446
|
display: flex;
|
|
375
447
|
font-size: 14px;
|
|
@@ -379,6 +451,7 @@
|
|
|
379
451
|
}
|
|
380
452
|
.e-inplaceeditor .e-editable-value-container.e-editable-open {
|
|
381
453
|
-webkit-user-select: none;
|
|
454
|
+
-moz-user-select: none;
|
|
382
455
|
-ms-user-select: none;
|
|
383
456
|
user-select: none;
|
|
384
457
|
}
|
|
@@ -403,6 +476,7 @@
|
|
|
403
476
|
}
|
|
404
477
|
.e-inplaceeditor.e-overlay {
|
|
405
478
|
-webkit-user-select: none;
|
|
479
|
+
-moz-user-select: none;
|
|
406
480
|
-ms-user-select: none;
|
|
407
481
|
user-select: none;
|
|
408
482
|
}
|
|
@@ -482,7 +556,8 @@
|
|
|
482
556
|
.e-inplaceeditor-tip .e-editable-loading.e-show:not(.e-rte-spin-wrap) .e-spinner-inner {
|
|
483
557
|
left: auto;
|
|
484
558
|
right: 5px;
|
|
485
|
-
transform: translateX(-30%) translateY(-50%);
|
|
559
|
+
-webkit-transform: translateX(-30%) translateY(-50%);
|
|
560
|
+
transform: translateX(-30%) translateY(-50%);
|
|
486
561
|
}
|
|
487
562
|
.e-inplaceeditor .e-editable-form,
|
|
488
563
|
.e-inplaceeditor-tip .e-editable-form {
|
|
@@ -510,6 +585,7 @@
|
|
|
510
585
|
opacity: 0.5;
|
|
511
586
|
pointer-events: none;
|
|
512
587
|
-webkit-user-select: none;
|
|
588
|
+
-moz-user-select: none;
|
|
513
589
|
-ms-user-select: none;
|
|
514
590
|
user-select: none;
|
|
515
591
|
visibility: visible;
|
|
@@ -546,7 +622,8 @@
|
|
|
546
622
|
.e-inplaceeditor-tip.e-rtl .e-editable-loading.e-show:not(.e-rte-spin-wrap) .e-spinner-inner {
|
|
547
623
|
left: 5px;
|
|
548
624
|
right: auto;
|
|
549
|
-
transform: translateX(30%) translateY(-50%);
|
|
625
|
+
-webkit-transform: translateX(30%) translateY(-50%);
|
|
626
|
+
transform: translateX(30%) translateY(-50%);
|
|
550
627
|
}
|
|
551
628
|
|
|
552
629
|
.e-bigger .e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content,
|
|
@@ -598,19 +675,24 @@
|
|
|
598
675
|
.e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content .e-editable-title {
|
|
599
676
|
-ms-flex-line-pack: center;
|
|
600
677
|
align-content: center;
|
|
678
|
+
display: -webkit-box;
|
|
601
679
|
display: -ms-flexbox;
|
|
602
680
|
display: flex;
|
|
603
|
-
-
|
|
604
|
-
|
|
681
|
+
-webkit-box-orient: vertical;
|
|
682
|
+
-webkit-box-direction: normal;
|
|
683
|
+
-ms-flex-direction: column;
|
|
684
|
+
flex-direction: column;
|
|
605
685
|
font-family: "Roboto", "Segoe UI", "GeezaPro", "DejaVu Serif", "sans-serif", "-apple-system", "BlinkMacSystemFont";
|
|
606
686
|
font-size: 13px;
|
|
607
687
|
font-weight: 500;
|
|
608
688
|
height: 30px;
|
|
609
|
-
-
|
|
610
|
-
|
|
689
|
+
-webkit-box-pack: center;
|
|
690
|
+
-ms-flex-pack: center;
|
|
691
|
+
justify-content: center;
|
|
611
692
|
padding: 0 0 0 10px;
|
|
612
693
|
}
|
|
613
694
|
.e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content .e-editable-wrapper {
|
|
695
|
+
display: -webkit-box;
|
|
614
696
|
display: -ms-flexbox;
|
|
615
697
|
display: flex;
|
|
616
698
|
padding: 16px;
|
|
@@ -623,6 +705,7 @@
|
|
|
623
705
|
top: auto;
|
|
624
706
|
}
|
|
625
707
|
.e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content .e-editable-container {
|
|
708
|
+
display: -webkit-box;
|
|
626
709
|
display: -ms-flexbox;
|
|
627
710
|
display: flex;
|
|
628
711
|
padding: 16px;
|
|
@@ -725,7 +808,8 @@
|
|
|
725
808
|
}
|
|
726
809
|
.e-inplaceeditor-tip.e-tooltip-wrap.e-popup {
|
|
727
810
|
background: #fff;
|
|
728
|
-
box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2), 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12);
|
|
811
|
+
-webkit-box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2), 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12);
|
|
812
|
+
box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2), 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12);
|
|
729
813
|
}
|
|
730
814
|
.e-inplaceeditor-tip.e-tooltip-wrap.e-popup .e-tip-content {
|
|
731
815
|
border-radius: 2px;
|