@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,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
|
|
@@ -1,10 +1,6 @@
|
|
|
1
1
|
@include export-module('inplaceeditor-layout') {
|
|
2
|
-
|
|
3
|
-
/*! inplaceeditor layout */
|
|
4
|
-
|
|
5
2
|
.e-bigger .e-inplaceeditor,
|
|
6
3
|
.e-inplaceeditor.e-bigger {
|
|
7
|
-
|
|
8
4
|
.e-editable-value-wrapper {
|
|
9
5
|
padding: $editor-big-value-container-padding;
|
|
10
6
|
|
|
@@ -61,9 +57,7 @@
|
|
|
61
57
|
}
|
|
62
58
|
|
|
63
59
|
&.e-rtl {
|
|
64
|
-
|
|
65
60
|
.e-editable-value-wrapper {
|
|
66
|
-
|
|
67
61
|
.e-editable-value {
|
|
68
62
|
margin: $editor-rtl-big-value-margin;
|
|
69
63
|
}
|
|
@@ -80,7 +74,6 @@
|
|
|
80
74
|
}
|
|
81
75
|
|
|
82
76
|
.e-editable-value-container {
|
|
83
|
-
|
|
84
77
|
.e-editable-value {
|
|
85
78
|
margin: $editor-rtl-big-value-margin;
|
|
86
79
|
}
|
|
@@ -97,7 +90,6 @@
|
|
|
97
90
|
}
|
|
98
91
|
|
|
99
92
|
.e-editable-action-buttons {
|
|
100
|
-
|
|
101
93
|
.e-btn-save {
|
|
102
94
|
margin: $editor-rtl-big-btn-save-margin;
|
|
103
95
|
}
|
|
@@ -178,7 +170,6 @@
|
|
|
178
170
|
}
|
|
179
171
|
|
|
180
172
|
&:hover {
|
|
181
|
-
|
|
182
173
|
.e-editable-overlay-icon {
|
|
183
174
|
visibility: visible;
|
|
184
175
|
}
|
|
@@ -246,13 +237,11 @@
|
|
|
246
237
|
}
|
|
247
238
|
|
|
248
239
|
&:hover {
|
|
249
|
-
|
|
250
240
|
.e-editable-overlay-icon {
|
|
251
241
|
visibility: visible;
|
|
252
242
|
}
|
|
253
243
|
|
|
254
244
|
&.e-editable-open {
|
|
255
|
-
|
|
256
245
|
.e-editable-overlay-icon {
|
|
257
246
|
visibility: hidden;
|
|
258
247
|
}
|
|
@@ -272,9 +261,7 @@
|
|
|
272
261
|
}
|
|
273
262
|
|
|
274
263
|
&.e-rtl {
|
|
275
|
-
|
|
276
264
|
.e-editable-value-wrapper {
|
|
277
|
-
|
|
278
265
|
.e-editable-value {
|
|
279
266
|
margin: $editor-rtl-nrml-value-margin;
|
|
280
267
|
}
|
|
@@ -295,7 +282,6 @@
|
|
|
295
282
|
}
|
|
296
283
|
|
|
297
284
|
.e-editable-value-container {
|
|
298
|
-
|
|
299
285
|
.e-editable-value {
|
|
300
286
|
margin: $editor-rtl-nrml-value-margin;
|
|
301
287
|
}
|
|
@@ -329,7 +315,6 @@
|
|
|
329
315
|
width: auto;
|
|
330
316
|
|
|
331
317
|
.e-input-group + .e-editable-loading {
|
|
332
|
-
|
|
333
318
|
@if $skin-name == 'material' {
|
|
334
319
|
.e-spinner-inner {
|
|
335
320
|
top: 45%;
|
|
@@ -338,12 +323,9 @@
|
|
|
338
323
|
}
|
|
339
324
|
|
|
340
325
|
.e-editable-action-buttons {
|
|
341
|
-
|
|
342
326
|
.e-btn-save,
|
|
343
327
|
.e-btn-cancel {
|
|
344
|
-
|
|
345
328
|
.e-btn-icon.e-icons {
|
|
346
|
-
|
|
347
329
|
@if $skin-name == 'bootstrap4' {
|
|
348
330
|
font-size: 16px;
|
|
349
331
|
}
|
|
@@ -354,9 +336,7 @@
|
|
|
354
336
|
|
|
355
337
|
.e-inplaceeditor,
|
|
356
338
|
.e-inplaceeditor-tip {
|
|
357
|
-
|
|
358
339
|
.e-input-group + .e-editable-loading {
|
|
359
|
-
|
|
360
340
|
@if $skin-name == 'material' {
|
|
361
341
|
.e-spinner-inner {
|
|
362
342
|
top: 35%;
|
|
@@ -365,14 +345,12 @@
|
|
|
365
345
|
}
|
|
366
346
|
|
|
367
347
|
.e-editable-elements:not(.e-richtexteditor) + .e-editable-loading {
|
|
368
|
-
|
|
369
348
|
.e-spinner-pane .e-spinner-inner .e-spin-bootstrap4 .e-path-circle {
|
|
370
349
|
stroke-width: inherit;
|
|
371
350
|
}
|
|
372
351
|
}
|
|
373
352
|
|
|
374
353
|
.e-input-group + .e-editable-loading {
|
|
375
|
-
|
|
376
354
|
@if $skin-name == 'material' {
|
|
377
355
|
.e-spinner-inner {
|
|
378
356
|
top: 35%;
|
|
@@ -381,7 +359,6 @@
|
|
|
381
359
|
}
|
|
382
360
|
|
|
383
361
|
.e-editable-elements:not(.e-richtexteditor) + .e-editable-loading {
|
|
384
|
-
|
|
385
362
|
.e-spinner-pane .e-spinner-inner .e-spin-bootstrap4 .e-path-circle {
|
|
386
363
|
stroke-width: inherit;
|
|
387
364
|
}
|
|
@@ -408,7 +385,6 @@
|
|
|
408
385
|
width: 100%;
|
|
409
386
|
|
|
410
387
|
&.e-loading {
|
|
411
|
-
|
|
412
388
|
.e-input-group-icon {
|
|
413
389
|
visibility: hidden;
|
|
414
390
|
}
|
|
@@ -436,7 +412,6 @@
|
|
|
436
412
|
}
|
|
437
413
|
|
|
438
414
|
.e-editable-action-buttons {
|
|
439
|
-
|
|
440
415
|
.e-btn-save {
|
|
441
416
|
margin: $editor-nrml-btn-save-margin;
|
|
442
417
|
|
|
@@ -459,9 +434,7 @@
|
|
|
459
434
|
}
|
|
460
435
|
|
|
461
436
|
&.e-rtl {
|
|
462
|
-
|
|
463
437
|
.e-editable-action-buttons {
|
|
464
|
-
|
|
465
438
|
.e-btn-save {
|
|
466
439
|
margin: $editor-rtl-nrml-btn-save-margin;
|
|
467
440
|
}
|
|
@@ -481,9 +454,7 @@
|
|
|
481
454
|
|
|
482
455
|
.e-bigger .e-inplaceeditor-tip,
|
|
483
456
|
.e-inplaceeditor-tip.e-bigger {
|
|
484
|
-
|
|
485
457
|
&.e-tooltip-wrap {
|
|
486
|
-
|
|
487
458
|
.e-tip-content {
|
|
488
459
|
@if $skin-name == 'tailwind' or $skin-name == 'bootstrap5' $skin-name == 'FluentUI' {
|
|
489
460
|
padding: 0;
|
|
@@ -514,9 +485,7 @@
|
|
|
514
485
|
}
|
|
515
486
|
|
|
516
487
|
&.e-rtl {
|
|
517
|
-
|
|
518
488
|
&.e-tooltip-wrap .e-tip-content {
|
|
519
|
-
|
|
520
489
|
.e-editable-title {
|
|
521
490
|
padding: $editor-rtl-big-tip-title-padding;
|
|
522
491
|
}
|
|
@@ -593,22 +562,18 @@
|
|
|
593
562
|
}
|
|
594
563
|
|
|
595
564
|
&.e-rtl {
|
|
596
|
-
|
|
597
565
|
&.e-tooltip-wrap .e-tip-content {
|
|
598
|
-
|
|
599
566
|
.e-editable-title {
|
|
600
567
|
padding: $editor-rtl-nrml-tip-title-padding;
|
|
601
568
|
}
|
|
602
569
|
|
|
603
570
|
.e-editable-wrapper {
|
|
604
|
-
|
|
605
571
|
.e-editable-action-buttons {
|
|
606
572
|
float: left;
|
|
607
573
|
}
|
|
608
574
|
}
|
|
609
575
|
|
|
610
576
|
.e-editable-container {
|
|
611
|
-
|
|
612
577
|
.e-editable-action-buttons {
|
|
613
578
|
float: left;
|
|
614
579
|
}
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
//Layout Variable Start
|
|
2
1
|
$editor-big-value-text-font-size: $text-base !default;
|
|
3
2
|
$editor-nrml-value-text-font-size: $text-sm !default;
|
|
4
3
|
$editor-big-value-container-padding: 8px 36px 8px 16px !default;
|
|
@@ -43,10 +42,6 @@ $editor-rtl-big-btn-save-margin: 0 0 0 4px !default;
|
|
|
43
42
|
$editor-rtl-nrml-btn-save-margin: 0 0 0 6px !default;
|
|
44
43
|
$editor-rtl-big-btn-cancel-margin: 0 4px 0 0 !default;
|
|
45
44
|
$editor-rtl-nrml-btn-cancel-margin: 0 6px 0 0 !default;
|
|
46
|
-
|
|
47
|
-
//Layout Variable End
|
|
48
|
-
|
|
49
|
-
//Theme Variable Start
|
|
50
45
|
$editor-value-hover-bg: $content-bg-color-alt2 !default;
|
|
51
46
|
$editor-value-text-color: rgba($content-text-color) !default;
|
|
52
47
|
$editor-overlay-icon-color: rgba($icon-color) !default;
|
|
@@ -66,5 +61,3 @@ $editor-tip-title-color: rgba($content-text-color) !default;
|
|
|
66
61
|
$editable-overlay-icon-height: inherit !default;
|
|
67
62
|
$editable-overlay-icon: 0 !default;
|
|
68
63
|
$editor-btn-icon-color: rgba($icon-color) !default;
|
|
69
|
-
|
|
70
|
-
//Theme Variable End
|
|
@@ -1,11 +1,6 @@
|
|
|
1
1
|
@include export-module('inplaceeditor-theme') {
|
|
2
|
-
|
|
3
|
-
/*! inplaceeditor theme */
|
|
4
|
-
|
|
5
2
|
.e-inplaceeditor {
|
|
6
|
-
|
|
7
3
|
.e-editable-value-wrapper {
|
|
8
|
-
|
|
9
4
|
.e-editable-value {
|
|
10
5
|
border-bottom: $editor-value-text-border;
|
|
11
6
|
color: $editor-value-text-color;
|
|
@@ -16,7 +11,6 @@
|
|
|
16
11
|
}
|
|
17
12
|
|
|
18
13
|
&.e-loading {
|
|
19
|
-
|
|
20
14
|
.e-editable-value {
|
|
21
15
|
border-bottom: 0;
|
|
22
16
|
}
|
|
@@ -33,7 +27,6 @@
|
|
|
33
27
|
}
|
|
34
28
|
|
|
35
29
|
.e-editable-value-container {
|
|
36
|
-
|
|
37
30
|
.e-editable-value {
|
|
38
31
|
border-bottom: $editor-value-text-border;
|
|
39
32
|
color: $editor-value-text-color;
|
|
@@ -44,7 +37,6 @@
|
|
|
44
37
|
}
|
|
45
38
|
|
|
46
39
|
&.e-loading {
|
|
47
|
-
|
|
48
40
|
.e-editable-value {
|
|
49
41
|
border-bottom: 0;
|
|
50
42
|
}
|
|
@@ -61,16 +53,13 @@
|
|
|
61
53
|
}
|
|
62
54
|
|
|
63
55
|
&[data-underline = 'false'] {
|
|
64
|
-
|
|
65
56
|
.e-editable-value-wrapper {
|
|
66
|
-
|
|
67
57
|
.e-editable-value {
|
|
68
58
|
border-bottom: 0;
|
|
69
59
|
}
|
|
70
60
|
}
|
|
71
61
|
|
|
72
62
|
.e-editable-value-container {
|
|
73
|
-
|
|
74
63
|
.e-editable-value {
|
|
75
64
|
border-bottom: 0;
|
|
76
65
|
}
|
|
@@ -82,14 +71,12 @@
|
|
|
82
71
|
touch-action: none;
|
|
83
72
|
|
|
84
73
|
.e-editable-value-wrapper {
|
|
85
|
-
|
|
86
74
|
.e-editable-value {
|
|
87
75
|
border-bottom-color: transparent;
|
|
88
76
|
}
|
|
89
77
|
}
|
|
90
78
|
|
|
91
79
|
.e-editable-value-container {
|
|
92
|
-
|
|
93
80
|
.e-editable-value {
|
|
94
81
|
border-bottom-color: transparent;
|
|
95
82
|
}
|
|
@@ -99,9 +86,7 @@
|
|
|
99
86
|
|
|
100
87
|
.e-inplaceeditor,
|
|
101
88
|
.e-inplaceeditor-tip {
|
|
102
|
-
|
|
103
89
|
.e-editable-action-buttons {
|
|
104
|
-
|
|
105
90
|
.e-btn-save.e-icon-btn,
|
|
106
91
|
.e-btn-cancel.e-icon-btn {
|
|
107
92
|
|
|
@@ -131,7 +116,6 @@
|
|
|
131
116
|
}
|
|
132
117
|
|
|
133
118
|
@if $skin-name == 'bootstrap4' {
|
|
134
|
-
|
|
135
119
|
&:hover {
|
|
136
120
|
background-color: darken($gray-600, 7.5%);
|
|
137
121
|
border: 1px solid darken($gray-600, 10%);
|
|
@@ -144,7 +128,6 @@
|
|
|
144
128
|
}
|
|
145
129
|
}
|
|
146
130
|
@else if $skin-name == 'bootstrap5' {
|
|
147
|
-
|
|
148
131
|
&:hover {
|
|
149
132
|
background-color: darken($gray-600, 7.5%);
|
|
150
133
|
border: 1px solid darken($gray-600, 10%);
|
|
@@ -158,7 +141,6 @@
|
|
|
158
141
|
}
|
|
159
142
|
|
|
160
143
|
@if $skin-name == 'bootstrap4' {
|
|
161
|
-
|
|
162
144
|
&:focus {
|
|
163
145
|
background-color: $gray-600;
|
|
164
146
|
border: 1px solid $gray-600;
|
|
@@ -166,7 +148,6 @@
|
|
|
166
148
|
}
|
|
167
149
|
|
|
168
150
|
@if $skin-name == 'bootstrap4' {
|
|
169
|
-
|
|
170
151
|
&:active {
|
|
171
152
|
background-color: darken($gray-600, 10%);
|
|
172
153
|
border: 1px solid darken($gray-600, 12.5%);
|
|
@@ -175,9 +156,7 @@
|
|
|
175
156
|
|
|
176
157
|
&:hover,
|
|
177
158
|
&:active {
|
|
178
|
-
|
|
179
159
|
.e-btn-icon.e-icons {
|
|
180
|
-
|
|
181
160
|
@if $skin-name == 'bootstrap4' or $skin-name =='bootstrap5' {
|
|
182
161
|
color: $white;
|
|
183
162
|
}
|
|
@@ -185,9 +164,7 @@
|
|
|
185
164
|
}
|
|
186
165
|
|
|
187
166
|
&:focus {
|
|
188
|
-
|
|
189
167
|
.e-btn-icon.e-icons {
|
|
190
|
-
|
|
191
168
|
@if $skin-name == 'bootstrap4' {
|
|
192
169
|
color: $white;
|
|
193
170
|
}
|
|
@@ -209,7 +186,6 @@
|
|
|
209
186
|
}
|
|
210
187
|
|
|
211
188
|
.e-inplaceeditor-tip {
|
|
212
|
-
|
|
213
189
|
&.e-tooltip-wrap.e-popup {
|
|
214
190
|
background: $editor-tip-bg;
|
|
215
191
|
box-shadow: $editor-tip-box-shadow;
|
|
@@ -230,7 +206,6 @@
|
|
|
230
206
|
}
|
|
231
207
|
|
|
232
208
|
.e-arrow-tip-outer {
|
|
233
|
-
|
|
234
209
|
&.e-tip-top {
|
|
235
210
|
border-bottom-color: $editor-tip-arrow-bdr-color;
|
|
236
211
|
}
|
|
@@ -248,25 +223,26 @@
|
|
|
248
223
|
}
|
|
249
224
|
|
|
250
225
|
.e-editable-title {
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
226
|
+
@if $skin-name != 'fluent2' {
|
|
227
|
+
background: $editor-tip-title-bg;
|
|
228
|
+
border-bottom: $editor-tio-title-border-bottom;
|
|
229
|
+
color: $editor-tip-title-color;
|
|
230
|
+
}
|
|
231
|
+
@else {
|
|
232
|
+
color: $editor-tip-title-color;
|
|
233
|
+
}
|
|
254
234
|
}
|
|
255
235
|
}
|
|
256
236
|
|
|
257
237
|
&.e-editable-tip-title {
|
|
258
|
-
|
|
259
238
|
&.e-tooltip-wrap {
|
|
260
|
-
|
|
261
239
|
.e-arrow-tip-outer {
|
|
262
|
-
|
|
263
240
|
&.e-tip-top {
|
|
264
241
|
border-bottom-color: $editor-tip-title-arrow-bdr-color;
|
|
265
242
|
}
|
|
266
243
|
}
|
|
267
244
|
|
|
268
245
|
.e-arrow-tip-inner {
|
|
269
|
-
|
|
270
246
|
&.e-tip-top {
|
|
271
247
|
color: $editor-tip-title-arrow-icon-color;
|
|
272
248
|
}
|
|
@@ -2,7 +2,8 @@
|
|
|
2
2
|
/* stylelint-disable-line no-empty-source */
|
|
3
3
|
.e-popup.e-ddl {
|
|
4
4
|
border-radius: 4px;
|
|
5
|
-
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.5);
|
|
5
|
+
-webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.5);
|
|
6
|
+
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.5);
|
|
6
7
|
margin-top: 3px;
|
|
7
8
|
}
|
|
8
9
|
.e-popup.e-ddl .e-input-group {
|
|
@@ -17,6 +18,7 @@
|
|
|
17
18
|
}
|
|
18
19
|
|
|
19
20
|
.e-popup.e-ddl .e-filter-parent .e-input-group {
|
|
21
|
+
display: -webkit-box;
|
|
20
22
|
display: -ms-flexbox;
|
|
21
23
|
display: flex;
|
|
22
24
|
width: auto;
|
|
@@ -75,7 +77,8 @@
|
|
|
75
77
|
.e-control.e-dropdownlist .e-input-group:not(.e-disabled) .e-input-group-icon:active,
|
|
76
78
|
.e-ddl.e-popup .e-input-group:not(.e-disabled) .e-back-icon:active,
|
|
77
79
|
.e-ddl.e-popup .e-input-group:not(.e-disabled) .e-clear-icon:active {
|
|
78
|
-
box-shadow: none;
|
|
80
|
+
-webkit-box-shadow: none;
|
|
81
|
+
box-shadow: none;
|
|
79
82
|
}
|
|
80
83
|
|
|
81
84
|
.e-ddl.e-popup .e-filter-parent {
|
|
@@ -143,19 +146,43 @@
|
|
|
143
146
|
}
|
|
144
147
|
|
|
145
148
|
/* stylelint-disable property-no-vendor-prefix */
|
|
149
|
+
@-webkit-keyframes material-spinner-rotate {
|
|
150
|
+
0% {
|
|
151
|
+
-webkit-transform: rotate(0);
|
|
152
|
+
transform: rotate(0);
|
|
153
|
+
}
|
|
154
|
+
100% {
|
|
155
|
+
-webkit-transform: rotate(360deg);
|
|
156
|
+
transform: rotate(360deg);
|
|
157
|
+
}
|
|
158
|
+
}
|
|
146
159
|
@keyframes material-spinner-rotate {
|
|
147
160
|
0% {
|
|
161
|
+
-webkit-transform: rotate(0);
|
|
162
|
+
transform: rotate(0);
|
|
163
|
+
}
|
|
164
|
+
100% {
|
|
165
|
+
-webkit-transform: rotate(360deg);
|
|
166
|
+
transform: rotate(360deg);
|
|
167
|
+
}
|
|
168
|
+
}
|
|
169
|
+
@-webkit-keyframes fabric-spinner-rotate {
|
|
170
|
+
0% {
|
|
171
|
+
-webkit-transform: rotate(0);
|
|
148
172
|
transform: rotate(0);
|
|
149
173
|
}
|
|
150
174
|
100% {
|
|
175
|
+
-webkit-transform: rotate(360deg);
|
|
151
176
|
transform: rotate(360deg);
|
|
152
177
|
}
|
|
153
178
|
}
|
|
154
179
|
@keyframes fabric-spinner-rotate {
|
|
155
180
|
0% {
|
|
181
|
+
-webkit-transform: rotate(0);
|
|
156
182
|
transform: rotate(0);
|
|
157
183
|
}
|
|
158
184
|
100% {
|
|
185
|
+
-webkit-transform: rotate(360deg);
|
|
159
186
|
transform: rotate(360deg);
|
|
160
187
|
}
|
|
161
188
|
}
|
|
@@ -192,7 +219,6 @@
|
|
|
192
219
|
content: "\e338";
|
|
193
220
|
}
|
|
194
221
|
|
|
195
|
-
/*! inplaceeditor layout */
|
|
196
222
|
.e-bigger .e-inplaceeditor .e-editable-value-wrapper,
|
|
197
223
|
.e-inplaceeditor.e-bigger .e-editable-value-wrapper {
|
|
198
224
|
padding: 8px 12px;
|
|
@@ -313,6 +339,7 @@
|
|
|
313
339
|
.e-inplaceeditor .e-editable-value-wrapper .e-editable-overlay-icon {
|
|
314
340
|
bottom: 0;
|
|
315
341
|
cursor: pointer;
|
|
342
|
+
display: -webkit-inline-box;
|
|
316
343
|
display: -ms-inline-flexbox;
|
|
317
344
|
display: inline-flex;
|
|
318
345
|
height: inherit;
|
|
@@ -323,8 +350,10 @@
|
|
|
323
350
|
width: 18px;
|
|
324
351
|
}
|
|
325
352
|
.e-inplaceeditor .e-editable-value-wrapper .e-editable-overlay-icon::before {
|
|
326
|
-
-
|
|
327
|
-
align
|
|
353
|
+
-webkit-box-align: center;
|
|
354
|
+
-ms-flex-align: center;
|
|
355
|
+
align-items: center;
|
|
356
|
+
display: -webkit-box;
|
|
328
357
|
display: -ms-flexbox;
|
|
329
358
|
display: flex;
|
|
330
359
|
font-size: 14px;
|
|
@@ -334,6 +363,7 @@
|
|
|
334
363
|
}
|
|
335
364
|
.e-inplaceeditor .e-editable-value-wrapper.e-editable-open {
|
|
336
365
|
-webkit-user-select: none;
|
|
366
|
+
-moz-user-select: none;
|
|
337
367
|
-ms-user-select: none;
|
|
338
368
|
user-select: none;
|
|
339
369
|
}
|
|
@@ -366,6 +396,7 @@
|
|
|
366
396
|
.e-inplaceeditor .e-editable-value-container .e-editable-overlay-icon {
|
|
367
397
|
bottom: 0;
|
|
368
398
|
cursor: pointer;
|
|
399
|
+
display: -webkit-inline-box;
|
|
369
400
|
display: -ms-inline-flexbox;
|
|
370
401
|
display: inline-flex;
|
|
371
402
|
height: inherit;
|
|
@@ -376,8 +407,10 @@
|
|
|
376
407
|
width: 18px;
|
|
377
408
|
}
|
|
378
409
|
.e-inplaceeditor .e-editable-value-container .e-editable-overlay-icon::before {
|
|
379
|
-
-
|
|
380
|
-
align
|
|
410
|
+
-webkit-box-align: center;
|
|
411
|
+
-ms-flex-align: center;
|
|
412
|
+
align-items: center;
|
|
413
|
+
display: -webkit-box;
|
|
381
414
|
display: -ms-flexbox;
|
|
382
415
|
display: flex;
|
|
383
416
|
font-size: 14px;
|
|
@@ -387,6 +420,7 @@
|
|
|
387
420
|
}
|
|
388
421
|
.e-inplaceeditor .e-editable-value-container.e-editable-open {
|
|
389
422
|
-webkit-user-select: none;
|
|
423
|
+
-moz-user-select: none;
|
|
390
424
|
-ms-user-select: none;
|
|
391
425
|
user-select: none;
|
|
392
426
|
}
|
|
@@ -411,6 +445,7 @@
|
|
|
411
445
|
}
|
|
412
446
|
.e-inplaceeditor.e-overlay {
|
|
413
447
|
-webkit-user-select: none;
|
|
448
|
+
-moz-user-select: none;
|
|
414
449
|
-ms-user-select: none;
|
|
415
450
|
user-select: none;
|
|
416
451
|
}
|
|
@@ -476,7 +511,8 @@
|
|
|
476
511
|
.e-inplaceeditor-tip .e-editable-loading.e-show:not(.e-rte-spin-wrap) .e-spinner-inner {
|
|
477
512
|
left: auto;
|
|
478
513
|
right: 5px;
|
|
479
|
-
transform: translateX(-30%) translateY(-50%);
|
|
514
|
+
-webkit-transform: translateX(-30%) translateY(-50%);
|
|
515
|
+
transform: translateX(-30%) translateY(-50%);
|
|
480
516
|
}
|
|
481
517
|
.e-inplaceeditor .e-editable-form,
|
|
482
518
|
.e-inplaceeditor-tip .e-editable-form {
|
|
@@ -504,6 +540,7 @@
|
|
|
504
540
|
opacity: 0.5;
|
|
505
541
|
pointer-events: none;
|
|
506
542
|
-webkit-user-select: none;
|
|
543
|
+
-moz-user-select: none;
|
|
507
544
|
-ms-user-select: none;
|
|
508
545
|
user-select: none;
|
|
509
546
|
visibility: visible;
|
|
@@ -540,7 +577,8 @@
|
|
|
540
577
|
.e-inplaceeditor-tip.e-rtl .e-editable-loading.e-show:not(.e-rte-spin-wrap) .e-spinner-inner {
|
|
541
578
|
left: 5px;
|
|
542
579
|
right: auto;
|
|
543
|
-
transform: translateX(30%) translateY(-50%);
|
|
580
|
+
-webkit-transform: translateX(30%) translateY(-50%);
|
|
581
|
+
transform: translateX(30%) translateY(-50%);
|
|
544
582
|
}
|
|
545
583
|
|
|
546
584
|
.e-bigger .e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content,
|
|
@@ -592,19 +630,24 @@
|
|
|
592
630
|
.e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content .e-editable-title {
|
|
593
631
|
-ms-flex-line-pack: center;
|
|
594
632
|
align-content: center;
|
|
633
|
+
display: -webkit-box;
|
|
595
634
|
display: -ms-flexbox;
|
|
596
635
|
display: flex;
|
|
597
|
-
-
|
|
598
|
-
|
|
636
|
+
-webkit-box-orient: vertical;
|
|
637
|
+
-webkit-box-direction: normal;
|
|
638
|
+
-ms-flex-direction: column;
|
|
639
|
+
flex-direction: column;
|
|
599
640
|
font-family: "Helvetica Neue", "Helvetica", "Arial", sans-serif, "-apple-system", "BlinkMacSystemFont";
|
|
600
641
|
font-size: 14px;
|
|
601
642
|
font-weight: 700;
|
|
602
643
|
height: 30px;
|
|
603
|
-
-
|
|
604
|
-
|
|
644
|
+
-webkit-box-pack: center;
|
|
645
|
+
-ms-flex-pack: center;
|
|
646
|
+
justify-content: center;
|
|
605
647
|
padding: 0 0 0 12px;
|
|
606
648
|
}
|
|
607
649
|
.e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content .e-editable-wrapper {
|
|
650
|
+
display: -webkit-box;
|
|
608
651
|
display: -ms-flexbox;
|
|
609
652
|
display: flex;
|
|
610
653
|
padding: 12px;
|
|
@@ -617,6 +660,7 @@
|
|
|
617
660
|
top: auto;
|
|
618
661
|
}
|
|
619
662
|
.e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content .e-editable-container {
|
|
663
|
+
display: -webkit-box;
|
|
620
664
|
display: -ms-flexbox;
|
|
621
665
|
display: flex;
|
|
622
666
|
padding: 12px;
|
|
@@ -658,7 +702,6 @@
|
|
|
658
702
|
min-height: 70px;
|
|
659
703
|
}
|
|
660
704
|
|
|
661
|
-
/*! inplaceeditor theme */
|
|
662
705
|
.e-inplaceeditor .e-editable-value-wrapper .e-editable-value {
|
|
663
706
|
border-bottom: 1px dashed #f0f0f0;
|
|
664
707
|
color: #f0f0f0;
|
|
@@ -715,7 +758,8 @@
|
|
|
715
758
|
.e-inplaceeditor .e-editable-action-buttons .e-btn-cancel.e-icon-btn,
|
|
716
759
|
.e-inplaceeditor-tip .e-editable-action-buttons .e-btn-save.e-icon-btn,
|
|
717
760
|
.e-inplaceeditor-tip .e-editable-action-buttons .e-btn-cancel.e-icon-btn {
|
|
718
|
-
box-shadow: none;
|
|
761
|
+
-webkit-box-shadow: none;
|
|
762
|
+
box-shadow: none;
|
|
719
763
|
}
|
|
720
764
|
.e-inplaceeditor .e-editable-action-buttons .e-btn-save.e-icon-btn .e-btn-icon.e-icons,
|
|
721
765
|
.e-inplaceeditor .e-editable-action-buttons .e-btn-cancel.e-icon-btn .e-btn-icon.e-icons,
|
|
@@ -725,7 +769,8 @@
|
|
|
725
769
|
}
|
|
726
770
|
.e-inplaceeditor-tip.e-tooltip-wrap.e-popup {
|
|
727
771
|
background: #2a2a2a;
|
|
728
|
-
box-shadow: none;
|
|
772
|
+
-webkit-box-shadow: none;
|
|
773
|
+
box-shadow: none;
|
|
729
774
|
}
|
|
730
775
|
.e-inplaceeditor-tip.e-tooltip-wrap.e-popup .e-tip-content {
|
|
731
776
|
border-radius: 4px;
|