@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
|
@@ -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
|
}
|
|
@@ -337,6 +366,7 @@
|
|
|
337
366
|
.e-inplaceeditor .e-editable-value-wrapper .e-editable-overlay-icon {
|
|
338
367
|
bottom: 0;
|
|
339
368
|
cursor: pointer;
|
|
369
|
+
display: -webkit-inline-box;
|
|
340
370
|
display: -ms-inline-flexbox;
|
|
341
371
|
display: inline-flex;
|
|
342
372
|
height: inherit;
|
|
@@ -347,8 +377,10 @@
|
|
|
347
377
|
width: 18px;
|
|
348
378
|
}
|
|
349
379
|
.e-inplaceeditor .e-editable-value-wrapper .e-editable-overlay-icon::before {
|
|
350
|
-
-
|
|
351
|
-
align
|
|
380
|
+
-webkit-box-align: center;
|
|
381
|
+
-ms-flex-align: center;
|
|
382
|
+
align-items: center;
|
|
383
|
+
display: -webkit-box;
|
|
352
384
|
display: -ms-flexbox;
|
|
353
385
|
display: flex;
|
|
354
386
|
font-size: 14px;
|
|
@@ -358,6 +390,7 @@
|
|
|
358
390
|
}
|
|
359
391
|
.e-inplaceeditor .e-editable-value-wrapper.e-editable-open {
|
|
360
392
|
-webkit-user-select: none;
|
|
393
|
+
-moz-user-select: none;
|
|
361
394
|
-ms-user-select: none;
|
|
362
395
|
user-select: none;
|
|
363
396
|
}
|
|
@@ -390,6 +423,7 @@
|
|
|
390
423
|
.e-inplaceeditor .e-editable-value-container .e-editable-overlay-icon {
|
|
391
424
|
bottom: 0;
|
|
392
425
|
cursor: pointer;
|
|
426
|
+
display: -webkit-inline-box;
|
|
393
427
|
display: -ms-inline-flexbox;
|
|
394
428
|
display: inline-flex;
|
|
395
429
|
height: inherit;
|
|
@@ -400,8 +434,10 @@
|
|
|
400
434
|
width: 18px;
|
|
401
435
|
}
|
|
402
436
|
.e-inplaceeditor .e-editable-value-container .e-editable-overlay-icon::before {
|
|
403
|
-
-
|
|
404
|
-
align
|
|
437
|
+
-webkit-box-align: center;
|
|
438
|
+
-ms-flex-align: center;
|
|
439
|
+
align-items: center;
|
|
440
|
+
display: -webkit-box;
|
|
405
441
|
display: -ms-flexbox;
|
|
406
442
|
display: flex;
|
|
407
443
|
font-size: 14px;
|
|
@@ -411,6 +447,7 @@
|
|
|
411
447
|
}
|
|
412
448
|
.e-inplaceeditor .e-editable-value-container.e-editable-open {
|
|
413
449
|
-webkit-user-select: none;
|
|
450
|
+
-moz-user-select: none;
|
|
414
451
|
-ms-user-select: none;
|
|
415
452
|
user-select: none;
|
|
416
453
|
}
|
|
@@ -435,6 +472,7 @@
|
|
|
435
472
|
}
|
|
436
473
|
.e-inplaceeditor.e-overlay {
|
|
437
474
|
-webkit-user-select: none;
|
|
475
|
+
-moz-user-select: none;
|
|
438
476
|
-ms-user-select: none;
|
|
439
477
|
user-select: none;
|
|
440
478
|
}
|
|
@@ -500,7 +538,8 @@
|
|
|
500
538
|
.e-inplaceeditor-tip .e-editable-loading.e-show:not(.e-rte-spin-wrap) .e-spinner-inner {
|
|
501
539
|
left: auto;
|
|
502
540
|
right: 5px;
|
|
503
|
-
transform: translateX(-30%) translateY(-50%);
|
|
541
|
+
-webkit-transform: translateX(-30%) translateY(-50%);
|
|
542
|
+
transform: translateX(-30%) translateY(-50%);
|
|
504
543
|
}
|
|
505
544
|
.e-inplaceeditor .e-editable-form,
|
|
506
545
|
.e-inplaceeditor-tip .e-editable-form {
|
|
@@ -528,6 +567,7 @@
|
|
|
528
567
|
opacity: 0.5;
|
|
529
568
|
pointer-events: none;
|
|
530
569
|
-webkit-user-select: none;
|
|
570
|
+
-moz-user-select: none;
|
|
531
571
|
-ms-user-select: none;
|
|
532
572
|
user-select: none;
|
|
533
573
|
visibility: visible;
|
|
@@ -564,7 +604,8 @@
|
|
|
564
604
|
.e-inplaceeditor-tip.e-rtl .e-editable-loading.e-show:not(.e-rte-spin-wrap) .e-spinner-inner {
|
|
565
605
|
left: 5px;
|
|
566
606
|
right: auto;
|
|
567
|
-
transform: translateX(30%) translateY(-50%);
|
|
607
|
+
-webkit-transform: translateX(30%) translateY(-50%);
|
|
608
|
+
transform: translateX(30%) translateY(-50%);
|
|
568
609
|
}
|
|
569
610
|
|
|
570
611
|
.e-bigger .e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content,
|
|
@@ -616,19 +657,24 @@
|
|
|
616
657
|
.e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content .e-editable-title {
|
|
617
658
|
-ms-flex-line-pack: center;
|
|
618
659
|
align-content: center;
|
|
660
|
+
display: -webkit-box;
|
|
619
661
|
display: -ms-flexbox;
|
|
620
662
|
display: flex;
|
|
621
|
-
-
|
|
622
|
-
|
|
663
|
+
-webkit-box-orient: vertical;
|
|
664
|
+
-webkit-box-direction: normal;
|
|
665
|
+
-ms-flex-direction: column;
|
|
666
|
+
flex-direction: column;
|
|
623
667
|
font-family: "Segoe UI", "GeezaPro", "DejaVu Serif", sans-serif, "-apple-system", "BlinkMacSystemFont";
|
|
624
668
|
font-size: 13px;
|
|
625
669
|
font-weight: 600;
|
|
626
670
|
height: 30px;
|
|
627
|
-
-
|
|
628
|
-
|
|
671
|
+
-webkit-box-pack: center;
|
|
672
|
+
-ms-flex-pack: center;
|
|
673
|
+
justify-content: center;
|
|
629
674
|
padding: 0 0 0 12px;
|
|
630
675
|
}
|
|
631
676
|
.e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content .e-editable-wrapper {
|
|
677
|
+
display: -webkit-box;
|
|
632
678
|
display: -ms-flexbox;
|
|
633
679
|
display: flex;
|
|
634
680
|
padding: 12px;
|
|
@@ -641,6 +687,7 @@
|
|
|
641
687
|
top: auto;
|
|
642
688
|
}
|
|
643
689
|
.e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content .e-editable-container {
|
|
690
|
+
display: -webkit-box;
|
|
644
691
|
display: -ms-flexbox;
|
|
645
692
|
display: flex;
|
|
646
693
|
padding: 12px;
|
|
@@ -739,7 +786,8 @@
|
|
|
739
786
|
.e-inplaceeditor .e-editable-action-buttons .e-btn-cancel.e-icon-btn,
|
|
740
787
|
.e-inplaceeditor-tip .e-editable-action-buttons .e-btn-save.e-icon-btn,
|
|
741
788
|
.e-inplaceeditor-tip .e-editable-action-buttons .e-btn-cancel.e-icon-btn {
|
|
742
|
-
box-shadow: none;
|
|
789
|
+
-webkit-box-shadow: none;
|
|
790
|
+
box-shadow: none;
|
|
743
791
|
}
|
|
744
792
|
.e-inplaceeditor .e-editable-action-buttons .e-btn-save.e-icon-btn .e-btn-icon.e-icons,
|
|
745
793
|
.e-inplaceeditor .e-editable-action-buttons .e-btn-cancel.e-icon-btn .e-btn-icon.e-icons,
|
|
@@ -749,7 +797,8 @@
|
|
|
749
797
|
}
|
|
750
798
|
.e-inplaceeditor-tip.e-tooltip-wrap.e-popup {
|
|
751
799
|
background: #fff;
|
|
752
|
-
box-shadow: none;
|
|
800
|
+
-webkit-box-shadow: none;
|
|
801
|
+
box-shadow: none;
|
|
753
802
|
}
|
|
754
803
|
.e-inplaceeditor-tip.e-tooltip-wrap.e-popup .e-tip-content {
|
|
755
804
|
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
|
}
|
|
@@ -344,6 +374,7 @@
|
|
|
344
374
|
.e-inplaceeditor .e-editable-value-wrapper .e-editable-overlay-icon {
|
|
345
375
|
bottom: 0;
|
|
346
376
|
cursor: pointer;
|
|
377
|
+
display: -webkit-inline-box;
|
|
347
378
|
display: -ms-inline-flexbox;
|
|
348
379
|
display: inline-flex;
|
|
349
380
|
height: inherit;
|
|
@@ -354,8 +385,10 @@
|
|
|
354
385
|
width: 18px;
|
|
355
386
|
}
|
|
356
387
|
.e-inplaceeditor .e-editable-value-wrapper .e-editable-overlay-icon::before {
|
|
357
|
-
-
|
|
358
|
-
align
|
|
388
|
+
-webkit-box-align: center;
|
|
389
|
+
-ms-flex-align: center;
|
|
390
|
+
align-items: center;
|
|
391
|
+
display: -webkit-box;
|
|
359
392
|
display: -ms-flexbox;
|
|
360
393
|
display: flex;
|
|
361
394
|
font-size: 14px;
|
|
@@ -365,6 +398,7 @@
|
|
|
365
398
|
}
|
|
366
399
|
.e-inplaceeditor .e-editable-value-wrapper.e-editable-open {
|
|
367
400
|
-webkit-user-select: none;
|
|
401
|
+
-moz-user-select: none;
|
|
368
402
|
-ms-user-select: none;
|
|
369
403
|
user-select: none;
|
|
370
404
|
}
|
|
@@ -397,6 +431,7 @@
|
|
|
397
431
|
.e-inplaceeditor .e-editable-value-container .e-editable-overlay-icon {
|
|
398
432
|
bottom: 0;
|
|
399
433
|
cursor: pointer;
|
|
434
|
+
display: -webkit-inline-box;
|
|
400
435
|
display: -ms-inline-flexbox;
|
|
401
436
|
display: inline-flex;
|
|
402
437
|
height: inherit;
|
|
@@ -407,8 +442,10 @@
|
|
|
407
442
|
width: 18px;
|
|
408
443
|
}
|
|
409
444
|
.e-inplaceeditor .e-editable-value-container .e-editable-overlay-icon::before {
|
|
410
|
-
-
|
|
411
|
-
align
|
|
445
|
+
-webkit-box-align: center;
|
|
446
|
+
-ms-flex-align: center;
|
|
447
|
+
align-items: center;
|
|
448
|
+
display: -webkit-box;
|
|
412
449
|
display: -ms-flexbox;
|
|
413
450
|
display: flex;
|
|
414
451
|
font-size: 14px;
|
|
@@ -418,6 +455,7 @@
|
|
|
418
455
|
}
|
|
419
456
|
.e-inplaceeditor .e-editable-value-container.e-editable-open {
|
|
420
457
|
-webkit-user-select: none;
|
|
458
|
+
-moz-user-select: none;
|
|
421
459
|
-ms-user-select: none;
|
|
422
460
|
user-select: none;
|
|
423
461
|
}
|
|
@@ -442,6 +480,7 @@
|
|
|
442
480
|
}
|
|
443
481
|
.e-inplaceeditor.e-overlay {
|
|
444
482
|
-webkit-user-select: none;
|
|
483
|
+
-moz-user-select: none;
|
|
445
484
|
-ms-user-select: none;
|
|
446
485
|
user-select: none;
|
|
447
486
|
}
|
|
@@ -507,7 +546,8 @@
|
|
|
507
546
|
.e-inplaceeditor-tip .e-editable-loading.e-show:not(.e-rte-spin-wrap) .e-spinner-inner {
|
|
508
547
|
left: auto;
|
|
509
548
|
right: 5px;
|
|
510
|
-
transform: translateX(-30%) translateY(-50%);
|
|
549
|
+
-webkit-transform: translateX(-30%) translateY(-50%);
|
|
550
|
+
transform: translateX(-30%) translateY(-50%);
|
|
511
551
|
}
|
|
512
552
|
.e-inplaceeditor .e-editable-form,
|
|
513
553
|
.e-inplaceeditor-tip .e-editable-form {
|
|
@@ -535,6 +575,7 @@
|
|
|
535
575
|
opacity: 0.5;
|
|
536
576
|
pointer-events: none;
|
|
537
577
|
-webkit-user-select: none;
|
|
578
|
+
-moz-user-select: none;
|
|
538
579
|
-ms-user-select: none;
|
|
539
580
|
user-select: none;
|
|
540
581
|
visibility: visible;
|
|
@@ -571,7 +612,8 @@
|
|
|
571
612
|
.e-inplaceeditor-tip.e-rtl .e-editable-loading.e-show:not(.e-rte-spin-wrap) .e-spinner-inner {
|
|
572
613
|
left: 5px;
|
|
573
614
|
right: auto;
|
|
574
|
-
transform: translateX(30%) translateY(-50%);
|
|
615
|
+
-webkit-transform: translateX(30%) translateY(-50%);
|
|
616
|
+
transform: translateX(30%) translateY(-50%);
|
|
575
617
|
}
|
|
576
618
|
|
|
577
619
|
.e-bigger .e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content,
|
|
@@ -623,19 +665,24 @@
|
|
|
623
665
|
.e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content .e-editable-title {
|
|
624
666
|
-ms-flex-line-pack: center;
|
|
625
667
|
align-content: center;
|
|
668
|
+
display: -webkit-box;
|
|
626
669
|
display: -ms-flexbox;
|
|
627
670
|
display: flex;
|
|
628
|
-
-
|
|
629
|
-
|
|
671
|
+
-webkit-box-orient: vertical;
|
|
672
|
+
-webkit-box-direction: normal;
|
|
673
|
+
-ms-flex-direction: column;
|
|
674
|
+
flex-direction: column;
|
|
630
675
|
font-family: "Segoe UI", "GeezaPro", "DejaVu Serif", sans-serif, "-apple-system", "BlinkMacSystemFont";
|
|
631
676
|
font-size: 13px;
|
|
632
677
|
font-weight: 600;
|
|
633
678
|
height: 30px;
|
|
634
|
-
-
|
|
635
|
-
|
|
679
|
+
-webkit-box-pack: center;
|
|
680
|
+
-ms-flex-pack: center;
|
|
681
|
+
justify-content: center;
|
|
636
682
|
padding: 0 0 0 12px;
|
|
637
683
|
}
|
|
638
684
|
.e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content .e-editable-wrapper {
|
|
685
|
+
display: -webkit-box;
|
|
639
686
|
display: -ms-flexbox;
|
|
640
687
|
display: flex;
|
|
641
688
|
padding: 12px;
|
|
@@ -648,6 +695,7 @@
|
|
|
648
695
|
top: auto;
|
|
649
696
|
}
|
|
650
697
|
.e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content .e-editable-container {
|
|
698
|
+
display: -webkit-box;
|
|
651
699
|
display: -ms-flexbox;
|
|
652
700
|
display: flex;
|
|
653
701
|
padding: 12px;
|
|
@@ -746,7 +794,8 @@
|
|
|
746
794
|
.e-inplaceeditor .e-editable-action-buttons .e-btn-cancel.e-icon-btn,
|
|
747
795
|
.e-inplaceeditor-tip .e-editable-action-buttons .e-btn-save.e-icon-btn,
|
|
748
796
|
.e-inplaceeditor-tip .e-editable-action-buttons .e-btn-cancel.e-icon-btn {
|
|
749
|
-
box-shadow: none;
|
|
797
|
+
-webkit-box-shadow: none;
|
|
798
|
+
box-shadow: none;
|
|
750
799
|
}
|
|
751
800
|
.e-inplaceeditor .e-editable-action-buttons .e-btn-save.e-icon-btn .e-btn-icon.e-icons,
|
|
752
801
|
.e-inplaceeditor .e-editable-action-buttons .e-btn-cancel.e-icon-btn .e-btn-icon.e-icons,
|
|
@@ -756,7 +805,8 @@
|
|
|
756
805
|
}
|
|
757
806
|
.e-inplaceeditor-tip.e-tooltip-wrap.e-popup {
|
|
758
807
|
background: #000;
|
|
759
|
-
box-shadow: none;
|
|
808
|
+
-webkit-box-shadow: none;
|
|
809
|
+
box-shadow: none;
|
|
760
810
|
}
|
|
761
811
|
.e-inplaceeditor-tip.e-tooltip-wrap.e-popup .e-tip-content {
|
|
762
812
|
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
|
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
//Layout Variable Start
|
|
2
|
+
$skin-name: 'fluent2' !default;
|
|
3
|
+
$editor-big-value-text-font-size: $text-base !default;
|
|
4
|
+
$editor-nrml-value-text-font-size: $text-sm !default;
|
|
5
|
+
$editor-big-value-container-padding: 7px 12px 7px 12px !default;
|
|
6
|
+
$editor-nrml-value-container-padding: 3px 8px 5px 8px !default;
|
|
7
|
+
$editor-big-value-container-spin-padding: 8px !default;
|
|
8
|
+
$editor-nrml-value-container-spin-padding: 8px !default;
|
|
9
|
+
$editor-big-value-margin: 0 30px 0 0 !default;
|
|
10
|
+
$editor-nrml-value-margin: 0 28px 0 0 !default;
|
|
11
|
+
$editor-rtl-big-value-margin: 0 0 0 30px !default;
|
|
12
|
+
$editor-rtl-nrml-value-margin: 0 0 0 28px !default;
|
|
13
|
+
$editor-big-overlay-icon-size: $text-base !default;
|
|
14
|
+
$editor-nrml-overlay-icon-size: $text-sm !default;
|
|
15
|
+
$editor-big-overlay-icon-container-size: 20px !default;
|
|
16
|
+
$editor-nrml-overlay-icon-container-size: 20px !default;
|
|
17
|
+
$editor-big-overlay-icon-left-right: 8px !default;
|
|
18
|
+
$editor-nrml-overlay-icon-left-right: 8px !default;
|
|
19
|
+
$editor-tip-content-bdr-radius: 4px !default;
|
|
20
|
+
$editor-popup-tip-content-bdr-radius: 4px !default;
|
|
21
|
+
$editor-tip-title-font-weight: 500 !default;
|
|
22
|
+
$editor-big-tip-title-font-size: $text-sm !default;
|
|
23
|
+
$editor-nrml-tip-title-font-size: $text-xs !default;
|
|
24
|
+
$editor-big-tip-title-padding: 7px 16px 7px 16px !default;
|
|
25
|
+
$editor-nrml-tip-title-padding: 6px 12px 6px 12px !default;
|
|
26
|
+
$editor-rtl-big-tip-title-padding: 7px 16px 7px 16px !default;
|
|
27
|
+
$editor-rtl-nrml-tip-title-padding: 6px 12px 6px 12px !default;
|
|
28
|
+
$editor-big-tip-title-container-size: 36px !default;
|
|
29
|
+
$editor-nrml-tip-title-container-size: 30px !default;
|
|
30
|
+
$editor-big-tip-wrapper-padding: 16px !default;
|
|
31
|
+
$editor-nrml-tip-wrapper-padding: 12px !default;
|
|
32
|
+
$editor-big-wrapper-title-with-padding: 16px !default;
|
|
33
|
+
$editor-nrml-wrapper-title-with-padding: 12px !default;
|
|
34
|
+
$editor-component-bottom-margin: 4px !default;
|
|
35
|
+
$editor-buttons-top-margin: 4px !default;
|
|
36
|
+
$editor-btn-save-icon-size: 16px !default;
|
|
37
|
+
$editor-btn-cancel-icon-size: 16px !default;
|
|
38
|
+
$editor-big-btn-save-margin: 0 4px 0 0 !default;
|
|
39
|
+
$editor-nrml-btn-save-margin: 0 4px 0 0 !default;
|
|
40
|
+
$editor-big-btn-cancel-margin: 0 0 0 4px !default;
|
|
41
|
+
$editor-nrml-btn-cancel-margin: 0 0 0 4px !default;
|
|
42
|
+
$editor-rtl-big-btn-save-margin: 0 0 0 4px !default;
|
|
43
|
+
$editor-rtl-nrml-btn-save-margin: 0 0 0 4px !default;
|
|
44
|
+
$editor-rtl-big-btn-cancel-margin: 0 4px 0 0 !default;
|
|
45
|
+
$editor-rtl-nrml-btn-cancel-margin: 0 4px 0 0 !default;
|
|
46
|
+
|
|
47
|
+
//Layout Variable End
|
|
48
|
+
|
|
49
|
+
//Theme Variable Start
|
|
50
|
+
$editor-value-hover-bg: $content-bg-color-alt2 !default;
|
|
51
|
+
$content-text-color: $content-text-color !default;
|
|
52
|
+
$editor-value-text-color: $content-text-color !default;
|
|
53
|
+
$editor-overlay-icon-color: $icon-color !default;
|
|
54
|
+
$editor-value-text-border: 1px dashed $content-text-color !default;
|
|
55
|
+
$editor-background-color: $transparent !default;
|
|
56
|
+
$wrapper-background-color: $flyout-bg-color !default;
|
|
57
|
+
$editor-tip-border: 1px solid $border-light !default;
|
|
58
|
+
$editor-tip-bg: $flyout-bg-color !default;
|
|
59
|
+
$editor-tip-arrow-icon-color: $flyout-bg-color !default;
|
|
60
|
+
$editor-tip-title-arrow-icon-color: $content-bg-color-alt2 !default;
|
|
61
|
+
$editor-tip-arrow-bdr-color: $content-bg-color-alt2 !default;
|
|
62
|
+
$editor-tip-title-arrow-bdr-color: $content-bg-color-alt2 !default;
|
|
63
|
+
$editor-tip-box-shadow: $shadow-lg !default;
|
|
64
|
+
$editor-tip-title-bg: transparent !default;
|
|
65
|
+
$editor-tio-title-border-bottom: 0 !default;
|
|
66
|
+
$editor-tip-title-color: $content-text-color !default;
|
|
67
|
+
$editable-overlay-icon-height: inherit !default;
|
|
68
|
+
$editable-overlay-icon: 0 !default;
|
|
69
|
+
$editor-btn-icon-color: $icon-color !default;
|
|
70
|
+
|
|
71
|
+
//Theme Variable End
|
|
@@ -248,9 +248,14 @@
|
|
|
248
248
|
}
|
|
249
249
|
|
|
250
250
|
.e-editable-title {
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
251
|
+
@if $skin-name != 'fluent2' {
|
|
252
|
+
background: $editor-tip-title-bg;
|
|
253
|
+
border-bottom: $editor-tio-title-border-bottom;
|
|
254
|
+
color: $editor-tip-title-color;
|
|
255
|
+
}
|
|
256
|
+
@else {
|
|
257
|
+
color: $editor-tip-title-color;
|
|
258
|
+
}
|
|
254
259
|
}
|
|
255
260
|
}
|
|
256
261
|
|