@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.
Files changed (79) hide show
  1. package/.eslintrc.json +3 -2
  2. package/dist/ej2-inplace-editor.min.js +2 -2
  3. package/dist/ej2-inplace-editor.umd.min.js +2 -2
  4. package/dist/ej2-inplace-editor.umd.min.js.map +1 -1
  5. package/dist/es6/ej2-inplace-editor.es2015.js +22 -43
  6. package/dist/es6/ej2-inplace-editor.es2015.js.map +1 -1
  7. package/dist/es6/ej2-inplace-editor.es5.js +77 -98
  8. package/dist/es6/ej2-inplace-editor.es5.js.map +1 -1
  9. package/dist/global/ej2-inplace-editor.min.js +2 -2
  10. package/dist/global/ej2-inplace-editor.min.js.map +1 -1
  11. package/dist/global/index.d.ts +1 -1
  12. package/hotfix/26.1.35_Vol2.txt +1 -0
  13. package/package.json +18 -18
  14. package/src/inplace-editor/base/inplace-editor.d.ts +0 -1
  15. package/src/inplace-editor/base/interface.js +0 -1
  16. package/src/inplace-editor/base/models.js +0 -2
  17. package/styles/bootstrap-dark.css +61 -16
  18. package/styles/bootstrap-dark.scss +26 -1
  19. package/styles/bootstrap.css +63 -17
  20. package/styles/bootstrap.scss +26 -1
  21. package/styles/bootstrap4.css +72 -22
  22. package/styles/bootstrap4.scss +26 -1
  23. package/styles/bootstrap5-dark.css +62 -16
  24. package/styles/bootstrap5-dark.scss +26 -1
  25. package/styles/bootstrap5.css +62 -16
  26. package/styles/bootstrap5.scss +26 -1
  27. package/styles/fabric-dark.css +59 -15
  28. package/styles/fabric-dark.scss +26 -1
  29. package/styles/fabric.css +61 -16
  30. package/styles/fabric.scss +26 -1
  31. package/styles/fluent-dark.css +63 -17
  32. package/styles/fluent-dark.scss +26 -1
  33. package/styles/fluent.css +63 -17
  34. package/styles/fluent.scss +26 -1
  35. package/styles/fluent2.css +1994 -0
  36. package/styles/fluent2.scss +26 -0
  37. package/styles/highcontrast-light.css +62 -15
  38. package/styles/highcontrast-light.scss +26 -1
  39. package/styles/highcontrast.css +64 -16
  40. package/styles/highcontrast.scss +26 -1
  41. package/styles/inplace-editor/_bootstrap5.3-definition.scss +69 -0
  42. package/styles/inplace-editor/_fluent2-definition.scss +71 -0
  43. package/styles/inplace-editor/_layout.scss +0 -35
  44. package/styles/inplace-editor/_material3-definition.scss +0 -7
  45. package/styles/inplace-editor/_theme.scss +8 -32
  46. package/styles/inplace-editor/bootstrap-dark.css +61 -16
  47. package/styles/inplace-editor/bootstrap.css +63 -17
  48. package/styles/inplace-editor/bootstrap4.css +72 -22
  49. package/styles/inplace-editor/bootstrap5-dark.css +62 -16
  50. package/styles/inplace-editor/bootstrap5.css +62 -16
  51. package/styles/inplace-editor/fabric-dark.css +59 -15
  52. package/styles/inplace-editor/fabric.css +61 -16
  53. package/styles/inplace-editor/fluent-dark.css +63 -17
  54. package/styles/inplace-editor/fluent.css +63 -17
  55. package/styles/inplace-editor/fluent2.css +1994 -0
  56. package/styles/inplace-editor/fluent2.scss +26 -0
  57. package/styles/inplace-editor/highcontrast-light.css +62 -15
  58. package/styles/inplace-editor/highcontrast.css +64 -16
  59. package/styles/inplace-editor/icons/_bootstrap5.3.scss +19 -0
  60. package/styles/inplace-editor/icons/_fluent2.scss +19 -0
  61. package/styles/inplace-editor/material-dark.css +79 -19
  62. package/styles/inplace-editor/material.css +95 -22
  63. package/styles/inplace-editor/material3-dark.css +100 -23
  64. package/styles/inplace-editor/material3.css +100 -23
  65. package/styles/inplace-editor/tailwind-dark.css +72 -19
  66. package/styles/inplace-editor/tailwind.css +72 -19
  67. package/styles/material-dark.css +79 -19
  68. package/styles/material-dark.scss +26 -1
  69. package/styles/material.css +95 -22
  70. package/styles/material.scss +26 -1
  71. package/styles/material3-dark.css +100 -23
  72. package/styles/material3-dark.scss +26 -1
  73. package/styles/material3.css +100 -23
  74. package/styles/material3.scss +26 -1
  75. package/styles/tailwind-dark.css +72 -19
  76. package/styles/tailwind-dark.scss +26 -1
  77. package/styles/tailwind.css +72 -19
  78. package/styles/tailwind.scss +26 -1
  79. package/CHANGELOG.md +0 -262
