@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
|
@@ -2,7 +2,8 @@
|
|
|
2
2
|
/* stylelint-disable-line no-empty-source */
|
|
3
3
|
.e-popup.e-ddl {
|
|
4
4
|
border-radius: 4px;
|
|
5
|
-
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.5);
|
|
5
|
+
-webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.5);
|
|
6
|
+
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.5);
|
|
6
7
|
margin-top: 3px;
|
|
7
8
|
}
|
|
8
9
|
.e-popup.e-ddl .e-input-group {
|
|
@@ -17,6 +18,7 @@
|
|
|
17
18
|
}
|
|
18
19
|
|
|
19
20
|
.e-popup.e-ddl .e-filter-parent .e-input-group {
|
|
21
|
+
display: -webkit-box;
|
|
20
22
|
display: -ms-flexbox;
|
|
21
23
|
display: flex;
|
|
22
24
|
width: auto;
|
|
@@ -75,7 +77,8 @@
|
|
|
75
77
|
.e-control.e-dropdownlist .e-input-group:not(.e-disabled) .e-input-group-icon:active,
|
|
76
78
|
.e-ddl.e-popup .e-input-group:not(.e-disabled) .e-back-icon:active,
|
|
77
79
|
.e-ddl.e-popup .e-input-group:not(.e-disabled) .e-clear-icon:active {
|
|
78
|
-
box-shadow: none;
|
|
80
|
+
-webkit-box-shadow: none;
|
|
81
|
+
box-shadow: none;
|
|
79
82
|
}
|
|
80
83
|
|
|
81
84
|
.e-ddl.e-popup .e-filter-parent {
|
|
@@ -138,20 +141,48 @@
|
|
|
138
141
|
color: #fff;
|
|
139
142
|
}
|
|
140
143
|
|
|
144
|
+
.e-bigger.e-multiselect.e-control-container .e-multi-select-wrapper .e-clear-icon {
|
|
145
|
+
margin-top: -3.2em;
|
|
146
|
+
}
|
|
147
|
+
|
|
141
148
|
/* stylelint-disable property-no-vendor-prefix */
|
|
149
|
+
@-webkit-keyframes material-spinner-rotate {
|
|
150
|
+
0% {
|
|
151
|
+
-webkit-transform: rotate(0);
|
|
152
|
+
transform: rotate(0);
|
|
153
|
+
}
|
|
154
|
+
100% {
|
|
155
|
+
-webkit-transform: rotate(360deg);
|
|
156
|
+
transform: rotate(360deg);
|
|
157
|
+
}
|
|
158
|
+
}
|
|
142
159
|
@keyframes material-spinner-rotate {
|
|
143
160
|
0% {
|
|
161
|
+
-webkit-transform: rotate(0);
|
|
162
|
+
transform: rotate(0);
|
|
163
|
+
}
|
|
164
|
+
100% {
|
|
165
|
+
-webkit-transform: rotate(360deg);
|
|
166
|
+
transform: rotate(360deg);
|
|
167
|
+
}
|
|
168
|
+
}
|
|
169
|
+
@-webkit-keyframes fabric-spinner-rotate {
|
|
170
|
+
0% {
|
|
171
|
+
-webkit-transform: rotate(0);
|
|
144
172
|
transform: rotate(0);
|
|
145
173
|
}
|
|
146
174
|
100% {
|
|
175
|
+
-webkit-transform: rotate(360deg);
|
|
147
176
|
transform: rotate(360deg);
|
|
148
177
|
}
|
|
149
178
|
}
|
|
150
179
|
@keyframes fabric-spinner-rotate {
|
|
151
180
|
0% {
|
|
181
|
+
-webkit-transform: rotate(0);
|
|
152
182
|
transform: rotate(0);
|
|
153
183
|
}
|
|
154
184
|
100% {
|
|
185
|
+
-webkit-transform: rotate(360deg);
|
|
155
186
|
transform: rotate(360deg);
|
|
156
187
|
}
|
|
157
188
|
}
|
|
@@ -309,6 +340,7 @@
|
|
|
309
340
|
.e-inplaceeditor .e-editable-value-wrapper .e-editable-overlay-icon {
|
|
310
341
|
bottom: 0;
|
|
311
342
|
cursor: pointer;
|
|
343
|
+
display: -webkit-inline-box;
|
|
312
344
|
display: -ms-inline-flexbox;
|
|
313
345
|
display: inline-flex;
|
|
314
346
|
height: inherit;
|
|
@@ -319,8 +351,10 @@
|
|
|
319
351
|
width: 18px;
|
|
320
352
|
}
|
|
321
353
|
.e-inplaceeditor .e-editable-value-wrapper .e-editable-overlay-icon::before {
|
|
322
|
-
-
|
|
323
|
-
align
|
|
354
|
+
-webkit-box-align: center;
|
|
355
|
+
-ms-flex-align: center;
|
|
356
|
+
align-items: center;
|
|
357
|
+
display: -webkit-box;
|
|
324
358
|
display: -ms-flexbox;
|
|
325
359
|
display: flex;
|
|
326
360
|
font-size: 14px;
|
|
@@ -330,6 +364,7 @@
|
|
|
330
364
|
}
|
|
331
365
|
.e-inplaceeditor .e-editable-value-wrapper.e-editable-open {
|
|
332
366
|
-webkit-user-select: none;
|
|
367
|
+
-moz-user-select: none;
|
|
333
368
|
-ms-user-select: none;
|
|
334
369
|
user-select: none;
|
|
335
370
|
}
|
|
@@ -362,6 +397,7 @@
|
|
|
362
397
|
.e-inplaceeditor .e-editable-value-container .e-editable-overlay-icon {
|
|
363
398
|
bottom: 0;
|
|
364
399
|
cursor: pointer;
|
|
400
|
+
display: -webkit-inline-box;
|
|
365
401
|
display: -ms-inline-flexbox;
|
|
366
402
|
display: inline-flex;
|
|
367
403
|
height: inherit;
|
|
@@ -372,8 +408,10 @@
|
|
|
372
408
|
width: 18px;
|
|
373
409
|
}
|
|
374
410
|
.e-inplaceeditor .e-editable-value-container .e-editable-overlay-icon::before {
|
|
375
|
-
-
|
|
376
|
-
align
|
|
411
|
+
-webkit-box-align: center;
|
|
412
|
+
-ms-flex-align: center;
|
|
413
|
+
align-items: center;
|
|
414
|
+
display: -webkit-box;
|
|
377
415
|
display: -ms-flexbox;
|
|
378
416
|
display: flex;
|
|
379
417
|
font-size: 14px;
|
|
@@ -383,6 +421,7 @@
|
|
|
383
421
|
}
|
|
384
422
|
.e-inplaceeditor .e-editable-value-container.e-editable-open {
|
|
385
423
|
-webkit-user-select: none;
|
|
424
|
+
-moz-user-select: none;
|
|
386
425
|
-ms-user-select: none;
|
|
387
426
|
user-select: none;
|
|
388
427
|
}
|
|
@@ -407,6 +446,7 @@
|
|
|
407
446
|
}
|
|
408
447
|
.e-inplaceeditor.e-overlay {
|
|
409
448
|
-webkit-user-select: none;
|
|
449
|
+
-moz-user-select: none;
|
|
410
450
|
-ms-user-select: none;
|
|
411
451
|
user-select: none;
|
|
412
452
|
}
|
|
@@ -472,7 +512,8 @@
|
|
|
472
512
|
.e-inplaceeditor-tip .e-editable-loading.e-show:not(.e-rte-spin-wrap) .e-spinner-inner {
|
|
473
513
|
left: auto;
|
|
474
514
|
right: 5px;
|
|
475
|
-
transform: translateX(-30%) translateY(-50%);
|
|
515
|
+
-webkit-transform: translateX(-30%) translateY(-50%);
|
|
516
|
+
transform: translateX(-30%) translateY(-50%);
|
|
476
517
|
}
|
|
477
518
|
.e-inplaceeditor .e-editable-form,
|
|
478
519
|
.e-inplaceeditor-tip .e-editable-form {
|
|
@@ -500,6 +541,7 @@
|
|
|
500
541
|
opacity: 0.5;
|
|
501
542
|
pointer-events: none;
|
|
502
543
|
-webkit-user-select: none;
|
|
544
|
+
-moz-user-select: none;
|
|
503
545
|
-ms-user-select: none;
|
|
504
546
|
user-select: none;
|
|
505
547
|
visibility: visible;
|
|
@@ -536,7 +578,8 @@
|
|
|
536
578
|
.e-inplaceeditor-tip.e-rtl .e-editable-loading.e-show:not(.e-rte-spin-wrap) .e-spinner-inner {
|
|
537
579
|
left: 5px;
|
|
538
580
|
right: auto;
|
|
539
|
-
transform: translateX(30%) translateY(-50%);
|
|
581
|
+
-webkit-transform: translateX(30%) translateY(-50%);
|
|
582
|
+
transform: translateX(30%) translateY(-50%);
|
|
540
583
|
}
|
|
541
584
|
|
|
542
585
|
.e-bigger .e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content,
|
|
@@ -588,19 +631,24 @@
|
|
|
588
631
|
.e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content .e-editable-title {
|
|
589
632
|
-ms-flex-line-pack: center;
|
|
590
633
|
align-content: center;
|
|
634
|
+
display: -webkit-box;
|
|
591
635
|
display: -ms-flexbox;
|
|
592
636
|
display: flex;
|
|
593
|
-
-
|
|
594
|
-
|
|
637
|
+
-webkit-box-orient: vertical;
|
|
638
|
+
-webkit-box-direction: normal;
|
|
639
|
+
-ms-flex-direction: column;
|
|
640
|
+
flex-direction: column;
|
|
595
641
|
font-family: "Helvetica Neue", "Helvetica", "Arial", sans-serif, "-apple-system", "BlinkMacSystemFont";
|
|
596
642
|
font-size: 14px;
|
|
597
643
|
font-weight: 700;
|
|
598
644
|
height: 30px;
|
|
599
|
-
-
|
|
600
|
-
|
|
645
|
+
-webkit-box-pack: center;
|
|
646
|
+
-ms-flex-pack: center;
|
|
647
|
+
justify-content: center;
|
|
601
648
|
padding: 0 0 0 12px;
|
|
602
649
|
}
|
|
603
650
|
.e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content .e-editable-wrapper {
|
|
651
|
+
display: -webkit-box;
|
|
604
652
|
display: -ms-flexbox;
|
|
605
653
|
display: flex;
|
|
606
654
|
padding: 12px;
|
|
@@ -613,6 +661,7 @@
|
|
|
613
661
|
top: auto;
|
|
614
662
|
}
|
|
615
663
|
.e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content .e-editable-container {
|
|
664
|
+
display: -webkit-box;
|
|
616
665
|
display: -ms-flexbox;
|
|
617
666
|
display: flex;
|
|
618
667
|
padding: 12px;
|
|
@@ -711,7 +760,8 @@
|
|
|
711
760
|
.e-inplaceeditor .e-editable-action-buttons .e-btn-cancel.e-icon-btn,
|
|
712
761
|
.e-inplaceeditor-tip .e-editable-action-buttons .e-btn-save.e-icon-btn,
|
|
713
762
|
.e-inplaceeditor-tip .e-editable-action-buttons .e-btn-cancel.e-icon-btn {
|
|
714
|
-
box-shadow: none;
|
|
763
|
+
-webkit-box-shadow: none;
|
|
764
|
+
box-shadow: none;
|
|
715
765
|
}
|
|
716
766
|
.e-inplaceeditor .e-editable-action-buttons .e-btn-save.e-icon-btn .e-btn-icon.e-icons,
|
|
717
767
|
.e-inplaceeditor .e-editable-action-buttons .e-btn-cancel.e-icon-btn .e-btn-icon.e-icons,
|
|
@@ -721,7 +771,8 @@
|
|
|
721
771
|
}
|
|
722
772
|
.e-inplaceeditor-tip.e-tooltip-wrap.e-popup {
|
|
723
773
|
background: #2a2a2a;
|
|
724
|
-
box-shadow: none;
|
|
774
|
+
-webkit-box-shadow: none;
|
|
775
|
+
box-shadow: none;
|
|
725
776
|
}
|
|
726
777
|
.e-inplaceeditor-tip.e-tooltip-wrap.e-popup .e-tip-content {
|
|
727
778
|
border-radius: 4px;
|
|
@@ -1 +1,26 @@
|
|
|
1
|
-
@import '
|
|
1
|
+
@import 'ej2-base/styles/definition/bootstrap-dark.scss';
|
|
2
|
+
@import 'ej2-inputs/styles/input/bootstrap-dark-definition.scss';
|
|
3
|
+
@import 'ej2-inputs/styles/color-picker/bootstrap-dark-definition.scss';
|
|
4
|
+
@import 'ej2-inputs/styles/maskedtextbox/bootstrap-dark-definition.scss';
|
|
5
|
+
@import 'ej2-inputs/styles/numerictextbox/bootstrap-dark-definition.scss';
|
|
6
|
+
@import 'ej2-inputs/styles/slider/bootstrap-dark-definition.scss';
|
|
7
|
+
@import 'ej2-inputs/styles/textbox/bootstrap-dark-definition.scss';
|
|
8
|
+
@import 'ej2-buttons/styles/button/bootstrap-dark-definition.scss';
|
|
9
|
+
@import 'ej2-buttons/styles/check-box/bootstrap-dark-definition.scss';
|
|
10
|
+
@import 'ej2-buttons/styles/radio-button/bootstrap-dark-definition.scss';
|
|
11
|
+
@import 'ej2-calendars/styles/calendar/bootstrap-dark-definition.scss';
|
|
12
|
+
@import 'ej2-calendars/styles/datepicker/bootstrap-dark-definition.scss';
|
|
13
|
+
@import 'ej2-calendars/styles/daterangepicker/bootstrap-dark-definition.scss';
|
|
14
|
+
@import 'ej2-calendars/styles/datetimepicker/bootstrap-dark-definition.scss';
|
|
15
|
+
@import 'ej2-calendars/styles/timepicker/bootstrap-dark-definition.scss';
|
|
16
|
+
@import 'ej2-dropdowns/styles/auto-complete/bootstrap-dark-definition.scss';
|
|
17
|
+
@import 'ej2-dropdowns/styles/combo-box/bootstrap-dark-definition.scss';
|
|
18
|
+
@import 'ej2-dropdowns/styles/drop-down-list/bootstrap-dark-definition.scss';
|
|
19
|
+
@import 'ej2-dropdowns/styles/multi-select/bootstrap-dark-definition.scss';
|
|
20
|
+
@import 'ej2-popups/styles/popup/bootstrap-dark-definition.scss';
|
|
21
|
+
@import 'ej2-popups/styles/spinner/bootstrap-dark-definition.scss';
|
|
22
|
+
@import 'ej2-popups/styles/tooltip/bootstrap-dark-definition.scss';
|
|
23
|
+
@import 'ej2-richtexteditor/styles/rich-text-editor/bootstrap-dark-definition.scss';
|
|
24
|
+
@import 'inplace-editor/bootstrap-dark-definition.scss';
|
|
25
|
+
@import 'inplace-editor/icons/bootstrap-dark.scss';
|
|
26
|
+
@import 'inplace-editor/all.scss';
|
package/styles/bootstrap.css
CHANGED
|
@@ -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 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 {
|
|
@@ -131,20 +135,48 @@
|
|
|
131
135
|
width: 40px;
|
|
132
136
|
}
|
|
133
137
|
|
|
138
|
+
.e-bigger.e-multiselect.e-control-container .e-multi-select-wrapper .e-clear-icon {
|
|
139
|
+
margin-top: -3.2em;
|
|
140
|
+
}
|
|
141
|
+
|
|
134
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
|
+
}
|
|
135
153
|
@keyframes material-spinner-rotate {
|
|
136
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);
|
|
137
166
|
transform: rotate(0);
|
|
138
167
|
}
|
|
139
168
|
100% {
|
|
169
|
+
-webkit-transform: rotate(360deg);
|
|
140
170
|
transform: rotate(360deg);
|
|
141
171
|
}
|
|
142
172
|
}
|
|
143
173
|
@keyframes fabric-spinner-rotate {
|
|
144
174
|
0% {
|
|
175
|
+
-webkit-transform: rotate(0);
|
|
145
176
|
transform: rotate(0);
|
|
146
177
|
}
|
|
147
178
|
100% {
|
|
179
|
+
-webkit-transform: rotate(360deg);
|
|
148
180
|
transform: rotate(360deg);
|
|
149
181
|
}
|
|
150
182
|
}
|
|
@@ -443,6 +475,7 @@
|
|
|
443
475
|
.e-inplaceeditor .e-editable-value-wrapper .e-editable-overlay-icon {
|
|
444
476
|
bottom: 0;
|
|
445
477
|
cursor: pointer;
|
|
478
|
+
display: -webkit-inline-box;
|
|
446
479
|
display: -ms-inline-flexbox;
|
|
447
480
|
display: inline-flex;
|
|
448
481
|
height: inherit;
|
|
@@ -453,8 +486,10 @@
|
|
|
453
486
|
width: 18px;
|
|
454
487
|
}
|
|
455
488
|
.e-inplaceeditor .e-editable-value-wrapper .e-editable-overlay-icon::before {
|
|
456
|
-
-
|
|
457
|
-
align
|
|
489
|
+
-webkit-box-align: center;
|
|
490
|
+
-ms-flex-align: center;
|
|
491
|
+
align-items: center;
|
|
492
|
+
display: -webkit-box;
|
|
458
493
|
display: -ms-flexbox;
|
|
459
494
|
display: flex;
|
|
460
495
|
font-size: 14px;
|
|
@@ -464,6 +499,7 @@
|
|
|
464
499
|
}
|
|
465
500
|
.e-inplaceeditor .e-editable-value-wrapper.e-editable-open {
|
|
466
501
|
-webkit-user-select: none;
|
|
502
|
+
-moz-user-select: none;
|
|
467
503
|
-ms-user-select: none;
|
|
468
504
|
user-select: none;
|
|
469
505
|
}
|
|
@@ -496,6 +532,7 @@
|
|
|
496
532
|
.e-inplaceeditor .e-editable-value-container .e-editable-overlay-icon {
|
|
497
533
|
bottom: 0;
|
|
498
534
|
cursor: pointer;
|
|
535
|
+
display: -webkit-inline-box;
|
|
499
536
|
display: -ms-inline-flexbox;
|
|
500
537
|
display: inline-flex;
|
|
501
538
|
height: inherit;
|
|
@@ -506,8 +543,10 @@
|
|
|
506
543
|
width: 18px;
|
|
507
544
|
}
|
|
508
545
|
.e-inplaceeditor .e-editable-value-container .e-editable-overlay-icon::before {
|
|
509
|
-
-
|
|
510
|
-
align
|
|
546
|
+
-webkit-box-align: center;
|
|
547
|
+
-ms-flex-align: center;
|
|
548
|
+
align-items: center;
|
|
549
|
+
display: -webkit-box;
|
|
511
550
|
display: -ms-flexbox;
|
|
512
551
|
display: flex;
|
|
513
552
|
font-size: 14px;
|
|
@@ -517,6 +556,7 @@
|
|
|
517
556
|
}
|
|
518
557
|
.e-inplaceeditor .e-editable-value-container.e-editable-open {
|
|
519
558
|
-webkit-user-select: none;
|
|
559
|
+
-moz-user-select: none;
|
|
520
560
|
-ms-user-select: none;
|
|
521
561
|
user-select: none;
|
|
522
562
|
}
|
|
@@ -541,6 +581,7 @@
|
|
|
541
581
|
}
|
|
542
582
|
.e-inplaceeditor.e-overlay {
|
|
543
583
|
-webkit-user-select: none;
|
|
584
|
+
-moz-user-select: none;
|
|
544
585
|
-ms-user-select: none;
|
|
545
586
|
user-select: none;
|
|
546
587
|
}
|
|
@@ -606,7 +647,8 @@
|
|
|
606
647
|
.e-inplaceeditor-tip .e-editable-loading.e-show:not(.e-rte-spin-wrap) .e-spinner-inner {
|
|
607
648
|
left: auto;
|
|
608
649
|
right: 5px;
|
|
609
|
-
transform: translateX(-30%) translateY(-50%);
|
|
650
|
+
-webkit-transform: translateX(-30%) translateY(-50%);
|
|
651
|
+
transform: translateX(-30%) translateY(-50%);
|
|
610
652
|
}
|
|
611
653
|
.e-inplaceeditor .e-editable-form,
|
|
612
654
|
.e-inplaceeditor-tip .e-editable-form {
|
|
@@ -634,6 +676,7 @@
|
|
|
634
676
|
opacity: 0.5;
|
|
635
677
|
pointer-events: none;
|
|
636
678
|
-webkit-user-select: none;
|
|
679
|
+
-moz-user-select: none;
|
|
637
680
|
-ms-user-select: none;
|
|
638
681
|
user-select: none;
|
|
639
682
|
visibility: visible;
|
|
@@ -670,7 +713,8 @@
|
|
|
670
713
|
.e-inplaceeditor-tip.e-rtl .e-editable-loading.e-show:not(.e-rte-spin-wrap) .e-spinner-inner {
|
|
671
714
|
left: 5px;
|
|
672
715
|
right: auto;
|
|
673
|
-
transform: translateX(30%) translateY(-50%);
|
|
716
|
+
-webkit-transform: translateX(30%) translateY(-50%);
|
|
717
|
+
transform: translateX(30%) translateY(-50%);
|
|
674
718
|
}
|
|
675
719
|
|
|
676
720
|
.e-bigger .e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content,
|
|
@@ -722,19 +766,24 @@
|
|
|
722
766
|
.e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content .e-editable-title {
|
|
723
767
|
-ms-flex-line-pack: center;
|
|
724
768
|
align-content: center;
|
|
769
|
+
display: -webkit-box;
|
|
725
770
|
display: -ms-flexbox;
|
|
726
771
|
display: flex;
|
|
727
|
-
-
|
|
728
|
-
|
|
772
|
+
-webkit-box-orient: vertical;
|
|
773
|
+
-webkit-box-direction: normal;
|
|
774
|
+
-ms-flex-direction: column;
|
|
775
|
+
flex-direction: column;
|
|
729
776
|
font-family: "Helvetica Neue", "Helvetica", "Arial", sans-serif, "-apple-system", "BlinkMacSystemFont";
|
|
730
777
|
font-size: 14px;
|
|
731
778
|
font-weight: 700;
|
|
732
779
|
height: 30px;
|
|
733
|
-
-
|
|
734
|
-
|
|
780
|
+
-webkit-box-pack: center;
|
|
781
|
+
-ms-flex-pack: center;
|
|
782
|
+
justify-content: center;
|
|
735
783
|
padding: 0 0 0 12px;
|
|
736
784
|
}
|
|
737
785
|
.e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content .e-editable-wrapper {
|
|
786
|
+
display: -webkit-box;
|
|
738
787
|
display: -ms-flexbox;
|
|
739
788
|
display: flex;
|
|
740
789
|
padding: 12px;
|
|
@@ -747,6 +796,7 @@
|
|
|
747
796
|
top: auto;
|
|
748
797
|
}
|
|
749
798
|
.e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content .e-editable-container {
|
|
799
|
+
display: -webkit-box;
|
|
750
800
|
display: -ms-flexbox;
|
|
751
801
|
display: flex;
|
|
752
802
|
padding: 12px;
|
|
@@ -845,7 +895,8 @@
|
|
|
845
895
|
.e-inplaceeditor .e-editable-action-buttons .e-btn-cancel.e-icon-btn,
|
|
846
896
|
.e-inplaceeditor-tip .e-editable-action-buttons .e-btn-save.e-icon-btn,
|
|
847
897
|
.e-inplaceeditor-tip .e-editable-action-buttons .e-btn-cancel.e-icon-btn {
|
|
848
|
-
box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.25);
|
|
898
|
+
-webkit-box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.25);
|
|
899
|
+
box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.25);
|
|
849
900
|
}
|
|
850
901
|
.e-inplaceeditor .e-editable-action-buttons .e-btn-save.e-icon-btn .e-btn-icon.e-icons,
|
|
851
902
|
.e-inplaceeditor .e-editable-action-buttons .e-btn-cancel.e-icon-btn .e-btn-icon.e-icons,
|
|
@@ -855,7 +906,8 @@
|
|
|
855
906
|
}
|
|
856
907
|
.e-inplaceeditor-tip.e-tooltip-wrap.e-popup {
|
|
857
908
|
background: #fff;
|
|
858
|
-
box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.26);
|
|
909
|
+
-webkit-box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.26);
|
|
910
|
+
box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.26);
|
|
859
911
|
}
|
|
860
912
|
.e-inplaceeditor-tip.e-tooltip-wrap.e-popup .e-tip-content {
|
|
861
913
|
border-radius: 4px;
|
package/styles/bootstrap.scss
CHANGED
|
@@ -1 +1,26 @@
|
|
|
1
|
-
@import '
|
|
1
|
+
@import 'ej2-base/styles/definition/bootstrap.scss';
|
|
2
|
+
@import 'ej2-inputs/styles/input/bootstrap-definition.scss';
|
|
3
|
+
@import 'ej2-inputs/styles/color-picker/bootstrap-definition.scss';
|
|
4
|
+
@import 'ej2-inputs/styles/maskedtextbox/bootstrap-definition.scss';
|
|
5
|
+
@import 'ej2-inputs/styles/numerictextbox/bootstrap-definition.scss';
|
|
6
|
+
@import 'ej2-inputs/styles/slider/bootstrap-definition.scss';
|
|
7
|
+
@import 'ej2-inputs/styles/textbox/bootstrap-definition.scss';
|
|
8
|
+
@import 'ej2-buttons/styles/button/bootstrap-definition.scss';
|
|
9
|
+
@import 'ej2-buttons/styles/check-box/bootstrap-definition.scss';
|
|
10
|
+
@import 'ej2-buttons/styles/radio-button/bootstrap-definition.scss';
|
|
11
|
+
@import 'ej2-calendars/styles/calendar/bootstrap-definition.scss';
|
|
12
|
+
@import 'ej2-calendars/styles/datepicker/bootstrap-definition.scss';
|
|
13
|
+
@import 'ej2-calendars/styles/daterangepicker/bootstrap-definition.scss';
|
|
14
|
+
@import 'ej2-calendars/styles/datetimepicker/bootstrap-definition.scss';
|
|
15
|
+
@import 'ej2-calendars/styles/timepicker/bootstrap-definition.scss';
|
|
16
|
+
@import 'ej2-dropdowns/styles/auto-complete/bootstrap-definition.scss';
|
|
17
|
+
@import 'ej2-dropdowns/styles/combo-box/bootstrap-definition.scss';
|
|
18
|
+
@import 'ej2-dropdowns/styles/drop-down-list/bootstrap-definition.scss';
|
|
19
|
+
@import 'ej2-dropdowns/styles/multi-select/bootstrap-definition.scss';
|
|
20
|
+
@import 'ej2-popups/styles/popup/bootstrap-definition.scss';
|
|
21
|
+
@import 'ej2-popups/styles/spinner/bootstrap-definition.scss';
|
|
22
|
+
@import 'ej2-popups/styles/tooltip/bootstrap-definition.scss';
|
|
23
|
+
@import 'ej2-richtexteditor/styles/rich-text-editor/bootstrap-definition.scss';
|
|
24
|
+
@import 'inplace-editor/bootstrap-definition.scss';
|
|
25
|
+
@import 'inplace-editor/icons/bootstrap.scss';
|
|
26
|
+
@import 'inplace-editor/all.scss';
|