@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
|
@@ -44,7 +44,7 @@
|
|
|
44
44
|
--color-sf-on-warning: 99, 52, 0;
|
|
45
45
|
--color-sf-on-warning-container: 255, 220, 193;
|
|
46
46
|
--color-sf-spreadsheet-gridline: 231, 224, 236;
|
|
47
|
-
--color-sf-shadow-focus-ring1: 0 0 0 1px #
|
|
47
|
+
--color-sf-shadow-focus-ring1: 0 0 0 1px #000, 0 0 0 3px #fff;
|
|
48
48
|
--color-sf-success-text: 0, 0, 0;
|
|
49
49
|
--color-sf-warning-text: 0, 0, 0;
|
|
50
50
|
--color-sf-info-text: 0, 0, 0;
|
|
@@ -54,29 +54,57 @@
|
|
|
54
54
|
}
|
|
55
55
|
|
|
56
56
|
/* stylelint-disable property-no-vendor-prefix */
|
|
57
|
+
@-webkit-keyframes e-input-ripple {
|
|
58
|
+
100% {
|
|
59
|
+
opacity: 0;
|
|
60
|
+
-webkit-transform: scale(4);
|
|
61
|
+
transform: scale(4);
|
|
62
|
+
}
|
|
63
|
+
}
|
|
57
64
|
@keyframes e-input-ripple {
|
|
58
65
|
100% {
|
|
59
66
|
opacity: 0;
|
|
60
|
-
transform: scale(4);
|
|
67
|
+
-webkit-transform: scale(4);
|
|
68
|
+
transform: scale(4);
|
|
69
|
+
}
|
|
70
|
+
}
|
|
71
|
+
@-webkit-keyframes slideTopUp {
|
|
72
|
+
from {
|
|
73
|
+
-webkit-transform: translate3d(0, 0, 0) scale(1);
|
|
74
|
+
transform: translate3d(0, 0, 0) scale(1);
|
|
75
|
+
}
|
|
76
|
+
to {
|
|
77
|
+
-webkit-transform: translate3d(0, 0, 0) scale(1);
|
|
78
|
+
transform: translate3d(0, 0, 0) scale(1);
|
|
61
79
|
}
|
|
62
80
|
}
|
|
63
81
|
@keyframes slideTopUp {
|
|
64
82
|
from {
|
|
65
|
-
transform: translate3d(0, 0, 0) scale(1);
|
|
83
|
+
-webkit-transform: translate3d(0, 0, 0) scale(1);
|
|
84
|
+
transform: translate3d(0, 0, 0) scale(1);
|
|
66
85
|
}
|
|
67
86
|
to {
|
|
68
|
-
transform: translate3d(0, 0, 0) scale(1);
|
|
87
|
+
-webkit-transform: translate3d(0, 0, 0) scale(1);
|
|
88
|
+
transform: translate3d(0, 0, 0) scale(1);
|
|
69
89
|
}
|
|
70
90
|
}
|
|
71
|
-
/* stylelint-disable-line no-empty-source */
|
|
91
|
+
/* stylelint-disable-line no-empty-source */
|
|
72
92
|
.e-ddl.e-control-wrapper .e-ddl-icon::before {
|
|
73
|
-
transform: rotate(0deg);
|
|
93
|
+
-webkit-transform: rotate(0deg);
|
|
94
|
+
transform: rotate(0deg);
|
|
95
|
+
-webkit-transition: -webkit-transform 300ms ease;
|
|
96
|
+
transition: -webkit-transform 300ms ease;
|
|
74
97
|
transition: transform 300ms ease;
|
|
98
|
+
transition: transform 300ms ease, -webkit-transform 300ms ease;
|
|
75
99
|
}
|
|
76
100
|
|
|
77
101
|
.e-ddl.e-control-wrapper.e-icon-anim .e-ddl-icon::before {
|
|
78
|
-
transform: rotate(180deg);
|
|
102
|
+
-webkit-transform: rotate(180deg);
|
|
103
|
+
transform: rotate(180deg);
|
|
104
|
+
-webkit-transition: -webkit-transform 300ms ease;
|
|
105
|
+
transition: -webkit-transform 300ms ease;
|
|
79
106
|
transition: transform 300ms ease;
|
|
107
|
+
transition: transform 300ms ease, -webkit-transform 300ms ease;
|
|
80
108
|
}
|
|
81
109
|
|
|
82
110
|
.e-dropdownbase .e-list-item.e-active.e-hover {
|
|
@@ -93,12 +121,14 @@
|
|
|
93
121
|
}
|
|
94
122
|
|
|
95
123
|
.e-input-group .e-ddl-icon:not(:active)::after {
|
|
96
|
-
animation: none;
|
|
124
|
+
-webkit-animation: none;
|
|
125
|
+
animation: none;
|
|
97
126
|
}
|
|
98
127
|
|
|
99
128
|
.e-ddl.e-popup {
|
|
100
129
|
border: 0;
|
|
101
|
-
box-shadow: 0 2px 6px 2px rgba(0, 0, 0, 0.15), 0 1px 2px 0 rgba(0, 0, 0, 0.3);
|
|
130
|
+
-webkit-box-shadow: 0 2px 6px 2px rgba(0, 0, 0, 0.15), 0 1px 2px 0 rgba(0, 0, 0, 0.3);
|
|
131
|
+
box-shadow: 0 2px 6px 2px rgba(0, 0, 0, 0.15), 0 1px 2px 0 rgba(0, 0, 0, 0.3);
|
|
102
132
|
margin-top: 2px;
|
|
103
133
|
}
|
|
104
134
|
|
|
@@ -119,7 +149,8 @@
|
|
|
119
149
|
.e-bigger .e-ddl-device .e-input-group.e-input-focus:not(.e-success):not(.e-warning):not(.e-error) {
|
|
120
150
|
background: rgba(0, 0, 0, 0.0001);
|
|
121
151
|
border-width: 0;
|
|
122
|
-
box-shadow: none;
|
|
152
|
+
-webkit-box-shadow: none;
|
|
153
|
+
box-shadow: none;
|
|
123
154
|
margin-bottom: 0;
|
|
124
155
|
}
|
|
125
156
|
|
|
@@ -212,19 +243,43 @@
|
|
|
212
243
|
|
|
213
244
|
/* stylelint-disable-line no-empty-source */
|
|
214
245
|
/* stylelint-disable property-no-vendor-prefix */
|
|
246
|
+
@-webkit-keyframes material-spinner-rotate {
|
|
247
|
+
0% {
|
|
248
|
+
-webkit-transform: rotate(0deg);
|
|
249
|
+
transform: rotate(0deg);
|
|
250
|
+
}
|
|
251
|
+
100% {
|
|
252
|
+
-webkit-transform: rotate(360deg);
|
|
253
|
+
transform: rotate(360deg);
|
|
254
|
+
}
|
|
255
|
+
}
|
|
215
256
|
@keyframes material-spinner-rotate {
|
|
216
257
|
0% {
|
|
258
|
+
-webkit-transform: rotate(0deg);
|
|
259
|
+
transform: rotate(0deg);
|
|
260
|
+
}
|
|
261
|
+
100% {
|
|
262
|
+
-webkit-transform: rotate(360deg);
|
|
263
|
+
transform: rotate(360deg);
|
|
264
|
+
}
|
|
265
|
+
}
|
|
266
|
+
@-webkit-keyframes fabric-spinner-rotate {
|
|
267
|
+
0% {
|
|
268
|
+
-webkit-transform: rotate(0deg);
|
|
217
269
|
transform: rotate(0deg);
|
|
218
270
|
}
|
|
219
271
|
100% {
|
|
272
|
+
-webkit-transform: rotate(360deg);
|
|
220
273
|
transform: rotate(360deg);
|
|
221
274
|
}
|
|
222
275
|
}
|
|
223
276
|
@keyframes fabric-spinner-rotate {
|
|
224
277
|
0% {
|
|
278
|
+
-webkit-transform: rotate(0deg);
|
|
225
279
|
transform: rotate(0deg);
|
|
226
280
|
}
|
|
227
281
|
100% {
|
|
282
|
+
-webkit-transform: rotate(360deg);
|
|
228
283
|
transform: rotate(360deg);
|
|
229
284
|
}
|
|
230
285
|
}
|
|
@@ -242,7 +297,6 @@
|
|
|
242
297
|
content: "\e730";
|
|
243
298
|
}
|
|
244
299
|
|
|
245
|
-
/*! inplaceeditor layout */
|
|
246
300
|
.e-bigger .e-inplaceeditor .e-editable-value-wrapper,
|
|
247
301
|
.e-inplaceeditor.e-bigger .e-editable-value-wrapper {
|
|
248
302
|
padding: 8px 36px 8px 16px;
|
|
@@ -363,6 +417,7 @@
|
|
|
363
417
|
.e-inplaceeditor .e-editable-value-wrapper .e-editable-overlay-icon {
|
|
364
418
|
bottom: 0;
|
|
365
419
|
cursor: pointer;
|
|
420
|
+
display: -webkit-inline-box;
|
|
366
421
|
display: -ms-inline-flexbox;
|
|
367
422
|
display: inline-flex;
|
|
368
423
|
height: inherit;
|
|
@@ -373,8 +428,10 @@
|
|
|
373
428
|
width: 20px;
|
|
374
429
|
}
|
|
375
430
|
.e-inplaceeditor .e-editable-value-wrapper .e-editable-overlay-icon::before {
|
|
376
|
-
-
|
|
377
|
-
align
|
|
431
|
+
-webkit-box-align: center;
|
|
432
|
+
-ms-flex-align: center;
|
|
433
|
+
align-items: center;
|
|
434
|
+
display: -webkit-box;
|
|
378
435
|
display: -ms-flexbox;
|
|
379
436
|
display: flex;
|
|
380
437
|
font-size: 14px;
|
|
@@ -384,6 +441,7 @@
|
|
|
384
441
|
}
|
|
385
442
|
.e-inplaceeditor .e-editable-value-wrapper.e-editable-open {
|
|
386
443
|
-webkit-user-select: none;
|
|
444
|
+
-moz-user-select: none;
|
|
387
445
|
-ms-user-select: none;
|
|
388
446
|
user-select: none;
|
|
389
447
|
}
|
|
@@ -416,6 +474,7 @@
|
|
|
416
474
|
.e-inplaceeditor .e-editable-value-container .e-editable-overlay-icon {
|
|
417
475
|
bottom: 0;
|
|
418
476
|
cursor: pointer;
|
|
477
|
+
display: -webkit-inline-box;
|
|
419
478
|
display: -ms-inline-flexbox;
|
|
420
479
|
display: inline-flex;
|
|
421
480
|
height: inherit;
|
|
@@ -426,8 +485,10 @@
|
|
|
426
485
|
width: 20px;
|
|
427
486
|
}
|
|
428
487
|
.e-inplaceeditor .e-editable-value-container .e-editable-overlay-icon::before {
|
|
429
|
-
-
|
|
430
|
-
align
|
|
488
|
+
-webkit-box-align: center;
|
|
489
|
+
-ms-flex-align: center;
|
|
490
|
+
align-items: center;
|
|
491
|
+
display: -webkit-box;
|
|
431
492
|
display: -ms-flexbox;
|
|
432
493
|
display: flex;
|
|
433
494
|
font-size: 14px;
|
|
@@ -437,6 +498,7 @@
|
|
|
437
498
|
}
|
|
438
499
|
.e-inplaceeditor .e-editable-value-container.e-editable-open {
|
|
439
500
|
-webkit-user-select: none;
|
|
501
|
+
-moz-user-select: none;
|
|
440
502
|
-ms-user-select: none;
|
|
441
503
|
user-select: none;
|
|
442
504
|
}
|
|
@@ -461,6 +523,7 @@
|
|
|
461
523
|
}
|
|
462
524
|
.e-inplaceeditor.e-overlay {
|
|
463
525
|
-webkit-user-select: none;
|
|
526
|
+
-moz-user-select: none;
|
|
464
527
|
-ms-user-select: none;
|
|
465
528
|
user-select: none;
|
|
466
529
|
}
|
|
@@ -526,7 +589,8 @@
|
|
|
526
589
|
.e-inplaceeditor-tip .e-editable-loading.e-show:not(.e-rte-spin-wrap) .e-spinner-inner {
|
|
527
590
|
left: auto;
|
|
528
591
|
right: 5px;
|
|
529
|
-
transform: translateX(-30%) translateY(-50%);
|
|
592
|
+
-webkit-transform: translateX(-30%) translateY(-50%);
|
|
593
|
+
transform: translateX(-30%) translateY(-50%);
|
|
530
594
|
}
|
|
531
595
|
.e-inplaceeditor .e-editable-form,
|
|
532
596
|
.e-inplaceeditor-tip .e-editable-form {
|
|
@@ -554,6 +618,7 @@
|
|
|
554
618
|
opacity: 0.5;
|
|
555
619
|
pointer-events: none;
|
|
556
620
|
-webkit-user-select: none;
|
|
621
|
+
-moz-user-select: none;
|
|
557
622
|
-ms-user-select: none;
|
|
558
623
|
user-select: none;
|
|
559
624
|
visibility: visible;
|
|
@@ -590,7 +655,8 @@
|
|
|
590
655
|
.e-inplaceeditor-tip.e-rtl .e-editable-loading.e-show:not(.e-rte-spin-wrap) .e-spinner-inner {
|
|
591
656
|
left: 5px;
|
|
592
657
|
right: auto;
|
|
593
|
-
transform: translateX(30%) translateY(-50%);
|
|
658
|
+
-webkit-transform: translateX(30%) translateY(-50%);
|
|
659
|
+
transform: translateX(30%) translateY(-50%);
|
|
594
660
|
}
|
|
595
661
|
|
|
596
662
|
.e-bigger .e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content,
|
|
@@ -642,19 +708,24 @@
|
|
|
642
708
|
.e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content .e-editable-title {
|
|
643
709
|
-ms-flex-line-pack: center;
|
|
644
710
|
align-content: center;
|
|
711
|
+
display: -webkit-box;
|
|
645
712
|
display: -ms-flexbox;
|
|
646
713
|
display: flex;
|
|
647
|
-
-
|
|
648
|
-
|
|
714
|
+
-webkit-box-orient: vertical;
|
|
715
|
+
-webkit-box-direction: normal;
|
|
716
|
+
-ms-flex-direction: column;
|
|
717
|
+
flex-direction: column;
|
|
649
718
|
font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", sans-serif;
|
|
650
719
|
font-size: 16px;
|
|
651
720
|
font-weight: 400;
|
|
652
721
|
height: 24px;
|
|
653
|
-
-
|
|
654
|
-
|
|
722
|
+
-webkit-box-pack: center;
|
|
723
|
+
-ms-flex-pack: center;
|
|
724
|
+
justify-content: center;
|
|
655
725
|
padding: 20px 20px 12px 20px;
|
|
656
726
|
}
|
|
657
727
|
.e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content .e-editable-wrapper {
|
|
728
|
+
display: -webkit-box;
|
|
658
729
|
display: -ms-flexbox;
|
|
659
730
|
display: flex;
|
|
660
731
|
padding: 20px;
|
|
@@ -667,6 +738,7 @@
|
|
|
667
738
|
top: auto;
|
|
668
739
|
}
|
|
669
740
|
.e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content .e-editable-container {
|
|
741
|
+
display: -webkit-box;
|
|
670
742
|
display: -ms-flexbox;
|
|
671
743
|
display: flex;
|
|
672
744
|
padding: 20px;
|
|
@@ -708,7 +780,6 @@
|
|
|
708
780
|
min-height: 70px;
|
|
709
781
|
}
|
|
710
782
|
|
|
711
|
-
/*! inplaceeditor theme */
|
|
712
783
|
.e-inplaceeditor .e-editable-value-wrapper .e-editable-value {
|
|
713
784
|
border-bottom: 1px solid rgba(var(--color-sf-on-surface));
|
|
714
785
|
color: rgba(var(--color-sf-on-surface));
|
|
@@ -720,6 +791,7 @@
|
|
|
720
791
|
border-bottom: 0;
|
|
721
792
|
}
|
|
722
793
|
.e-inplaceeditor .e-editable-value-wrapper:hover {
|
|
794
|
+
background: -webkit-gradient(linear, left bottom, left top, from(rgba(var(--color-sf-primary), 0.08)), to(rgba(var(--color-sf-primary), 0.08))), rgba(var(--color-sf-surface));
|
|
723
795
|
background: linear-gradient(0deg, rgba(var(--color-sf-primary), 0.08), rgba(var(--color-sf-primary), 0.08)), rgba(var(--color-sf-surface));
|
|
724
796
|
border-radius: 4px;
|
|
725
797
|
}
|
|
@@ -737,6 +809,7 @@
|
|
|
737
809
|
border-bottom: 0;
|
|
738
810
|
}
|
|
739
811
|
.e-inplaceeditor .e-editable-value-container:hover {
|
|
812
|
+
background: -webkit-gradient(linear, left bottom, left top, from(rgba(var(--color-sf-primary), 0.08)), to(rgba(var(--color-sf-primary), 0.08))), rgba(var(--color-sf-surface));
|
|
740
813
|
background: linear-gradient(0deg, rgba(var(--color-sf-primary), 0.08), rgba(var(--color-sf-primary), 0.08)), rgba(var(--color-sf-surface));
|
|
741
814
|
border-radius: 4px;
|
|
742
815
|
}
|
|
@@ -768,13 +841,16 @@
|
|
|
768
841
|
color: rgba(var(--color-sf-on-surface-variant));
|
|
769
842
|
}
|
|
770
843
|
.e-inplaceeditor-tip.e-tooltip-wrap.e-popup {
|
|
844
|
+
background: -webkit-gradient(linear, left bottom, left top, from(rgba(var(--color-sf-primary), 0.11)), to(rgba(var(--color-sf-primary), 0.11))), rgba(var(--color-sf-surface));
|
|
771
845
|
background: linear-gradient(0deg, rgba(var(--color-sf-primary), 0.11), rgba(var(--color-sf-primary), 0.11)), rgba(var(--color-sf-surface));
|
|
772
|
-
box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.3), 0 4px 8px 3px rgba(0, 0, 0, 0.15);
|
|
846
|
+
-webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.3), 0 4px 8px 3px rgba(0, 0, 0, 0.15);
|
|
847
|
+
box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.3), 0 4px 8px 3px rgba(0, 0, 0, 0.15);
|
|
773
848
|
border-radius: 0;
|
|
774
849
|
}
|
|
775
850
|
.e-inplaceeditor-tip.e-tooltip-wrap.e-popup .e-tip-content {
|
|
776
851
|
border-radius: 20px;
|
|
777
852
|
color: rgba(var(--color-sf-on-surface));
|
|
853
|
+
background: -webkit-gradient(linear, left bottom, left top, from(rgba(var(--color-sf-primary), 0.11)), to(rgba(var(--color-sf-primary), 0.11))), rgba(var(--color-sf-surface));
|
|
778
854
|
background: linear-gradient(0deg, rgba(var(--color-sf-primary), 0.11), rgba(var(--color-sf-primary), 0.11)), rgba(var(--color-sf-surface));
|
|
779
855
|
}
|
|
780
856
|
.e-inplaceeditor-tip.e-tooltip-wrap.e-popup .e-arrow-tip-inner {
|
|
@@ -791,6 +867,7 @@
|
|
|
791
867
|
border-radius: 8px;
|
|
792
868
|
}
|
|
793
869
|
.e-inplaceeditor-tip.e-tooltip-wrap.e-popup .e-editable-title {
|
|
870
|
+
background: -webkit-gradient(linear, left bottom, left top, from(rgba(var(--color-sf-primary), 0.11)), to(rgba(var(--color-sf-primary), 0.11))), rgba(var(--color-sf-surface));
|
|
794
871
|
background: linear-gradient(0deg, rgba(var(--color-sf-primary), 0.11), rgba(var(--color-sf-primary), 0.11)), rgba(var(--color-sf-surface));
|
|
795
872
|
border-bottom: 0;
|
|
796
873
|
color: rgba(var(--color-sf-on-surface));
|
|
@@ -100,7 +100,7 @@
|
|
|
100
100
|
--color-sf-on-warning: 99, 52, 0;
|
|
101
101
|
--color-sf-on-warning-container: 255, 220, 193;
|
|
102
102
|
--color-sf-spreadsheet-gridline: 231, 224, 236;
|
|
103
|
-
--color-sf-shadow-focus-ring1: 0 0 0 1px #
|
|
103
|
+
--color-sf-shadow-focus-ring1: 0 0 0 1px #000, 0 0 0 3px #fff;
|
|
104
104
|
--color-sf-success-text: 0, 0, 0;
|
|
105
105
|
--color-sf-warning-text: 0, 0, 0;
|
|
106
106
|
--color-sf-info-text: 0, 0, 0;
|
|
@@ -110,29 +110,57 @@
|
|
|
110
110
|
}
|
|
111
111
|
|
|
112
112
|
/* stylelint-disable property-no-vendor-prefix */
|
|
113
|
+
@-webkit-keyframes e-input-ripple {
|
|
114
|
+
100% {
|
|
115
|
+
opacity: 0;
|
|
116
|
+
-webkit-transform: scale(4);
|
|
117
|
+
transform: scale(4);
|
|
118
|
+
}
|
|
119
|
+
}
|
|
113
120
|
@keyframes e-input-ripple {
|
|
114
121
|
100% {
|
|
115
122
|
opacity: 0;
|
|
116
|
-
transform: scale(4);
|
|
123
|
+
-webkit-transform: scale(4);
|
|
124
|
+
transform: scale(4);
|
|
125
|
+
}
|
|
126
|
+
}
|
|
127
|
+
@-webkit-keyframes slideTopUp {
|
|
128
|
+
from {
|
|
129
|
+
-webkit-transform: translate3d(0, 0, 0) scale(1);
|
|
130
|
+
transform: translate3d(0, 0, 0) scale(1);
|
|
131
|
+
}
|
|
132
|
+
to {
|
|
133
|
+
-webkit-transform: translate3d(0, 0, 0) scale(1);
|
|
134
|
+
transform: translate3d(0, 0, 0) scale(1);
|
|
117
135
|
}
|
|
118
136
|
}
|
|
119
137
|
@keyframes slideTopUp {
|
|
120
138
|
from {
|
|
121
|
-
transform: translate3d(0, 0, 0) scale(1);
|
|
139
|
+
-webkit-transform: translate3d(0, 0, 0) scale(1);
|
|
140
|
+
transform: translate3d(0, 0, 0) scale(1);
|
|
122
141
|
}
|
|
123
142
|
to {
|
|
124
|
-
transform: translate3d(0, 0, 0) scale(1);
|
|
143
|
+
-webkit-transform: translate3d(0, 0, 0) scale(1);
|
|
144
|
+
transform: translate3d(0, 0, 0) scale(1);
|
|
125
145
|
}
|
|
126
146
|
}
|
|
127
|
-
/* stylelint-disable-line no-empty-source */
|
|
147
|
+
/* stylelint-disable-line no-empty-source */
|
|
128
148
|
.e-ddl.e-control-wrapper .e-ddl-icon::before {
|
|
129
|
-
transform: rotate(0deg);
|
|
149
|
+
-webkit-transform: rotate(0deg);
|
|
150
|
+
transform: rotate(0deg);
|
|
151
|
+
-webkit-transition: -webkit-transform 300ms ease;
|
|
152
|
+
transition: -webkit-transform 300ms ease;
|
|
130
153
|
transition: transform 300ms ease;
|
|
154
|
+
transition: transform 300ms ease, -webkit-transform 300ms ease;
|
|
131
155
|
}
|
|
132
156
|
|
|
133
157
|
.e-ddl.e-control-wrapper.e-icon-anim .e-ddl-icon::before {
|
|
134
|
-
transform: rotate(180deg);
|
|
158
|
+
-webkit-transform: rotate(180deg);
|
|
159
|
+
transform: rotate(180deg);
|
|
160
|
+
-webkit-transition: -webkit-transform 300ms ease;
|
|
161
|
+
transition: -webkit-transform 300ms ease;
|
|
135
162
|
transition: transform 300ms ease;
|
|
163
|
+
transition: transform 300ms ease, -webkit-transform 300ms ease;
|
|
136
164
|
}
|
|
137
165
|
|
|
138
166
|
.e-dropdownbase .e-list-item.e-active.e-hover {
|
|
@@ -149,12 +177,14 @@
|
|
|
149
177
|
}
|
|
150
178
|
|
|
151
179
|
.e-input-group .e-ddl-icon:not(:active)::after {
|
|
152
|
-
animation: none;
|
|
180
|
+
-webkit-animation: none;
|
|
181
|
+
animation: none;
|
|
153
182
|
}
|
|
154
183
|
|
|
155
184
|
.e-ddl.e-popup {
|
|
156
185
|
border: 0;
|
|
157
|
-
box-shadow: 0 2px 6px 2px rgba(0, 0, 0, 0.15), 0 1px 2px 0 rgba(0, 0, 0, 0.3);
|
|
186
|
+
-webkit-box-shadow: 0 2px 6px 2px rgba(0, 0, 0, 0.15), 0 1px 2px 0 rgba(0, 0, 0, 0.3);
|
|
187
|
+
box-shadow: 0 2px 6px 2px rgba(0, 0, 0, 0.15), 0 1px 2px 0 rgba(0, 0, 0, 0.3);
|
|
158
188
|
margin-top: 2px;
|
|
159
189
|
}
|
|
160
190
|
|
|
@@ -175,7 +205,8 @@
|
|
|
175
205
|
.e-bigger .e-ddl-device .e-input-group.e-input-focus:not(.e-success):not(.e-warning):not(.e-error) {
|
|
176
206
|
background: rgba(0, 0, 0, 0.0001);
|
|
177
207
|
border-width: 0;
|
|
178
|
-
box-shadow: none;
|
|
208
|
+
-webkit-box-shadow: none;
|
|
209
|
+
box-shadow: none;
|
|
179
210
|
margin-bottom: 0;
|
|
180
211
|
}
|
|
181
212
|
|
|
@@ -268,19 +299,43 @@
|
|
|
268
299
|
|
|
269
300
|
/* stylelint-disable-line no-empty-source */
|
|
270
301
|
/* stylelint-disable property-no-vendor-prefix */
|
|
302
|
+
@-webkit-keyframes material-spinner-rotate {
|
|
303
|
+
0% {
|
|
304
|
+
-webkit-transform: rotate(0deg);
|
|
305
|
+
transform: rotate(0deg);
|
|
306
|
+
}
|
|
307
|
+
100% {
|
|
308
|
+
-webkit-transform: rotate(360deg);
|
|
309
|
+
transform: rotate(360deg);
|
|
310
|
+
}
|
|
311
|
+
}
|
|
271
312
|
@keyframes material-spinner-rotate {
|
|
272
313
|
0% {
|
|
314
|
+
-webkit-transform: rotate(0deg);
|
|
315
|
+
transform: rotate(0deg);
|
|
316
|
+
}
|
|
317
|
+
100% {
|
|
318
|
+
-webkit-transform: rotate(360deg);
|
|
319
|
+
transform: rotate(360deg);
|
|
320
|
+
}
|
|
321
|
+
}
|
|
322
|
+
@-webkit-keyframes fabric-spinner-rotate {
|
|
323
|
+
0% {
|
|
324
|
+
-webkit-transform: rotate(0deg);
|
|
273
325
|
transform: rotate(0deg);
|
|
274
326
|
}
|
|
275
327
|
100% {
|
|
328
|
+
-webkit-transform: rotate(360deg);
|
|
276
329
|
transform: rotate(360deg);
|
|
277
330
|
}
|
|
278
331
|
}
|
|
279
332
|
@keyframes fabric-spinner-rotate {
|
|
280
333
|
0% {
|
|
334
|
+
-webkit-transform: rotate(0deg);
|
|
281
335
|
transform: rotate(0deg);
|
|
282
336
|
}
|
|
283
337
|
100% {
|
|
338
|
+
-webkit-transform: rotate(360deg);
|
|
284
339
|
transform: rotate(360deg);
|
|
285
340
|
}
|
|
286
341
|
}
|
|
@@ -298,7 +353,6 @@
|
|
|
298
353
|
content: "\e730";
|
|
299
354
|
}
|
|
300
355
|
|
|
301
|
-
/*! inplaceeditor layout */
|
|
302
356
|
.e-bigger .e-inplaceeditor .e-editable-value-wrapper,
|
|
303
357
|
.e-inplaceeditor.e-bigger .e-editable-value-wrapper {
|
|
304
358
|
padding: 8px 36px 8px 16px;
|
|
@@ -419,6 +473,7 @@
|
|
|
419
473
|
.e-inplaceeditor .e-editable-value-wrapper .e-editable-overlay-icon {
|
|
420
474
|
bottom: 0;
|
|
421
475
|
cursor: pointer;
|
|
476
|
+
display: -webkit-inline-box;
|
|
422
477
|
display: -ms-inline-flexbox;
|
|
423
478
|
display: inline-flex;
|
|
424
479
|
height: inherit;
|
|
@@ -429,8 +484,10 @@
|
|
|
429
484
|
width: 20px;
|
|
430
485
|
}
|
|
431
486
|
.e-inplaceeditor .e-editable-value-wrapper .e-editable-overlay-icon::before {
|
|
432
|
-
-
|
|
433
|
-
align
|
|
487
|
+
-webkit-box-align: center;
|
|
488
|
+
-ms-flex-align: center;
|
|
489
|
+
align-items: center;
|
|
490
|
+
display: -webkit-box;
|
|
434
491
|
display: -ms-flexbox;
|
|
435
492
|
display: flex;
|
|
436
493
|
font-size: 14px;
|
|
@@ -440,6 +497,7 @@
|
|
|
440
497
|
}
|
|
441
498
|
.e-inplaceeditor .e-editable-value-wrapper.e-editable-open {
|
|
442
499
|
-webkit-user-select: none;
|
|
500
|
+
-moz-user-select: none;
|
|
443
501
|
-ms-user-select: none;
|
|
444
502
|
user-select: none;
|
|
445
503
|
}
|
|
@@ -472,6 +530,7 @@
|
|
|
472
530
|
.e-inplaceeditor .e-editable-value-container .e-editable-overlay-icon {
|
|
473
531
|
bottom: 0;
|
|
474
532
|
cursor: pointer;
|
|
533
|
+
display: -webkit-inline-box;
|
|
475
534
|
display: -ms-inline-flexbox;
|
|
476
535
|
display: inline-flex;
|
|
477
536
|
height: inherit;
|
|
@@ -482,8 +541,10 @@
|
|
|
482
541
|
width: 20px;
|
|
483
542
|
}
|
|
484
543
|
.e-inplaceeditor .e-editable-value-container .e-editable-overlay-icon::before {
|
|
485
|
-
-
|
|
486
|
-
align
|
|
544
|
+
-webkit-box-align: center;
|
|
545
|
+
-ms-flex-align: center;
|
|
546
|
+
align-items: center;
|
|
547
|
+
display: -webkit-box;
|
|
487
548
|
display: -ms-flexbox;
|
|
488
549
|
display: flex;
|
|
489
550
|
font-size: 14px;
|
|
@@ -493,6 +554,7 @@
|
|
|
493
554
|
}
|
|
494
555
|
.e-inplaceeditor .e-editable-value-container.e-editable-open {
|
|
495
556
|
-webkit-user-select: none;
|
|
557
|
+
-moz-user-select: none;
|
|
496
558
|
-ms-user-select: none;
|
|
497
559
|
user-select: none;
|
|
498
560
|
}
|
|
@@ -517,6 +579,7 @@
|
|
|
517
579
|
}
|
|
518
580
|
.e-inplaceeditor.e-overlay {
|
|
519
581
|
-webkit-user-select: none;
|
|
582
|
+
-moz-user-select: none;
|
|
520
583
|
-ms-user-select: none;
|
|
521
584
|
user-select: none;
|
|
522
585
|
}
|
|
@@ -582,7 +645,8 @@
|
|
|
582
645
|
.e-inplaceeditor-tip .e-editable-loading.e-show:not(.e-rte-spin-wrap) .e-spinner-inner {
|
|
583
646
|
left: auto;
|
|
584
647
|
right: 5px;
|
|
585
|
-
transform: translateX(-30%) translateY(-50%);
|
|
648
|
+
-webkit-transform: translateX(-30%) translateY(-50%);
|
|
649
|
+
transform: translateX(-30%) translateY(-50%);
|
|
586
650
|
}
|
|
587
651
|
.e-inplaceeditor .e-editable-form,
|
|
588
652
|
.e-inplaceeditor-tip .e-editable-form {
|
|
@@ -610,6 +674,7 @@
|
|
|
610
674
|
opacity: 0.5;
|
|
611
675
|
pointer-events: none;
|
|
612
676
|
-webkit-user-select: none;
|
|
677
|
+
-moz-user-select: none;
|
|
613
678
|
-ms-user-select: none;
|
|
614
679
|
user-select: none;
|
|
615
680
|
visibility: visible;
|
|
@@ -646,7 +711,8 @@
|
|
|
646
711
|
.e-inplaceeditor-tip.e-rtl .e-editable-loading.e-show:not(.e-rte-spin-wrap) .e-spinner-inner {
|
|
647
712
|
left: 5px;
|
|
648
713
|
right: auto;
|
|
649
|
-
transform: translateX(30%) translateY(-50%);
|
|
714
|
+
-webkit-transform: translateX(30%) translateY(-50%);
|
|
715
|
+
transform: translateX(30%) translateY(-50%);
|
|
650
716
|
}
|
|
651
717
|
|
|
652
718
|
.e-bigger .e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content,
|
|
@@ -698,19 +764,24 @@
|
|
|
698
764
|
.e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content .e-editable-title {
|
|
699
765
|
-ms-flex-line-pack: center;
|
|
700
766
|
align-content: center;
|
|
767
|
+
display: -webkit-box;
|
|
701
768
|
display: -ms-flexbox;
|
|
702
769
|
display: flex;
|
|
703
|
-
-
|
|
704
|
-
|
|
770
|
+
-webkit-box-orient: vertical;
|
|
771
|
+
-webkit-box-direction: normal;
|
|
772
|
+
-ms-flex-direction: column;
|
|
773
|
+
flex-direction: column;
|
|
705
774
|
font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", sans-serif;
|
|
706
775
|
font-size: 16px;
|
|
707
776
|
font-weight: 400;
|
|
708
777
|
height: 24px;
|
|
709
|
-
-
|
|
710
|
-
|
|
778
|
+
-webkit-box-pack: center;
|
|
779
|
+
-ms-flex-pack: center;
|
|
780
|
+
justify-content: center;
|
|
711
781
|
padding: 20px 20px 12px 20px;
|
|
712
782
|
}
|
|
713
783
|
.e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content .e-editable-wrapper {
|
|
784
|
+
display: -webkit-box;
|
|
714
785
|
display: -ms-flexbox;
|
|
715
786
|
display: flex;
|
|
716
787
|
padding: 20px;
|
|
@@ -723,6 +794,7 @@
|
|
|
723
794
|
top: auto;
|
|
724
795
|
}
|
|
725
796
|
.e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content .e-editable-container {
|
|
797
|
+
display: -webkit-box;
|
|
726
798
|
display: -ms-flexbox;
|
|
727
799
|
display: flex;
|
|
728
800
|
padding: 20px;
|
|
@@ -764,7 +836,6 @@
|
|
|
764
836
|
min-height: 70px;
|
|
765
837
|
}
|
|
766
838
|
|
|
767
|
-
/*! inplaceeditor theme */
|
|
768
839
|
.e-inplaceeditor .e-editable-value-wrapper .e-editable-value {
|
|
769
840
|
border-bottom: 1px solid rgba(var(--color-sf-on-surface));
|
|
770
841
|
color: rgba(var(--color-sf-on-surface));
|
|
@@ -776,6 +847,7 @@
|
|
|
776
847
|
border-bottom: 0;
|
|
777
848
|
}
|
|
778
849
|
.e-inplaceeditor .e-editable-value-wrapper:hover {
|
|
850
|
+
background: -webkit-gradient(linear, left bottom, left top, from(rgba(var(--color-sf-primary), 0.08)), to(rgba(var(--color-sf-primary), 0.08))), rgba(var(--color-sf-surface));
|
|
779
851
|
background: linear-gradient(0deg, rgba(var(--color-sf-primary), 0.08), rgba(var(--color-sf-primary), 0.08)), rgba(var(--color-sf-surface));
|
|
780
852
|
border-radius: 4px;
|
|
781
853
|
}
|
|
@@ -793,6 +865,7 @@
|
|
|
793
865
|
border-bottom: 0;
|
|
794
866
|
}
|
|
795
867
|
.e-inplaceeditor .e-editable-value-container:hover {
|
|
868
|
+
background: -webkit-gradient(linear, left bottom, left top, from(rgba(var(--color-sf-primary), 0.08)), to(rgba(var(--color-sf-primary), 0.08))), rgba(var(--color-sf-surface));
|
|
796
869
|
background: linear-gradient(0deg, rgba(var(--color-sf-primary), 0.08), rgba(var(--color-sf-primary), 0.08)), rgba(var(--color-sf-surface));
|
|
797
870
|
border-radius: 4px;
|
|
798
871
|
}
|
|
@@ -824,13 +897,16 @@
|
|
|
824
897
|
color: rgba(var(--color-sf-on-surface-variant));
|
|
825
898
|
}
|
|
826
899
|
.e-inplaceeditor-tip.e-tooltip-wrap.e-popup {
|
|
900
|
+
background: -webkit-gradient(linear, left bottom, left top, from(rgba(var(--color-sf-surface), 1)), to(rgba(var(--color-sf-surface), 1))), rgba(var(--color-sf-surface));
|
|
827
901
|
background: linear-gradient(0deg, rgba(var(--color-sf-surface), 1), rgba(var(--color-sf-surface), 1)), rgba(var(--color-sf-surface));
|
|
828
|
-
box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.3), 0 4px 8px 3px rgba(0, 0, 0, 0.15);
|
|
902
|
+
-webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.3), 0 4px 8px 3px rgba(0, 0, 0, 0.15);
|
|
903
|
+
box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.3), 0 4px 8px 3px rgba(0, 0, 0, 0.15);
|
|
829
904
|
border-radius: 0;
|
|
830
905
|
}
|
|
831
906
|
.e-inplaceeditor-tip.e-tooltip-wrap.e-popup .e-tip-content {
|
|
832
907
|
border-radius: 20px;
|
|
833
908
|
color: rgba(var(--color-sf-on-surface));
|
|
909
|
+
background: -webkit-gradient(linear, left bottom, left top, from(rgba(var(--color-sf-surface), 1)), to(rgba(var(--color-sf-surface), 1))), rgba(var(--color-sf-surface));
|
|
834
910
|
background: linear-gradient(0deg, rgba(var(--color-sf-surface), 1), rgba(var(--color-sf-surface), 1)), rgba(var(--color-sf-surface));
|
|
835
911
|
}
|
|
836
912
|
.e-inplaceeditor-tip.e-tooltip-wrap.e-popup .e-arrow-tip-inner {
|
|
@@ -847,6 +923,7 @@
|
|
|
847
923
|
border-radius: 8px;
|
|
848
924
|
}
|
|
849
925
|
.e-inplaceeditor-tip.e-tooltip-wrap.e-popup .e-editable-title {
|
|
926
|
+
background: -webkit-gradient(linear, left bottom, left top, from(rgba(var(--color-sf-surface), 1)), to(rgba(var(--color-sf-surface), 1))), rgba(var(--color-sf-surface));
|
|
850
927
|
background: linear-gradient(0deg, rgba(var(--color-sf-surface), 1), rgba(var(--color-sf-surface), 1)), rgba(var(--color-sf-surface));
|
|
851
928
|
border-bottom: 0;
|
|
852
929
|
color: rgba(var(--color-sf-on-surface));
|