@@ -1,8 +1,10 @@
1
1
  /* stylelint-disable property-no-vendor-prefix */
2
- /* stylelint-disable-line no-empty-source */ /*! calendar bootstrap theme variables */
2
+ /* stylelint-disable-line no-empty-source */
3
+ /*! calendar bootstrap theme variables */
3
4
  .e-popup.e-ddl {
4
5
  border-radius: 4px;
5
- box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
6
+ -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
7
+ box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
6
8
  margin-top: 3px;
7
9
  }
8
10
  .e-popup.e-ddl .e-input-group {
@@ -17,6 +19,7 @@
17
19
  }
18
20
 
19
21
  .e-popup.e-ddl .e-filter-parent .e-input-group {
22
+ display: -webkit-box;
20
23
  display: -ms-flexbox;
21
24
  display: flex;
22
25
  width: auto;
@@ -75,7 +78,8 @@
75
78
  .e-control.e-dropdownlist .e-input-group:not(.e-disabled) .e-input-group-icon:active,
76
79
  .e-ddl.e-popup .e-input-group:not(.e-disabled) .e-back-icon:active,
77
80
  .e-ddl.e-popup .e-input-group:not(.e-disabled) .e-clear-icon:active {
78
- box-shadow: none;
81
+ -webkit-box-shadow: none;
82
+ box-shadow: none;
79
83
  }
80
84
 
81
85
  .e-ddl.e-popup .e-filter-parent {
@@ -136,19 +140,43 @@
136
140
  }
137
141
 
138
142
  /* stylelint-disable property-no-vendor-prefix */
143
+ @-webkit-keyframes material-spinner-rotate {
144
+ 0% {
145
+ -webkit-transform: rotate(0);
146
+ transform: rotate(0);
147
+ }
148
+ 100% {
149
+ -webkit-transform: rotate(360deg);
150
+ transform: rotate(360deg);
151
+ }
152
+ }
139
153
  @keyframes material-spinner-rotate {
140
154
  0% {
155
+ -webkit-transform: rotate(0);
156
+ transform: rotate(0);
157
+ }
158
+ 100% {
159
+ -webkit-transform: rotate(360deg);
160
+ transform: rotate(360deg);
161
+ }
162
+ }
163
+ @-webkit-keyframes fabric-spinner-rotate {
164
+ 0% {
165
+ -webkit-transform: rotate(0);
141
166
  transform: rotate(0);
142
167
  }
143
168
  100% {
169
+ -webkit-transform: rotate(360deg);
144
170
  transform: rotate(360deg);
145
171
  }
146
172
  }
147
173
  @keyframes fabric-spinner-rotate {
148
174
  0% {
175
+ -webkit-transform: rotate(0);
149
176
  transform: rotate(0);
150
177
  }
151
178
  100% {
179
+ -webkit-transform: rotate(360deg);
152
180
  transform: rotate(360deg);
153
181
  }
154
182
  }
@@ -326,7 +354,6 @@
326
354
  content: "\e338";
327
355
  }
328
356
 
329
- /*! inplaceeditor layout */
330
357
  .e-bigger .e-inplaceeditor .e-editable-value-wrapper,
