@syncfusion/ej2-inplace-editor 25.2.3 → 26.2.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.eslintrc.json +3 -2
- package/dist/ej2-inplace-editor.min.js +2 -2
- package/dist/ej2-inplace-editor.umd.min.js +2 -2
- package/dist/ej2-inplace-editor.umd.min.js.map +1 -1
- package/dist/es6/ej2-inplace-editor.es2015.js +22 -43
- package/dist/es6/ej2-inplace-editor.es2015.js.map +1 -1
- package/dist/es6/ej2-inplace-editor.es5.js +77 -98
- package/dist/es6/ej2-inplace-editor.es5.js.map +1 -1
- package/dist/global/ej2-inplace-editor.min.js +2 -2
- package/dist/global/ej2-inplace-editor.min.js.map +1 -1
- package/dist/global/index.d.ts +1 -1
- package/hotfix/26.1.35_Vol2.txt +1 -0
- package/package.json +18 -18
- package/src/inplace-editor/base/inplace-editor.d.ts +0 -1
- package/src/inplace-editor/base/interface.js +0 -1
- package/src/inplace-editor/base/models.js +0 -2
- package/styles/bootstrap-dark.css +61 -16
- package/styles/bootstrap-dark.scss +26 -1
- package/styles/bootstrap.css +63 -17
- package/styles/bootstrap.scss +26 -1
- package/styles/bootstrap4.css +72 -22
- package/styles/bootstrap4.scss +26 -1
- package/styles/bootstrap5-dark.css +62 -16
- package/styles/bootstrap5-dark.scss +26 -1
- package/styles/bootstrap5.css +62 -16
- package/styles/bootstrap5.scss +26 -1
- package/styles/fabric-dark.css +59 -15
- package/styles/fabric-dark.scss +26 -1
- package/styles/fabric.css +61 -16
- package/styles/fabric.scss +26 -1
- package/styles/fluent-dark.css +63 -17
- package/styles/fluent-dark.scss +26 -1
- package/styles/fluent.css +63 -17
- package/styles/fluent.scss +26 -1
- package/styles/fluent2.css +1994 -0
- package/styles/fluent2.scss +26 -0
- package/styles/highcontrast-light.css +62 -15
- package/styles/highcontrast-light.scss +26 -1
- package/styles/highcontrast.css +64 -16
- package/styles/highcontrast.scss +26 -1
- package/styles/inplace-editor/_bootstrap5.3-definition.scss +69 -0
- package/styles/inplace-editor/_fluent2-definition.scss +71 -0
- package/styles/inplace-editor/_layout.scss +0 -35
- package/styles/inplace-editor/_material3-definition.scss +0 -7
- package/styles/inplace-editor/_theme.scss +8 -32
- package/styles/inplace-editor/bootstrap-dark.css +61 -16
- package/styles/inplace-editor/bootstrap.css +63 -17
- package/styles/inplace-editor/bootstrap4.css +72 -22
- package/styles/inplace-editor/bootstrap5-dark.css +62 -16
- package/styles/inplace-editor/bootstrap5.css +62 -16
- package/styles/inplace-editor/fabric-dark.css +59 -15
- package/styles/inplace-editor/fabric.css +61 -16
- package/styles/inplace-editor/fluent-dark.css +63 -17
- package/styles/inplace-editor/fluent.css +63 -17
- package/styles/inplace-editor/fluent2.css +1994 -0
- package/styles/inplace-editor/fluent2.scss +26 -0
- package/styles/inplace-editor/highcontrast-light.css +62 -15
- package/styles/inplace-editor/highcontrast.css +64 -16
- package/styles/inplace-editor/icons/_bootstrap5.3.scss +19 -0
- package/styles/inplace-editor/icons/_fluent2.scss +19 -0
- package/styles/inplace-editor/material-dark.css +79 -19
- package/styles/inplace-editor/material.css +95 -22
- package/styles/inplace-editor/material3-dark.css +100 -23
- package/styles/inplace-editor/material3.css +100 -23
- package/styles/inplace-editor/tailwind-dark.css +72 -19
- package/styles/inplace-editor/tailwind.css +72 -19
- package/styles/material-dark.css +79 -19
- package/styles/material-dark.scss +26 -1
- package/styles/material.css +95 -22
- package/styles/material.scss +26 -1
- package/styles/material3-dark.css +100 -23
- package/styles/material3-dark.scss +26 -1
- package/styles/material3.css +100 -23
- package/styles/material3.scss +26 -1
- package/styles/tailwind-dark.css +72 -19
- package/styles/tailwind-dark.scss +26 -1
- package/styles/tailwind.css +72 -19
- package/styles/tailwind.scss +26 -1
- package/CHANGELOG.md +0 -262
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
@import 'ej2-base/styles/definition/fluent2.scss';
|
|
2
|
+
@import 'ej2-inputs/styles/input/fluent2-definition.scss';
|
|
3
|
+
@import 'ej2-inputs/styles/color-picker/fluent2-definition.scss';
|
|
4
|
+
@import 'ej2-inputs/styles/maskedtextbox/fluent2-definition.scss';
|
|
5
|
+
@import 'ej2-inputs/styles/numerictextbox/fluent2-definition.scss';
|
|
6
|
+
@import 'ej2-inputs/styles/slider/fluent2-definition.scss';
|
|
7
|
+
@import 'ej2-inputs/styles/textbox/fluent2-definition.scss';
|
|
8
|
+
@import 'ej2-buttons/styles/button/fluent2-definition.scss';
|
|
9
|
+
@import 'ej2-buttons/styles/check-box/fluent2-definition.scss';
|
|
10
|
+
@import 'ej2-buttons/styles/radio-button/fluent2-definition.scss';
|
|
11
|
+
@import 'ej2-calendars/styles/calendar/fluent2-definition.scss';
|
|
12
|
+
@import 'ej2-calendars/styles/datepicker/fluent2-definition.scss';
|
|
13
|
+
@import 'ej2-calendars/styles/daterangepicker/fluent2-definition.scss';
|
|
14
|
+
@import 'ej2-calendars/styles/datetimepicker/fluent2-definition.scss';
|
|
15
|
+
@import 'ej2-calendars/styles/timepicker/fluent2-definition.scss';
|
|
16
|
+
@import 'ej2-dropdowns/styles/auto-complete/fluent2-definition.scss';
|
|
17
|
+
@import 'ej2-dropdowns/styles/combo-box/fluent2-definition.scss';
|
|
18
|
+
@import 'ej2-dropdowns/styles/drop-down-list/fluent2-definition.scss';
|
|
19
|
+
@import 'ej2-dropdowns/styles/multi-select/fluent2-definition.scss';
|
|
20
|
+
@import 'ej2-popups/styles/popup/fluent2-definition.scss';
|
|
21
|
+
@import 'ej2-popups/styles/spinner/fluent2-definition.scss';
|
|
22
|
+
@import 'ej2-popups/styles/tooltip/fluent2-definition.scss';
|
|
23
|
+
@import 'ej2-richtexteditor/styles/rich-text-editor/fluent2-definition.scss';
|
|
24
|
+
@import 'inplace-editor/fluent2-definition.scss';
|
|
25
|
+
@import 'inplace-editor/icons/fluent2.scss';
|
|
26
|
+
@import 'inplace-editor/all.scss';
|
|
@@ -10,7 +10,8 @@
|
|
|
10
10
|
|
|
11
11
|
.e-ddl.e-popup {
|
|
12
12
|
border: 0;
|
|
13
|
-
box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.4);
|
|
13
|
+
-webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.4);
|
|
14
|
+
box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.4);
|
|
14
15
|
margin-top: 1px;
|
|
15
16
|
}
|
|
16
17
|
.e-ddl.e-popup .e-content.e-nodata {
|
|
@@ -20,6 +21,7 @@
|
|
|
20
21
|
color: #23726c;
|
|
21
22
|
}
|
|
22
23
|
.e-ddl.e-popup .e-input-group {
|
|
24
|
+
display: -webkit-box;
|
|
23
25
|
display: -ms-flexbox;
|
|
24
26
|
display: flex;
|
|
25
27
|
width: auto;
|
|
@@ -130,6 +132,9 @@
|
|
|
130
132
|
height: 100%;
|
|
131
133
|
min-height: 28px;
|
|
132
134
|
}
|
|
135
|
+
.e-multi-select-wrapper .e-searcher input[type=text]::-moz-selection {
|
|
136
|
+
background-color: #400074;
|
|
137
|
+
}
|
|
133
138
|
.e-multi-select-wrapper .e-searcher input[type=text]::selection {
|
|
134
139
|
background-color: #400074;
|
|
135
140
|
}
|
|
@@ -178,19 +183,43 @@
|
|
|
178
183
|
}
|
|
179
184
|
|
|
180
185
|
/* stylelint-disable property-no-vendor-prefix */
|
|
186
|
+
@-webkit-keyframes material-spinner-rotate {
|
|
187
|
+
0% {
|
|
188
|
+
-webkit-transform: rotate(0);
|
|
189
|
+
transform: rotate(0);
|
|
190
|
+
}
|
|
191
|
+
100% {
|
|
192
|
+
-webkit-transform: rotate(360deg);
|
|
193
|
+
transform: rotate(360deg);
|
|
194
|
+
}
|
|
195
|
+
}
|
|
181
196
|
@keyframes material-spinner-rotate {
|
|
182
197
|
0% {
|
|
198
|
+
-webkit-transform: rotate(0);
|
|
199
|
+
transform: rotate(0);
|
|
200
|
+
}
|
|
201
|
+
100% {
|
|
202
|
+
-webkit-transform: rotate(360deg);
|
|
203
|
+
transform: rotate(360deg);
|
|
204
|
+
}
|
|
205
|
+
}
|
|
206
|
+
@-webkit-keyframes fabric-spinner-rotate {
|
|
207
|
+
0% {
|
|
208
|
+
-webkit-transform: rotate(0);
|
|
183
209
|
transform: rotate(0);
|
|
184
210
|
}
|
|
185
211
|
100% {
|
|
212
|
+
-webkit-transform: rotate(360deg);
|
|
186
213
|
transform: rotate(360deg);
|
|
187
214
|
}
|
|
188
215
|
}
|
|
189
216
|
@keyframes fabric-spinner-rotate {
|
|
190
217
|
0% {
|
|
218
|
+
-webkit-transform: rotate(0);
|
|
191
219
|
transform: rotate(0);
|
|
192
220
|
}
|
|
193
221
|
100% {
|
|
222
|
+
-webkit-transform: rotate(360deg);
|
|
194
223
|
transform: rotate(360deg);
|
|
195
224
|
}
|
|
196
225
|
}
|
|
@@ -216,7 +245,6 @@
|
|
|
216
245
|
content: "\e97c";
|
|
217
246
|
}
|
|
218
247
|
|
|
219
|
-
/*! inplaceeditor layout */
|
|
220
248
|
.e-bigger .e-inplaceeditor .e-editable-value-wrapper,
|
|
221
249
|
.e-inplaceeditor.e-bigger .e-editable-value-wrapper {
|
|
222
250
|
padding: 8px 12px;
|
|
@@ -337,6 +365,7 @@
|
|
|
337
365
|
.e-inplaceeditor .e-editable-value-wrapper .e-editable-overlay-icon {
|
|
338
366
|
bottom: 0;
|
|
339
367
|
cursor: pointer;
|
|
368
|
+
display: -webkit-inline-box;
|
|
340
369
|
display: -ms-inline-flexbox;
|
|
341
370
|
display: inline-flex;
|
|
342
371
|
height: inherit;
|
|
@@ -347,8 +376,10 @@
|
|
|
347
376
|
width: 18px;
|
|
348
377
|
}
|
|
349
378
|
.e-inplaceeditor .e-editable-value-wrapper .e-editable-overlay-icon::before {
|
|
350
|
-
-
|
|
351
|
-
align
|
|
379
|
+
-webkit-box-align: center;
|
|
380
|
+
-ms-flex-align: center;
|
|
381
|
+
align-items: center;
|
|
382
|
+
display: -webkit-box;
|
|
352
383
|
display: -ms-flexbox;
|
|
353
384
|
display: flex;
|
|
354
385
|
font-size: 14px;
|
|
@@ -358,6 +389,7 @@
|
|
|
358
389
|
}
|
|
359
390
|
.e-inplaceeditor .e-editable-value-wrapper.e-editable-open {
|
|
360
391
|
-webkit-user-select: none;
|
|
392
|
+
-moz-user-select: none;
|
|
361
393
|
-ms-user-select: none;
|
|
362
394
|
user-select: none;
|
|
363
395
|
}
|
|
@@ -390,6 +422,7 @@
|
|
|
390
422
|
.e-inplaceeditor .e-editable-value-container .e-editable-overlay-icon {
|
|
391
423
|
bottom: 0;
|
|
392
424
|
cursor: pointer;
|
|
425
|
+
display: -webkit-inline-box;
|
|
393
426
|
display: -ms-inline-flexbox;
|
|
394
427
|
display: inline-flex;
|
|
395
428
|
height: inherit;
|
|
@@ -400,8 +433,10 @@
|
|
|
400
433
|
width: 18px;
|
|
401
434
|
}
|
|
402
435
|
.e-inplaceeditor .e-editable-value-container .e-editable-overlay-icon::before {
|
|
403
|
-
-
|
|
404
|
-
align
|
|
436
|
+
-webkit-box-align: center;
|
|
437
|
+
-ms-flex-align: center;
|
|
438
|
+
align-items: center;
|
|
439
|
+
display: -webkit-box;
|
|
405
440
|
display: -ms-flexbox;
|
|
406
441
|
display: flex;
|
|
407
442
|
font-size: 14px;
|
|
@@ -411,6 +446,7 @@
|
|
|
411
446
|
}
|
|
412
447
|
.e-inplaceeditor .e-editable-value-container.e-editable-open {
|
|
413
448
|
-webkit-user-select: none;
|
|
449
|
+
-moz-user-select: none;
|
|
414
450
|
-ms-user-select: none;
|
|
415
451
|
user-select: none;
|
|
416
452
|
}
|
|
@@ -435,6 +471,7 @@
|
|
|
435
471
|
}
|
|
436
472
|
.e-inplaceeditor.e-overlay {
|
|
437
473
|
-webkit-user-select: none;
|
|
474
|
+
-moz-user-select: none;
|
|
438
475
|
-ms-user-select: none;
|
|
439
476
|
user-select: none;
|
|
440
477
|
}
|
|
@@ -500,7 +537,8 @@
|
|
|
500
537
|
.e-inplaceeditor-tip .e-editable-loading.e-show:not(.e-rte-spin-wrap) .e-spinner-inner {
|
|
501
538
|
left: auto;
|
|
502
539
|
right: 5px;
|
|
503
|
-
transform: translateX(-30%) translateY(-50%);
|
|
540
|
+
-webkit-transform: translateX(-30%) translateY(-50%);
|
|
541
|
+
transform: translateX(-30%) translateY(-50%);
|
|
504
542
|
}
|
|
505
543
|
.e-inplaceeditor .e-editable-form,
|
|
506
544
|
.e-inplaceeditor-tip .e-editable-form {
|
|
@@ -528,6 +566,7 @@
|
|
|
528
566
|
opacity: 0.5;
|
|
529
567
|
pointer-events: none;
|
|
530
568
|
-webkit-user-select: none;
|
|
569
|
+
-moz-user-select: none;
|
|
531
570
|
-ms-user-select: none;
|
|
532
571
|
user-select: none;
|
|
533
572
|
visibility: visible;
|
|
@@ -564,7 +603,8 @@
|
|
|
564
603
|
.e-inplaceeditor-tip.e-rtl .e-editable-loading.e-show:not(.e-rte-spin-wrap) .e-spinner-inner {
|
|
565
604
|
left: 5px;
|
|
566
605
|
right: auto;
|
|
567
|
-
transform: translateX(30%) translateY(-50%);
|
|
606
|
+
-webkit-transform: translateX(30%) translateY(-50%);
|
|
607
|
+
transform: translateX(30%) translateY(-50%);
|
|
568
608
|
}
|
|
569
609
|
|
|
570
610
|
.e-bigger .e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content,
|
|
@@ -616,19 +656,24 @@
|
|
|
616
656
|
.e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content .e-editable-title {
|
|
617
657
|
-ms-flex-line-pack: center;
|
|
618
658
|
align-content: center;
|
|
659
|
+
display: -webkit-box;
|
|
619
660
|
display: -ms-flexbox;
|
|
620
661
|
display: flex;
|
|
621
|
-
-
|
|
622
|
-
|
|
662
|
+
-webkit-box-orient: vertical;
|
|
663
|
+
-webkit-box-direction: normal;
|
|
664
|
+
-ms-flex-direction: column;
|
|
665
|
+
flex-direction: column;
|
|
623
666
|
font-family: "Segoe UI", "GeezaPro", "DejaVu Serif", sans-serif, "-apple-system", "BlinkMacSystemFont";
|
|
624
667
|
font-size: 13px;
|
|
625
668
|
font-weight: 600;
|
|
626
669
|
height: 30px;
|
|
627
|
-
-
|
|
628
|
-
|
|
670
|
+
-webkit-box-pack: center;
|
|
671
|
+
-ms-flex-pack: center;
|
|
672
|
+
justify-content: center;
|
|
629
673
|
padding: 0 0 0 12px;
|
|
630
674
|
}
|
|
631
675
|
.e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content .e-editable-wrapper {
|
|
676
|
+
display: -webkit-box;
|
|
632
677
|
display: -ms-flexbox;
|
|
633
678
|
display: flex;
|
|
634
679
|
padding: 12px;
|
|
@@ -641,6 +686,7 @@
|
|
|
641
686
|
top: auto;
|
|
642
687
|
}
|
|
643
688
|
.e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content .e-editable-container {
|
|
689
|
+
display: -webkit-box;
|
|
644
690
|
display: -ms-flexbox;
|
|
645
691
|
display: flex;
|
|
646
692
|
padding: 12px;
|
|
@@ -682,7 +728,6 @@
|
|
|
682
728
|
min-height: 70px;
|
|
683
729
|
}
|
|
684
730
|
|
|
685
|
-
/*! inplaceeditor theme */
|
|
686
731
|
.e-inplaceeditor .e-editable-value-wrapper .e-editable-value {
|
|
687
732
|
border-bottom: 1px dashed #000;
|
|
688
733
|
color: #000;
|
|
@@ -739,7 +784,8 @@
|
|
|
739
784
|
.e-inplaceeditor .e-editable-action-buttons .e-btn-cancel.e-icon-btn,
|
|
740
785
|
.e-inplaceeditor-tip .e-editable-action-buttons .e-btn-save.e-icon-btn,
|
|
741
786
|
.e-inplaceeditor-tip .e-editable-action-buttons .e-btn-cancel.e-icon-btn {
|
|
742
|
-
box-shadow: none;
|
|
787
|
+
-webkit-box-shadow: none;
|
|
788
|
+
box-shadow: none;
|
|
743
789
|
}
|
|
744
790
|
.e-inplaceeditor .e-editable-action-buttons .e-btn-save.e-icon-btn .e-btn-icon.e-icons,
|
|
745
791
|
.e-inplaceeditor .e-editable-action-buttons .e-btn-cancel.e-icon-btn .e-btn-icon.e-icons,
|
|
@@ -749,7 +795,8 @@
|
|
|
749
795
|
}
|
|
750
796
|
.e-inplaceeditor-tip.e-tooltip-wrap.e-popup {
|
|
751
797
|
background: #fff;
|
|
752
|
-
box-shadow: none;
|
|
798
|
+
-webkit-box-shadow: none;
|
|
799
|
+
box-shadow: none;
|
|
753
800
|
}
|
|
754
801
|
.e-inplaceeditor-tip.e-tooltip-wrap.e-popup .e-tip-content {
|
|
755
802
|
border-radius: 0;
|
|
@@ -1 +1,26 @@
|
|
|
1
|
-
@import '
|
|
1
|
+
@import 'ej2-base/styles/definition/highcontrast-light.scss';
|
|
2
|
+
@import 'ej2-inputs/styles/input/highcontrast-light-definition.scss';
|
|
3
|
+
@import 'ej2-inputs/styles/color-picker/highcontrast-light-definition.scss';
|
|
4
|
+
@import 'ej2-inputs/styles/maskedtextbox/highcontrast-light-definition.scss';
|
|
5
|
+
@import 'ej2-inputs/styles/numerictextbox/highcontrast-light-definition.scss';
|
|
6
|
+
@import 'ej2-inputs/styles/slider/highcontrast-light-definition.scss';
|
|
7
|
+
@import 'ej2-inputs/styles/textbox/highcontrast-light-definition.scss';
|
|
8
|
+
@import 'ej2-buttons/styles/button/highcontrast-light-definition.scss';
|
|
9
|
+
@import 'ej2-buttons/styles/check-box/highcontrast-light-definition.scss';
|
|
10
|
+
@import 'ej2-buttons/styles/radio-button/highcontrast-light-definition.scss';
|
|
11
|
+
@import 'ej2-calendars/styles/calendar/highcontrast-light-definition.scss';
|
|
12
|
+
@import 'ej2-calendars/styles/datepicker/highcontrast-light-definition.scss';
|
|
13
|
+
@import 'ej2-calendars/styles/daterangepicker/highcontrast-light-definition.scss';
|
|
14
|
+
@import 'ej2-calendars/styles/datetimepicker/highcontrast-light-definition.scss';
|
|
15
|
+
@import 'ej2-calendars/styles/timepicker/highcontrast-light-definition.scss';
|
|
16
|
+
@import 'ej2-dropdowns/styles/auto-complete/highcontrast-light-definition.scss';
|
|
17
|
+
@import 'ej2-dropdowns/styles/combo-box/highcontrast-light-definition.scss';
|
|
18
|
+
@import 'ej2-dropdowns/styles/drop-down-list/highcontrast-light-definition.scss';
|
|
19
|
+
@import 'ej2-dropdowns/styles/multi-select/highcontrast-light-definition.scss';
|
|
20
|
+
@import 'ej2-popups/styles/popup/highcontrast-light-definition.scss';
|
|
21
|
+
@import 'ej2-popups/styles/spinner/highcontrast-light-definition.scss';
|
|
22
|
+
@import 'ej2-popups/styles/tooltip/highcontrast-light-definition.scss';
|
|
23
|
+
@import 'ej2-richtexteditor/styles/rich-text-editor/highcontrast-light-definition.scss';
|
|
24
|
+
@import 'inplace-editor/highcontrast-light-definition.scss';
|
|
25
|
+
@import 'inplace-editor/icons/highcontrast-light.scss';
|
|
26
|
+
@import 'inplace-editor/all.scss';
|
package/styles/highcontrast.css
CHANGED
|
@@ -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 fabric theme variables */
|
|
3
4
|
.e-bigger .e-ddl.e-popup .e-input-group .e-clear-icon {
|
|
4
5
|
height: 36px;
|
|
5
6
|
}
|
|
@@ -10,7 +11,8 @@
|
|
|
10
11
|
|
|
11
12
|
.e-ddl.e-popup {
|
|
12
13
|
border: 0;
|
|
13
|
-
box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.4);
|
|
14
|
+
-webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.4);
|
|
15
|
+
box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.4);
|
|
14
16
|
margin-top: 1px;
|
|
15
17
|
}
|
|
16
18
|
.e-ddl.e-popup .e-content.e-nodata {
|
|
@@ -20,6 +22,7 @@
|
|
|
20
22
|
color: #ffd939;
|
|
21
23
|
}
|
|
22
24
|
.e-ddl.e-popup .e-input-group {
|
|
25
|
+
display: -webkit-box;
|
|
23
26
|
display: -ms-flexbox;
|
|
24
27
|
display: flex;
|
|
25
28
|
width: auto;
|
|
@@ -132,6 +135,9 @@
|
|
|
132
135
|
height: 100%;
|
|
133
136
|
min-height: 28px;
|
|
134
137
|
}
|
|
138
|
+
.e-multi-select-wrapper .e-searcher input[type=text]::-moz-selection {
|
|
139
|
+
background-color: #ffd939;
|
|
140
|
+
}
|
|
135
141
|
.e-multi-select-wrapper .e-searcher input[type=text]::selection {
|
|
136
142
|
background-color: #ffd939;
|
|
137
143
|
}
|
|
@@ -185,19 +191,43 @@
|
|
|
185
191
|
}
|
|
186
192
|
|
|
187
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
|
+
}
|
|
188
204
|
@keyframes material-spinner-rotate {
|
|
189
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);
|
|
190
217
|
transform: rotate(0);
|
|
191
218
|
}
|
|
192
219
|
100% {
|
|
220
|
+
-webkit-transform: rotate(360deg);
|
|
193
221
|
transform: rotate(360deg);
|
|
194
222
|
}
|
|
195
223
|
}
|
|
196
224
|
@keyframes fabric-spinner-rotate {
|
|
197
225
|
0% {
|
|
226
|
+
-webkit-transform: rotate(0);
|
|
198
227
|
transform: rotate(0);
|
|
199
228
|
}
|
|
200
229
|
100% {
|
|
230
|
+
-webkit-transform: rotate(360deg);
|
|
201
231
|
transform: rotate(360deg);
|
|
202
232
|
}
|
|
203
233
|
}
|
|
@@ -223,7 +253,6 @@
|
|
|
223
253
|
content: "\e97c";
|
|
224
254
|
}
|
|
225
255
|
|
|
226
|
-
/*! inplaceeditor layout */
|
|
227
256
|
.e-bigger .e-inplaceeditor .e-editable-value-wrapper,
|
|
228
257
|
.e-inplaceeditor.e-bigger .e-editable-value-wrapper {
|
|
229
258
|
padding: 8px 12px;
|
|
@@ -344,6 +373,7 @@
|
|
|
344
373
|
.e-inplaceeditor .e-editable-value-wrapper .e-editable-overlay-icon {
|
|
345
374
|
bottom: 0;
|
|
346
375
|
cursor: pointer;
|
|
376
|
+
display: -webkit-inline-box;
|
|
347
377
|
display: -ms-inline-flexbox;
|
|
348
378
|
display: inline-flex;
|
|
349
379
|
height: inherit;
|
|
@@ -354,8 +384,10 @@
|
|
|
354
384
|
width: 18px;
|
|
355
385
|
}
|
|
356
386
|
.e-inplaceeditor .e-editable-value-wrapper .e-editable-overlay-icon::before {
|
|
357
|
-
-
|
|
358
|
-
align
|
|
387
|
+
-webkit-box-align: center;
|
|
388
|
+
-ms-flex-align: center;
|
|
389
|
+
align-items: center;
|
|
390
|
+
display: -webkit-box;
|
|
359
391
|
display: -ms-flexbox;
|
|
360
392
|
display: flex;
|
|
361
393
|
font-size: 14px;
|
|
@@ -365,6 +397,7 @@
|
|
|
365
397
|
}
|
|
366
398
|
.e-inplaceeditor .e-editable-value-wrapper.e-editable-open {
|
|
367
399
|
-webkit-user-select: none;
|
|
400
|
+
-moz-user-select: none;
|
|
368
401
|
-ms-user-select: none;
|
|
369
402
|
user-select: none;
|
|
370
403
|
}
|
|
@@ -397,6 +430,7 @@
|
|
|
397
430
|
.e-inplaceeditor .e-editable-value-container .e-editable-overlay-icon {
|
|
398
431
|
bottom: 0;
|
|
399
432
|
cursor: pointer;
|
|
433
|
+
display: -webkit-inline-box;
|
|
400
434
|
display: -ms-inline-flexbox;
|
|
401
435
|
display: inline-flex;
|
|
402
436
|
height: inherit;
|
|
@@ -407,8 +441,10 @@
|
|
|
407
441
|
width: 18px;
|
|
408
442
|
}
|
|
409
443
|
.e-inplaceeditor .e-editable-value-container .e-editable-overlay-icon::before {
|
|
410
|
-
-
|
|
411
|
-
align
|
|
444
|
+
-webkit-box-align: center;
|
|
445
|
+
-ms-flex-align: center;
|
|
446
|
+
align-items: center;
|
|
447
|
+
display: -webkit-box;
|
|
412
448
|
display: -ms-flexbox;
|
|
413
449
|
display: flex;
|
|
414
450
|
font-size: 14px;
|
|
@@ -418,6 +454,7 @@
|
|
|
418
454
|
}
|
|
419
455
|
.e-inplaceeditor .e-editable-value-container.e-editable-open {
|
|
420
456
|
-webkit-user-select: none;
|
|
457
|
+
-moz-user-select: none;
|
|
421
458
|
-ms-user-select: none;
|
|
422
459
|
user-select: none;
|
|
423
460
|
}
|
|
@@ -442,6 +479,7 @@
|
|
|
442
479
|
}
|
|
443
480
|
.e-inplaceeditor.e-overlay {
|
|
444
481
|
-webkit-user-select: none;
|
|
482
|
+
-moz-user-select: none;
|
|
445
483
|
-ms-user-select: none;
|
|
446
484
|
user-select: none;
|
|
447
485
|
}
|
|
@@ -507,7 +545,8 @@
|
|
|
507
545
|
.e-inplaceeditor-tip .e-editable-loading.e-show:not(.e-rte-spin-wrap) .e-spinner-inner {
|
|
508
546
|
left: auto;
|
|
509
547
|
right: 5px;
|
|
510
|
-
transform: translateX(-30%) translateY(-50%);
|
|
548
|
+
-webkit-transform: translateX(-30%) translateY(-50%);
|
|
549
|
+
transform: translateX(-30%) translateY(-50%);
|
|
511
550
|
}
|
|
512
551
|
.e-inplaceeditor .e-editable-form,
|
|
513
552
|
.e-inplaceeditor-tip .e-editable-form {
|
|
@@ -535,6 +574,7 @@
|
|
|
535
574
|
opacity: 0.5;
|
|
536
575
|
pointer-events: none;
|
|
537
576
|
-webkit-user-select: none;
|
|
577
|
+
-moz-user-select: none;
|
|
538
578
|
-ms-user-select: none;
|
|
539
579
|
user-select: none;
|
|
540
580
|
visibility: visible;
|
|
@@ -571,7 +611,8 @@
|
|
|
571
611
|
.e-inplaceeditor-tip.e-rtl .e-editable-loading.e-show:not(.e-rte-spin-wrap) .e-spinner-inner {
|
|
572
612
|
left: 5px;
|
|
573
613
|
right: auto;
|
|
574
|
-
transform: translateX(30%) translateY(-50%);
|
|
614
|
+
-webkit-transform: translateX(30%) translateY(-50%);
|
|
615
|
+
transform: translateX(30%) translateY(-50%);
|
|
575
616
|
}
|
|
576
617
|
|
|
577
618
|
.e-bigger .e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content,
|
|
@@ -623,19 +664,24 @@
|
|
|
623
664
|
.e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content .e-editable-title {
|
|
624
665
|
-ms-flex-line-pack: center;
|
|
625
666
|
align-content: center;
|
|
667
|
+
display: -webkit-box;
|
|
626
668
|
display: -ms-flexbox;
|
|
627
669
|
display: flex;
|
|
628
|
-
-
|
|
629
|
-
|
|
670
|
+
-webkit-box-orient: vertical;
|
|
671
|
+
-webkit-box-direction: normal;
|
|
672
|
+
-ms-flex-direction: column;
|
|
673
|
+
flex-direction: column;
|
|
630
674
|
font-family: "Segoe UI", "GeezaPro", "DejaVu Serif", sans-serif, "-apple-system", "BlinkMacSystemFont";
|
|
631
675
|
font-size: 13px;
|
|
632
676
|
font-weight: 600;
|
|
633
677
|
height: 30px;
|
|
634
|
-
-
|
|
635
|
-
|
|
678
|
+
-webkit-box-pack: center;
|
|
679
|
+
-ms-flex-pack: center;
|
|
680
|
+
justify-content: center;
|
|
636
681
|
padding: 0 0 0 12px;
|
|
637
682
|
}
|
|
638
683
|
.e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content .e-editable-wrapper {
|
|
684
|
+
display: -webkit-box;
|
|
639
685
|
display: -ms-flexbox;
|
|
640
686
|
display: flex;
|
|
641
687
|
padding: 12px;
|
|
@@ -648,6 +694,7 @@
|
|
|
648
694
|
top: auto;
|
|
649
695
|
}
|
|
650
696
|
.e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content .e-editable-container {
|
|
697
|
+
display: -webkit-box;
|
|
651
698
|
display: -ms-flexbox;
|
|
652
699
|
display: flex;
|
|
653
700
|
padding: 12px;
|
|
@@ -689,7 +736,6 @@
|
|
|
689
736
|
min-height: 70px;
|
|
690
737
|
}
|
|
691
738
|
|
|
692
|
-
/*! inplaceeditor theme */
|
|
693
739
|
.e-inplaceeditor .e-editable-value-wrapper .e-editable-value {
|
|
694
740
|
border-bottom: 1px dashed #fff;
|
|
695
741
|
color: #fff;
|
|
@@ -746,7 +792,8 @@
|
|
|
746
792
|
.e-inplaceeditor .e-editable-action-buttons .e-btn-cancel.e-icon-btn,
|
|
747
793
|
.e-inplaceeditor-tip .e-editable-action-buttons .e-btn-save.e-icon-btn,
|
|
748
794
|
.e-inplaceeditor-tip .e-editable-action-buttons .e-btn-cancel.e-icon-btn {
|
|
749
|
-
box-shadow: none;
|
|
795
|
+
-webkit-box-shadow: none;
|
|
796
|
+
box-shadow: none;
|
|
750
797
|
}
|
|
751
798
|
.e-inplaceeditor .e-editable-action-buttons .e-btn-save.e-icon-btn .e-btn-icon.e-icons,
|
|
752
799
|
.e-inplaceeditor .e-editable-action-buttons .e-btn-cancel.e-icon-btn .e-btn-icon.e-icons,
|
|
@@ -756,7 +803,8 @@
|
|
|
756
803
|
}
|
|
757
804
|
.e-inplaceeditor-tip.e-tooltip-wrap.e-popup {
|
|
758
805
|
background: #000;
|
|
759
|
-
box-shadow: none;
|
|
806
|
+
-webkit-box-shadow: none;
|
|
807
|
+
box-shadow: none;
|
|
760
808
|
}
|
|
761
809
|
.e-inplaceeditor-tip.e-tooltip-wrap.e-popup .e-tip-content {
|
|
762
810
|
border-radius: 0;
|
package/styles/highcontrast.scss
CHANGED
|
@@ -1 +1,26 @@
|
|
|
1
|
-
@import '
|
|
1
|
+
@import 'ej2-base/styles/definition/highcontrast.scss';
|
|
2
|
+
@import 'ej2-inputs/styles/input/highcontrast-definition.scss';
|
|
3
|
+
@import 'ej2-inputs/styles/color-picker/highcontrast-definition.scss';
|
|
4
|
+
@import 'ej2-inputs/styles/maskedtextbox/highcontrast-definition.scss';
|
|
5
|
+
@import 'ej2-inputs/styles/numerictextbox/highcontrast-definition.scss';
|
|
6
|
+
@import 'ej2-inputs/styles/slider/highcontrast-definition.scss';
|
|
7
|
+
@import 'ej2-inputs/styles/textbox/highcontrast-definition.scss';
|
|
8
|
+
@import 'ej2-buttons/styles/button/highcontrast-definition.scss';
|
|
9
|
+
@import 'ej2-buttons/styles/check-box/highcontrast-definition.scss';
|
|
10
|
+
@import 'ej2-buttons/styles/radio-button/highcontrast-definition.scss';
|
|
11
|
+
@import 'ej2-calendars/styles/calendar/highcontrast-definition.scss';
|
|
12
|
+
@import 'ej2-calendars/styles/datepicker/highcontrast-definition.scss';
|
|
13
|
+
@import 'ej2-calendars/styles/daterangepicker/highcontrast-definition.scss';
|
|
14
|
+
@import 'ej2-calendars/styles/datetimepicker/highcontrast-definition.scss';
|
|
15
|
+
@import 'ej2-calendars/styles/timepicker/highcontrast-definition.scss';
|
|
16
|
+
@import 'ej2-dropdowns/styles/auto-complete/highcontrast-definition.scss';
|
|
17
|
+
@import 'ej2-dropdowns/styles/combo-box/highcontrast-definition.scss';
|
|
18
|
+
@import 'ej2-dropdowns/styles/drop-down-list/highcontrast-definition.scss';
|
|
19
|
+
@import 'ej2-dropdowns/styles/multi-select/highcontrast-definition.scss';
|
|
20
|
+
@import 'ej2-popups/styles/popup/highcontrast-definition.scss';
|
|
21
|
+
@import 'ej2-popups/styles/spinner/highcontrast-definition.scss';
|
|
22
|
+
@import 'ej2-popups/styles/tooltip/highcontrast-definition.scss';
|
|
23
|
+
@import 'ej2-richtexteditor/styles/rich-text-editor/highcontrast-definition.scss';
|
|
24
|
+
@import 'inplace-editor/highcontrast-definition.scss';
|
|
25
|
+
@import 'inplace-editor/icons/highcontrast.scss';
|
|
26
|
+
@import 'inplace-editor/all.scss';
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
//Layout Variable Start
|
|
2
|
+
$editor-big-value-text-font-size: $text-base !default;
|
|
3
|
+
$editor-nrml-value-text-font-size: $text-sm !default;
|
|
4
|
+
$editor-big-value-container-padding: 7px 12px 7px 12px !default;
|
|
5
|
+
$editor-nrml-value-container-padding: 3px 8px 5px 8px !default;
|
|
6
|
+
$editor-big-value-container-spin-padding: 8px !default;
|
|
7
|
+
$editor-nrml-value-container-spin-padding: 8px !default;
|
|
8
|
+
$editor-big-value-margin: 0 30px 0 0 !default;
|
|
9
|
+
$editor-nrml-value-margin: 0 28px 0 0 !default;
|
|
10
|
+
$editor-rtl-big-value-margin: 0 0 0 30px !default;
|
|
11
|
+
$editor-rtl-nrml-value-margin: 0 0 0 28px !default;
|
|
12
|
+
$editor-big-overlay-icon-size: $text-base !default;
|
|
13
|
+
$editor-nrml-overlay-icon-size: $text-sm !default;
|
|
14
|
+
$editor-big-overlay-icon-container-size: 20px !default;
|
|
15
|
+
$editor-nrml-overlay-icon-container-size: 20px !default;
|
|
16
|
+
$editor-big-overlay-icon-left-right: 8px !default;
|
|
17
|
+
$editor-nrml-overlay-icon-left-right: 8px !default;
|
|
18
|
+
$editor-tip-content-bdr-radius: 4px !default;
|
|
19
|
+
$editor-popup-tip-content-bdr-radius: 4px !default;
|
|
20
|
+
$editor-tip-title-font-weight: $font-weight-medium !default;
|
|
21
|
+
$editor-big-tip-title-font-size: $text-sm !default;
|
|
22
|
+
$editor-nrml-tip-title-font-size: $text-xs !default;
|
|
23
|
+
$editor-big-tip-title-padding: 12px 16px 12px 16px !default;
|
|
24
|
+
$editor-nrml-tip-title-padding: 9px 12px 9px 12px !default;
|
|
25
|
+
$editor-rtl-big-tip-title-padding: 12px 16px 12px 16px !default;
|
|
26
|
+
$editor-rtl-nrml-tip-title-padding: 9px 12px 9px 12px !default;
|
|
27
|
+
$editor-big-tip-title-container-size: 46px !default;
|
|
28
|
+
$editor-nrml-tip-title-container-size: 36px !default;
|
|
29
|
+
$editor-big-tip-wrapper-padding: 16px !default;
|
|
30
|
+
$editor-nrml-tip-wrapper-padding: 12px !default;
|
|
31
|
+
$editor-big-wrapper-title-with-padding: 16px !default;
|
|
32
|
+
$editor-nrml-wrapper-title-with-padding: 12px !default;
|
|
33
|
+
$editor-component-bottom-margin: 4px !default;
|
|
34
|
+
$editor-buttons-top-margin: 4px !default;
|
|
35
|
+
$editor-btn-save-icon-size: 16px !default;
|
|
36
|
+
$editor-btn-cancel-icon-size: 16px !default;
|
|
37
|
+
$editor-big-btn-save-margin: 0 4px 0 0 !default;
|
|
38
|
+
$editor-nrml-btn-save-margin: 0 4px 0 0 !default;
|
|
39
|
+
$editor-big-btn-cancel-margin: 0 0 0 4px !default;
|
|
40
|
+
$editor-nrml-btn-cancel-margin: 0 0 0 4px !default;
|
|
41
|
+
$editor-rtl-big-btn-save-margin: 0 0 0 4px !default;
|
|
42
|
+
$editor-rtl-nrml-btn-save-margin: 0 0 0 4px !default;
|
|
43
|
+
$editor-rtl-big-btn-cancel-margin: 0 4px 0 0 !default;
|
|
44
|
+
$editor-rtl-nrml-btn-cancel-margin: 0 4px 0 0 !default;
|
|
45
|
+
|
|
46
|
+
//Layout Variable End
|
|
47
|
+
|
|
48
|
+
//Theme Variable Start
|
|
49
|
+
$editor-value-hover-bg: $content-bg-color-alt2 !default;
|
|
50
|
+
$editor-value-text-color: $content-text-color !default;
|
|
51
|
+
$editor-overlay-icon-color: $icon-color !default;
|
|
52
|
+
$editor-value-text-border: 1px dashed $content-text-color !default;
|
|
53
|
+
$editor-background-color: $transparent !default;
|
|
54
|
+
$wrapper-background-color: $flyout-bg-color !default;
|
|
55
|
+
$editor-tip-border: 1px solid $border !default;
|
|
56
|
+
$editor-tip-bg: $content-bg-color !default;
|
|
57
|
+
$editor-tip-arrow-icon-color: $content-bg-color-alt1 !default;
|
|
58
|
+
$editor-tip-title-arrow-icon-color: $content-bg-color-alt1 !default;
|
|
59
|
+
$editor-tip-arrow-bdr-color: $content-bg-color-alt1 !default;
|
|
60
|
+
$editor-tip-title-arrow-bdr-color: $border !default;
|
|
61
|
+
$editor-tip-box-shadow: $shadow-lg !default;
|
|
62
|
+
$editor-tip-title-bg: $content-bg-color-alt1 !default;
|
|
63
|
+
$editor-tio-title-border-bottom: 0 !default;
|
|
64
|
+
$editor-tip-title-color: $content-text-color !default;
|
|
65
|
+
$editable-overlay-icon-height: inherit !default;
|
|
66
|
+
$editable-overlay-icon: 0 !default;
|
|
67
|
+
$editor-btn-icon-color: $icon-color !default;
|
|
68
|
+
|
|
69
|
+
//Theme Variable End
|