331
358
  .e-inplaceeditor.e-bigger .e-editable-value-wrapper {
332
359
  padding: 8px 12px;
@@ -447,6 +474,7 @@
447
474
  .e-inplaceeditor .e-editable-value-wrapper .e-editable-overlay-icon {
448
475
  bottom: 0;
449
476
  cursor: pointer;
477
+ display: -webkit-inline-box;
450
478
  display: -ms-inline-flexbox;
451
479
  display: inline-flex;
452
480
  height: inherit;
@@ -457,8 +485,10 @@
457
485
  width: 18px;
458
486
  }
459
487
  .e-inplaceeditor .e-editable-value-wrapper .e-editable-overlay-icon::before {
460
- -ms-flex-align: center;
461
- align-items: center;
488
+ -webkit-box-align: center;
489
+ -ms-flex-align: center;
490
+ align-items: center;
491
+ display: -webkit-box;
462
492
  display: -ms-flexbox;
463
493
  display: flex;
464
494
  font-size: 14px;
@@ -468,6 +498,7 @@
468
498
  }
469
499
  .e-inplaceeditor .e-editable-value-wrapper.e-editable-open {
470
500
  -webkit-user-select: none;
501
+ -moz-user-select: none;
471
502
  -ms-user-select: none;
472
503
  user-select: none;
473
504
  }
@@ -500,6 +531,7 @@
500
531
  .e-inplaceeditor .e-editable-value-container .e-editable-overlay-icon {
501
532
  bottom: 0;
502
533
  cursor: pointer;
534
+ display: -webkit-inline-box;
503
535
  display: -ms-inline-flexbox;
504
536
  display: inline-flex;
505
537
  height: inherit;
@@ -510,8 +542,10 @@
510
542
  width: 18px;
511
543
  }
512
544
  .e-inplaceeditor .e-editable-value-container .e-editable-overlay-icon::before {
513
- -ms-flex-align: center;
514
- align-items: center;
545
+ -webkit-box-align: center;
546
+ -ms-flex-align: center;
547
+ align-items: center;
548
+ display: -webkit-box;
515
549
  display: -ms-flexbox;
516
550
  display: flex;
517
551
  font-size: 14px;
@@ -521,6 +555,7 @@
521
555
  }
522
556
  .e-inplaceeditor .e-editable-value-container.e-editable-open {
523
557
  -webkit-user-select: none;
558
+ -moz-user-select: none;
524
559
  -ms-user-select: none;
525
560
  user-select: none;
526
561
  }
@@ -545,6 +580,7 @@
545
580
  }
546
581
  .e-inplaceeditor.e-overlay {
547
582
  -webkit-user-select: none;
583
+ -moz-user-select: none;
548
584
  -ms-user-select: none;
549
585
  user-select: none;
550
586
  }
@@ -610,7 +646,8 @@
610
646
  .e-inplaceeditor-tip .e-editable-loading.e-show:not(.e-rte-spin-wrap) .e-spinner-inner {
611
647
  left: auto;
612
648
  right: 5px;
613
- transform: translateX(-30%) translateY(-50%);
649
+ -webkit-transform: translateX(-30%) translateY(-50%);
650
+ transform: translateX(-30%) translateY(-50%);
614
651
  }
615
652
  .e-inplaceeditor .e-editable-form,
616
653
  .e-inplaceeditor-tip .e-editable-form {
@@ -638,6 +675,7 @@
638
675
  opacity: 0.5;
639
676
  pointer-events: none;
640
677
  -webkit-user-select: none;
678
+ -moz-user-select: none;
641
679
  -ms-user-select: none;
642
680
  user-select: none;
643
681
  visibility: visible;
@@ -674,7 +712,8 @@
674
712
  .e-inplaceeditor-tip.e-rtl .e-editable-loading.e-show:not(.e-rte-spin-wrap) .e-spinner-inner {
675
713
  left: 5px;
676
714
  right: auto;
677
- transform: translateX(30%) translateY(-50%);
715
+ -webkit-transform: translateX(30%) translateY(-50%);
716
+ transform: translateX(30%) translateY(-50%);
678
717
  }
679
718
 
680
719
  .e-bigger .e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content,
@@ -726,19 +765,24 @@
726
765
  .e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content .e-editable-title {
727
766
  -ms-flex-line-pack: center;
728
767
  align-content: center;
768
+ display: -webkit-box;
729
769
  display: -ms-flexbox;
730
770
  display: flex;
731
- -ms-flex-direction: column;
732
- flex-direction: column;
771
+ -webkit-box-orient: vertical;
772
+ -webkit-box-direction: normal;
773
+ -ms-flex-direction: column;
774
+ flex-direction: column;
733
775
  font-family: "Helvetica Neue", "Helvetica", "Arial", sans-serif, "-apple-system", "BlinkMacSystemFont";
734
776
  font-size: 14px;
735
777
  font-weight: 700;
736
778
  height: 30px;
737
- -ms-flex-pack: center;
738
- justify-content: center;
779
+ -webkit-box-pack: center;
780
+ -ms-flex-pack: center;
781
+ justify-content: center;
739
782
  padding: 0 0 0 12px;
740
783
  }
741
784
  .e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content .e-editable-wrapper {
785
+ display: -webkit-box;
742
786
  display: -ms-flexbox;
743
787
  display: flex;
744
788
  padding: 12px;
@@ -751,6 +795,7 @@
751
795
  top: auto;
752
796
  }
753
797
  .e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content .e-editable-container {
798
+ display: -webkit-box;
754
799
  display: -ms-flexbox;
755
800
  display: flex;
756
801
  padding: 12px;
@@ -792,7 +837,6 @@
792
837
  min-height: 70px;
793
838
  }
794
839
 
795
- /*! inplaceeditor theme */
796
840
  .e-inplaceeditor .e-editable-value-wrapper .e-editable-value {
797
841
  border-bottom: 1px dashed #333;
798
842
  color: #333;
@@ -849,7 +893,8 @@
849
893
  .e-inplaceeditor .e-editable-action-buttons .e-btn-cancel.e-icon-btn,
850
894
  .e-inplaceeditor-tip .e-editable-action-buttons .e-btn-save.e-icon-btn,
851
895
  .e-inplaceeditor-tip .e-editable-action-buttons .e-btn-cancel.e-icon-btn {
852
- box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.25);
896
+ -webkit-box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.25);
897
+ box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.25);
853
898
  }
854
899
  .e-inplaceeditor .e-editable-action-buttons .e-btn-save.e-icon-btn .e-btn-icon.e-icons,
855
900
  .e-inplaceeditor .e-editable-action-buttons .e-btn-cancel.e-icon-btn .e-btn-icon.e-icons,
@@ -859,7 +904,8 @@
859
904
  }
860
905
  .e-inplaceeditor-tip.e-tooltip-wrap.e-popup {
861
906
  background: #fff;
862
- box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.26);
907
+ -webkit-box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.26);
908
+ box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.26);
863
909
  }
864
910
  .e-inplaceeditor-tip.e-tooltip-wrap.e-popup .e-tip-content {
865
911
  border-radius: 4px;
@@ -1,5 +1,6 @@
1
1
  /* stylelint-disable property-no-vendor-prefix */
2
- /* stylelint-disable-line no-empty-source */ /*! calendar bootstrap theme variables */
2
+ /* stylelint-disable-line no-empty-source */
3
+ /*! calendar bootstrap theme variables */
3
4
  .e-input-group.e-ddl .e-control.e-autocomplete ~ .e-ddl-icon {
4
5
  font-size: 8px;
5
6
  }
@@ -18,7 +19,8 @@
18
19
 
19
20
  .e-popup.e-ddl {
20
21
  border-radius: 4px;
21
- box-shadow: none;
22
+ -webkit-box-shadow: none;
23
+ box-shadow: none;
22
24
  margin-top: 3px;
23
25
  }
24
26
  .e-popup.e-ddl .e-input-group {
@@ -33,6 +35,7 @@
33
35
  }
34
36
 
35
37
  .e-popup.e-ddl .e-filter-parent .e-input-group {
38
+ display: -webkit-box;
36
39
  display: -ms-flexbox;
37
40
  display: flex;
38
41
  width: auto;
@@ -109,11 +112,13 @@
109
112
  .e-control.e-dropdownlist .e-input-group:not(.e-disabled) .e-input-group-icon:active,
110
113
  .e-ddl.e-popup .e-input-group:not(.e-disabled) .e-back-icon:active,
111
114
  .e-ddl.e-popup .e-input-group:not(.e-disabled) .e-clear-icon:active {
112
- box-shadow: none;
115
+ -webkit-box-shadow: none;
116
+ box-shadow: none;
113
117
  }
114
118
 
115
119
  .e-ddl.e-popup .e-input-group:not(.e-disabled) .e-clear-icon {
116
120
  background: transparent;
121
+ display: -webkit-box;
117
122
  display: -ms-flexbox;
118
123
  display: flex;
119
124
  position: relative;
@@ -211,10 +216,12 @@
211
216
  }
212
217
 
213
218
  .e-popup.e-multi-select-list-wrapper .e-list-item.e-active.e-item-focus.e-hover {
214
- box-shadow: none;
219
+ -webkit-box-shadow: none;
220
+ box-shadow: none;
215
221
  }
216
222
 
217
223
  .e-bigger .e-ddl.e-popup .e-filter-parent .e-clear-icon {
224
+ display: -webkit-box;
218
225
  display: -ms-flexbox;
219
226
  display: flex;
220
227
  }
@@ -258,19 +265,43 @@
258
265
  }
259
266
 
260
267
  /* stylelint-disable property-no-vendor-prefix */
268
+ @-webkit-keyframes material-spinner-rotate {
269
+ 0% {
270
+ -webkit-transform: rotate(0);
271
+ transform: rotate(0);
272
+ }
273
+ 100% {
274
+ -webkit-transform: rotate(360deg);
275
+ transform: rotate(360deg);
276
+ }
277
+ }
261
278
  @keyframes material-spinner-rotate {
262
279
  0% {
280
+ -webkit-transform: rotate(0);
263
281
  transform: rotate(0);
264
282
  }
265
283
  100% {
284
+ -webkit-transform: rotate(360deg);
285
+ transform: rotate(360deg);
286
+ }
287
+ }
288
+ @-webkit-keyframes fabric-spinner-rotate {
289
+ 0% {
290
+ -webkit-transform: rotate(0);
291
+ transform: rotate(0);
292
+ }
293
+ 100% {
294
+ -webkit-transform: rotate(360deg);
266
295
  transform: rotate(360deg);
267
296
  }
268
297
  }
269
298
  @keyframes fabric-spinner-rotate {
270
299
  0% {
300
+ -webkit-transform: rotate(0);
271
301
  transform: rotate(0);
272
302
  }
273
303
  100% {
304
+ -webkit-transform: rotate(360deg);
274
305
  transform: rotate(360deg);
275
306
  }
276
307
  }
@@ -357,7 +388,7 @@
357
388
 
358
389
  .e-rte-quick-popup .e-rte-quick-toolbar .e-tbar-btn.e-rte-inline-dropdown .e-rte-color-content {
359
390
  line-height: 26px;
360
- min-height: 26px;
391
+ min-height: 30px;
361
392
  min-width: 26px;
362
393
  }
363
394
  .e-rte-quick-popup .e-rte-quick-toolbar .e-tbar-btn.e-rte-inline-dropdown .e-btn-icon.e-caret {
@@ -491,8 +522,8 @@
491
522
  .e-rte-toolbar.e-extended-toolbar .e-toolbar-extended .e-rte-bulletformatlist-dropdown.e-tbar-btn.e-btn:hover,
492
523
  .e-rte-toolbar.e-extended-toolbar .e-toolbar-extended .e-rte-bulletformatlist-dropdown.e-tbar-btn.e-btn.e-active,
493
524
  .e-rte-toolbar.e-extended-toolbar .e-toolbar-extended .e-rte-bulletformatlist-dropdown.e-tbar-btn.e-btn.e-active:hover {
494
- padding-bottom: 0;
495
- padding-top: 0;
525
+ padding-bottom: 1px;
526
+ padding-top: 1px;
496
527
  }
497
528
  .e-rte-toolbar .e-toolbar-items .e-rte-backgroundcolor-dropdown.e-active,
498
529
  .e-rte-toolbar .e-toolbar-items .e-rte-fontcolor-dropdown.e-active,
@@ -543,7 +574,6 @@
543
574
  content: "\e78f";
544
575
  }
545
576
 
546
- /*! inplaceeditor layout */
547
577
  .e-bigger .e-inplaceeditor .e-editable-value-wrapper,
548
578
  .e-inplaceeditor.e-bigger .e-editable-value-wrapper {
549
579
  padding: 8px 12px;
@@ -665,6 +695,7 @@
665
695
  .e-inplaceeditor .e-editable-value-wrapper .e-editable-overlay-icon {
666
696
  bottom: 0;
667
697
  cursor: pointer;
698
+ display: -webkit-inline-box;
668
699
  display: -ms-inline-flexbox;
669
700
  display: inline-flex;
670
701
  height: inherit;
@@ -675,8 +706,10 @@
675
706
  width: 18px;
676
707
  }
677
708
  .e-inplaceeditor .e-editable-value-wrapper .e-editable-overlay-icon::before {
678
- -ms-flex-align: center;
679
- align-items: center;
709
+ -webkit-box-align: center;
710
+ -ms-flex-align: center;
711
+ align-items: center;
712
+ display: -webkit-box;
680
713
  display: -ms-flexbox;
681
714
  display: flex;
682
715
  font-size: 14px;
@@ -686,6 +719,7 @@
686
719
  }
687
720
  .e-inplaceeditor .e-editable-value-wrapper.e-editable-open {
688
721
  -webkit-user-select: none;
722
+ -moz-user-select: none;
689
723
  -ms-user-select: none;
690
724
  user-select: none;
691
725
  }
@@ -719,6 +753,7 @@
719
753
  .e-inplaceeditor .e-editable-value-container .e-editable-overlay-icon {
720
754
  bottom: 0;
721
755
  cursor: pointer;
756
+ display: -webkit-inline-box;
722
757
  display: -ms-inline-flexbox;
723
758
  display: inline-flex;
724
759
  height: inherit;
@@ -729,8 +764,10 @@
729
764
  width: 18px;
730
765
  }
731
766
  .e-inplaceeditor .e-editable-value-container .e-editable-overlay-icon::before {
732
- -ms-flex-align: center;
733
- align-items: center;
767
+ -webkit-box-align: center;
768
+ -ms-flex-align: center;
769
+ align-items: center;
770
+ display: -webkit-box;
734
771
  display: -ms-flexbox;
735
772
  display: flex;
736
773
  font-size: 14px;
@@ -740,6 +777,7 @@
740
777
  }
741
778
  .e-inplaceeditor .e-editable-value-container.e-editable-open {
742
779
  -webkit-user-select: none;
780
+ -moz-user-select: none;
743
781
  -ms-user-select: none;
744
782
  user-select: none;
745
783
  }
@@ -764,6 +802,7 @@
764
802
  }
765
803
  .e-inplaceeditor.e-overlay {
766
804
  -webkit-user-select: none;
805
+ -moz-user-select: none;
767
806
  -ms-user-select: none;
768
807
  user-select: none;
769
808
  }
@@ -840,7 +879,8 @@
840
879
  .e-inplaceeditor-tip .e-editable-loading.e-show:not(.e-rte-spin-wrap) .e-spinner-inner {
841
880
  left: auto;
842
881
  right: 5px;
843
- transform: translateX(-30%) translateY(-50%);
882
+ -webkit-transform: translateX(-30%) translateY(-50%);
883
+ transform: translateX(-30%) translateY(-50%);
844
884
  }
845
885
  .e-inplaceeditor .e-editable-form,
846
886
  .e-inplaceeditor-tip .e-editable-form {
@@ -868,6 +908,7 @@
868
908
  opacity: 0.5;
869
909
  pointer-events: none;
870
910
  -webkit-user-select: none;
911
+ -moz-user-select: none;
871
912
  -ms-user-select: none;
872
913
  user-select: none;
873
914
  visibility: visible;
@@ -904,7 +945,8 @@
904
945
  .e-inplaceeditor-tip.e-rtl .e-editable-loading.e-show:not(.e-rte-spin-wrap) .e-spinner-inner {
905
946
  left: 5px;
906
947
  right: auto;
907
- transform: translateX(30%) translateY(-50%);
948
+ -webkit-transform: translateX(30%) translateY(-50%);
949
+ transform: translateX(30%) translateY(-50%);
908
950
  }
909
951
 
910
952
  .e-bigger .e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content,
@@ -956,19 +998,24 @@
956
998
  .e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content .e-editable-title {
957
999
  -ms-flex-line-pack: center;
958
1000
  align-content: center;
1001
+ display: -webkit-box;
959
1002
  display: -ms-flexbox;
960
1003
  display: flex;
961
- -ms-flex-direction: column;
962
- flex-direction: column;
1004
+ -webkit-box-orient: vertical;
1005
+ -webkit-box-direction: normal;
1006
+ -ms-flex-direction: column;
1007
+ flex-direction: column;
963
1008
  font-family: "Helvetica Neue", "Helvetica", "Arial", sans-serif, "-apple-system", "BlinkMacSystemFont";
964
1009
  font-size: 14px;
965
1010
  font-weight: 700;
966
1011
  height: 31px;
967
- -ms-flex-pack: center;
968
- justify-content: center;
1012
+ -webkit-box-pack: center;
1013
+ -ms-flex-pack: center;
1014
+ justify-content: center;
969
1015
  padding: 0 0 0 14px;
970
1016
  }
971
1017
  .e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content .e-editable-wrapper {
1018
+ display: -webkit-box;
972
1019
  display: -ms-flexbox;
973
1020
  display: flex;
974
1021
  padding: 14px;
@@ -981,6 +1028,7 @@
981
1028
  top: auto;
982
1029
  }
983
1030
  .e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content .e-editable-container {
1031
+ display: -webkit-box;
984
1032
  display: -ms-flexbox;
985
1033
  display: flex;
986
1034
  padding: 14px;
@@ -1022,7 +1070,6 @@
1022
1070
  min-height: 70px;
1023
1071
  }
1024
1072
 
1025
- /*! inplaceeditor theme */
1026
1073
  .e-inplaceeditor .e-editable-value-wrapper .e-editable-value {
1027
1074
  border-bottom: 1px dashed #495057;
1028
1075
  color: #495057;
@@ -1081,7 +1128,8 @@
1081
1128
  .e-inplaceeditor-tip .e-editable-action-buttons .e-btn-cancel.e-icon-btn {
1082
1129
  background-color: #fff;
1083
1130
  border: 1px solid #ced4da;
1084
- box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.25);
1131
+ -webkit-box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.25);
1132
+ box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.25);
1085
1133
  }
1086
1134
  .e-inplaceeditor .e-editable-action-buttons .e-btn-save.e-icon-btn .e-btn-icon.e-icons,
1087
1135
  .e-inplaceeditor .e-editable-action-buttons .e-btn-cancel.e-icon-btn .e-btn-icon.e-icons,
@@ -1102,7 +1150,8 @@
1102
1150
  .e-inplaceeditor-tip .e-editable-action-buttons .e-btn-cancel.e-icon-btn:disabled {
1103
1151
  background-color: #fff;
1104
1152
  border: 1px solid #ced4da;
1105
- box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.25);
1153
+ -webkit-box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.25);
1154
+ box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.25);
1106
1155
  }
1107
1156
  .e-inplaceeditor .e-editable-action-buttons .e-btn-save.e-icon-btn:focus,
1108
1157
  .e-inplaceeditor .e-editable-action-buttons .e-btn-cancel.e-icon-btn:focus,
@@ -1136,7 +1185,8 @@
1136
1185
 
1137
1186
  .e-inplaceeditor-tip.e-tooltip-wrap.e-popup {
1138
1187
  background: #fff;
1139
- box-shadow: none;
1188
+ -webkit-box-shadow: none;
1189
+ box-shadow: none;
1140
1190
  }
1141
1191
  .e-inplaceeditor-tip.e-tooltip-wrap.e-popup .e-tip-content {
1142
1192
  border-radius: 4px;