@syncfusion/ej2-inplace-editor 19.4.48 → 20.1.55

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.
Files changed (60) hide show
  1. package/.github/PULL_REQUEST_TEMPLATE/Bug.md +41 -0
  2. package/.github/PULL_REQUEST_TEMPLATE/Feature.md +27 -0
  3. package/CHANGELOG.md +1 -11
  4. package/README.md +1 -1
  5. package/dist/ej2-inplace-editor.umd.min.js +1 -1
  6. package/dist/global/ej2-inplace-editor.min.js +1 -1
  7. package/dist/global/index.d.ts +1 -1
  8. package/package.json +16 -16
  9. package/styles/bootstrap-dark.css +5 -0
  10. package/styles/bootstrap.css +5 -0
  11. package/styles/bootstrap4.css +5 -0
  12. package/styles/bootstrap5-dark.css +13 -6
  13. package/styles/bootstrap5.css +13 -6
  14. package/styles/fabric-dark.css +5 -0
  15. package/styles/fabric.css +5 -0
  16. package/styles/fluent-dark.css +874 -0
  17. package/styles/fluent-dark.scss +1 -0
  18. package/styles/fluent.css +874 -0
  19. package/styles/fluent.scss +1 -0
  20. package/styles/highcontrast-light.css +5 -0
  21. package/styles/highcontrast.css +5 -0
  22. package/styles/inplace-editor/_bootstrap-dark-definition.scss +1 -0
  23. package/styles/inplace-editor/_bootstrap-definition.scss +1 -0
  24. package/styles/inplace-editor/_bootstrap4-definition.scss +1 -0
  25. package/styles/inplace-editor/_bootstrap5-definition.scss +1 -0
  26. package/styles/inplace-editor/_fabric-dark-definition.scss +1 -0
  27. package/styles/inplace-editor/_fabric-definition.scss +1 -0
  28. package/styles/inplace-editor/_fluent-dark-definition.scss +1 -0
  29. package/styles/inplace-editor/_fluent-definition.scss +69 -0
  30. package/styles/inplace-editor/_highcontrast-definition.scss +1 -0
  31. package/styles/inplace-editor/_highcontrast-light-definition.scss +1 -0
  32. package/styles/inplace-editor/_layout.scss +3 -4
  33. package/styles/inplace-editor/_material-dark-definition.scss +1 -0
  34. package/styles/inplace-editor/_material-definition.scss +1 -0
  35. package/styles/inplace-editor/_tailwind-definition.scss +1 -0
  36. package/styles/inplace-editor/_theme.scss +4 -1
  37. package/styles/inplace-editor/bootstrap-dark.css +5 -0
  38. package/styles/inplace-editor/bootstrap.css +5 -0
  39. package/styles/inplace-editor/bootstrap4.css +5 -0
  40. package/styles/inplace-editor/bootstrap5-dark.css +13 -6
  41. package/styles/inplace-editor/bootstrap5.css +13 -6
  42. package/styles/inplace-editor/fabric-dark.css +5 -0
  43. package/styles/inplace-editor/fabric.css +5 -0
  44. package/styles/inplace-editor/fluent-dark.css +874 -0
  45. package/styles/inplace-editor/fluent-dark.scss +26 -0
  46. package/styles/inplace-editor/fluent.css +874 -0
  47. package/styles/inplace-editor/fluent.scss +26 -0
  48. package/styles/inplace-editor/highcontrast-light.css +5 -0
  49. package/styles/inplace-editor/highcontrast.css +5 -0
  50. package/styles/inplace-editor/icons/_fluent-dark.scss +1 -0
  51. package/styles/inplace-editor/icons/_fluent.scss +19 -0
  52. package/styles/inplace-editor/icons/_tailwind.scss +4 -4
  53. package/styles/inplace-editor/material-dark.css +5 -0
  54. package/styles/inplace-editor/material.css +5 -0
  55. package/styles/inplace-editor/tailwind-dark.css +12 -67
  56. package/styles/inplace-editor/tailwind.css +12 -67
  57. package/styles/material-dark.css +5 -0
  58. package/styles/material.css +5 -0
  59. package/styles/tailwind-dark.css +12 -67
  60. package/styles/tailwind.css +12 -67
@@ -0,0 +1 @@
1
+ @import 'inplace-editor/fluent.scss';
@@ -677,6 +677,11 @@
677
677
  transform: translateX(30%) translateY(-50%);
678
678
  }
679
679
 
680
+ .e-bigger .e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content,
681
+ .e-inplaceeditor-tip.e-bigger.e-tooltip-wrap .e-tip-content {
682
+ padding: 0;
683
+ }
684
+
680
685
  .e-bigger .e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content .e-editable-wrapper,
681
686
  .e-inplaceeditor-tip.e-bigger.e-tooltip-wrap .e-tip-content .e-editable-wrapper {
682
687
  padding: 12px;
@@ -680,6 +680,11 @@
680
680
  transform: translateX(30%) translateY(-50%);
681
681
  }
682
682
 
683
+ .e-bigger .e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content,
684
+ .e-inplaceeditor-tip.e-bigger.e-tooltip-wrap .e-tip-content {
685
+ padding: 0;
686
+ }
687
+
683
688
  .e-bigger .e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content .e-editable-wrapper,
684
689
  .e-inplaceeditor-tip.e-bigger.e-tooltip-wrap .e-tip-content .e-editable-wrapper {
685
690
  padding: 12px;
@@ -35,6 +35,7 @@ $editor-tip-box-shadow: none !default;
35
35
 
36
36
  /*! Tip Content styles */
37
37
  $editor-tip-content-bdr-radius: 4px !default;
38
+ $editor-popup-tip-content-bdr-radius: 4px !default;
38
39
 
39
40
  /*! Title styles */
40
41
  $editor-tip-title-font-weight: 700 !default;
@@ -36,6 +36,7 @@ $editor-tip-box-shadow: 0 1px 6px 0 rgba(0, 0, 0, .26) !default;
36
36
 
37
37
  /*! Tip Content styles */
38
38
  $editor-tip-content-bdr-radius: 4px !default;
39
+ $editor-popup-tip-content-bdr-radius: 4px !default;
39
40
 
40
41
  /*! Title styles */
41
42
  $editor-tip-title-font-weight: 700 !default;
@@ -36,6 +36,7 @@ $editor-tip-box-shadow: none !default;
36
36
 
37
37
  /*! Tip Content styles */
38
38
  $editor-tip-content-bdr-radius: 4px !default;
39
+ $editor-popup-tip-content-bdr-radius: 4px !default;
39
40
 
40
41
  /*! Title styles */
41
42
  $editor-tip-title-font-weight: 700 !default;
@@ -17,6 +17,7 @@ $editor-nrml-overlay-icon-container-size: 20px !default;
17
17
  $editor-big-overlay-icon-left-right: 8px !default;
18
18
  $editor-nrml-overlay-icon-left-right: 8px !default;
19
19
  $editor-tip-content-bdr-radius: 4px !default;
20
+ $editor-popup-tip-content-bdr-radius: 4px !default;
20
21
  $editor-tip-title-font-weight: $font-weight-medium !default;
21
22
  $editor-big-tip-title-font-size: $text-sm !default;
22
23
  $editor-nrml-tip-title-font-size: $text-xs !default;
@@ -35,6 +35,7 @@ $editor-tip-box-shadow: none !default;
35
35
 
36
36
  /*! Tip Content styles */
37
37
  $editor-tip-content-bdr-radius: 0 !default;
38
+ $editor-popup-tip-content-bdr-radius: 0 !default;
38
39
 
39
40
  /*! Title styles */
40
41
  $editor-tip-title-font-weight: 600 !default;
@@ -36,6 +36,7 @@ $editor-tip-box-shadow: 0 1px 6px 0 rgba(0, 0, 0, .26) !default;
36
36
 
37
37
  /*! Tip Content styles */
38
38
  $editor-tip-content-bdr-radius: 0 !default;
39
+ $editor-popup-tip-content-bdr-radius: 0 !default;
39
40
 
40
41
  /*! Title styles */
41
42
  $editor-tip-title-font-weight: 600 !default;
@@ -0,0 +1 @@
1
+ @import './fluent-definition.scss';
@@ -0,0 +1,69 @@
1
+ $inplace-skin: 'FluentUI' !default;
2
+ //Layout Variable Start
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 9px 12px !default;
6
+ $editor-nrml-value-container-padding: 4px 8px 6px 8px !default;
7
+ $editor-big-value-container-spin-padding: 12px !default;
8
+ $editor-nrml-value-container-spin-padding: 10px !default;
9
+ $editor-big-value-margin: 0 32px 0 0 !default;
10
+ $editor-nrml-value-margin: 0 30px 0 0 !default;
11
+ $editor-rtl-big-value-margin: 0 0 0 32px !default;
12
+ $editor-rtl-nrml-value-margin: 0 0 0 30px !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: 12px !default;
18
+ $editor-nrml-overlay-icon-left-right: 8px !default;
19
+ $editor-tip-content-bdr-radius: $model-radius !default;
20
+ $editor-popup-tip-content-bdr-radius: 0 !default;
21
+ $editor-popup-tip-wrapper-bdr-radius: 0 !default;
22
+ $editor-tip-title-font-weight: $font-weight-medium !default;
23
+ $editor-big-tip-title-font-size: $text-lg !default;
24
+ $editor-nrml-tip-title-font-size: $text-base !default;
25
+ $editor-big-tip-title-padding: 8px 16px 0 16px !default;
26
+ $editor-nrml-tip-title-padding: 6px 12px 0 12px !default;
27
+ $editor-rtl-big-tip-title-padding: 8px 16px 0 16px !default;
28
+ $editor-rtl-nrml-tip-title-padding: 6px 12px 0 12px !default;
29
+ $editor-big-tip-title-container-size: 28px !default;
30
+ $editor-nrml-tip-title-container-size: 24px !default;
31
+ $editor-big-tip-wrapper-padding: 25px 16px 16px 16px !default;
32
+ $editor-nrml-tip-wrapper-padding: 18px 12px 12px 12px !default;
33
+ $editor-big-wrapper-title-with-padding: 25px 16px 16px 16px !default;
34
+ $editor-nrml-wrapper-title-with-padding: 18px 12px 12px 12px !default;
35
+ $editor-component-bottom-margin: 4px !default;
36
+ $editor-buttons-top-margin: 4px !default;
37
+ $editor-btn-save-icon-size: 12px !default;
38
+ $editor-btn-cancel-icon-size: 12px !default;
39
+ $editor-big-btn-save-margin: 0 6px 0 0 !default;
40
+ $editor-nrml-btn-save-margin: 0 4px 0 0 !default;
41
+ $editor-big-btn-cancel-margin: 0 0 0 6px !default;
42
+ $editor-nrml-btn-cancel-margin: 0 0 0 4px !default;
43
+ $editor-rtl-big-btn-save-margin: 0 0 0 6px !default;
44
+ $editor-rtl-nrml-btn-save-margin: 0 0 0 4px !default;
45
+ $editor-rtl-big-btn-cancel-margin: 0 6px 0 0 !default;
46
+ $editor-rtl-nrml-btn-cancel-margin: 0 4px 0 0 !default;
47
+ //Layout Variable End
48
+
49
+ //Theme Variable Start
50
+ $editor-value-hover-bg: $content-bg-color-alt2 !default;
51
+ $editor-value-text-color: $content-text-color !default;
52
+ $editor-overlay-icon-color: $icon-color !default;
53
+ $editor-value-text-border: 1px dashed $content-text-color !default;
54
+ $editor-background-color: $transparent !default;
55
+ $wrapper-background-color: $flyout-bg-color !default;
56
+ $editor-tip-border: none !default;
57
+ $editor-tip-bg: $flyout-bg-color !default;
58
+ $editor-tip-arrow-icon-color: $content-bg-color !default;
59
+ $editor-tip-title-arrow-icon-color: $content-bg-color !default;
60
+ $editor-tip-arrow-bdr-color: $content-bg-color-alt1 !default;
61
+ $editor-tip-title-arrow-bdr-color: $border !default;
62
+ $editor-tip-box-shadow: $shadow-xl !default;
63
+ $editor-tip-title-bg: $content-bg-color !default;
64
+ $editor-tio-title-border-bottom: 0 !default;
65
+ $editor-tip-title-color: $content-text-color !default;
66
+ $editable-overlay-icon-height: inherit !default;
67
+ $editable-overlay-icon: 0 !default;
68
+ $editor-btn-icon-color: $icon-color !default;
69
+ //Theme Variable End
@@ -35,6 +35,7 @@ $editor-tip-box-shadow: none !default;
35
35
 
36
36
  /*! Tip Content styles */
37
37
  $editor-tip-content-bdr-radius: 0 !default;
38
+ $editor-popup-tip-content-bdr-radius: 0 !default;
38
39
 
39
40
  /*! Title styles */
40
41
  $editor-tip-title-font-weight: 600 !default;
@@ -35,6 +35,7 @@ $editor-tip-box-shadow: none !default;
35
35
 
36
36
  /*! Tip Content styles */
37
37
  $editor-tip-content-bdr-radius: 0 !default;
38
+ $editor-popup-tip-content-bdr-radius: 0 !default;
38
39
 
39
40
  /*! Title styles */
40
41
  $editor-tip-title-font-weight: 600 !default;
@@ -484,6 +484,9 @@
484
484
  &.e-tooltip-wrap {
485
485
 
486
486
  .e-tip-content {
487
+ @if $inplace-skin == 'tailwind' or $inplace-skin == 'bootstrap5' $inplace-skin == 'FluentUI' {
488
+ padding: 0;
489
+ }
487
490
 
488
491
  .e-editable-wrapper {
489
492
  padding: $editor-big-tip-wrapper-padding;
@@ -634,10 +637,6 @@
634
637
  }
635
638
 
636
639
  @if $inplace-skin == 'tailwind' or $inplace-skin == 'bootstrap5' {
637
- .e-bigger .e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content {
638
- padding: 0;
639
- }
640
-
641
640
  .e-control.e-inplaceeditor .e-editable-value-wrapper {
642
641
  min-height: 30px;
643
642
  }
@@ -36,6 +36,7 @@ $editor-tip-box-shadow: none !default;
36
36
 
37
37
  /*! Tip Content styles */
38
38
  $editor-tip-content-bdr-radius: 2px !default;
39
+ $editor-popup-tip-content-bdr-radius: 2px !default;
39
40
 
40
41
  /*! Title styles */
41
42
  $editor-tip-title-font-weight: 500 !default;
@@ -36,6 +36,7 @@ $editor-tip-box-shadow: 0 5px 5px -3px rgba(0, 0, 0, .2), 0 8px 10px 1px rgba(0,
36
36
 
37
37
  /*! Tip Content styles */
38
38
  $editor-tip-content-bdr-radius: 2px !default;
39
+ $editor-popup-tip-content-bdr-radius: 2px !default;
39
40
 
40
41
  /*! Title styles */
41
42
  $editor-tip-title-font-weight: 500 !default;
@@ -17,6 +17,7 @@ $editor-nrml-overlay-icon-container-size: 20px !default;
17
17
  $editor-big-overlay-icon-left-right: 8px !default;
18
18
  $editor-nrml-overlay-icon-left-right: 8px !default;
19
19
  $editor-tip-content-bdr-radius: 4px !default;
20
+ $editor-popup-tip-content-bdr-radius: 4px !default;
20
21
  $editor-tip-title-font-weight: 500 !default;
21
22
  $editor-big-tip-title-font-size: $text-sm !default;
22
23
  $editor-nrml-tip-title-font-size: $text-xs !default;
@@ -184,9 +184,12 @@
184
184
  &.e-tooltip-wrap.e-popup {
185
185
  background: $editor-tip-bg;
186
186
  box-shadow: $editor-tip-box-shadow;
187
+ @if $inplace-skin == 'FluentUI' {
188
+ border-radius: $editor-popup-tip-wrapper-bdr-radius;
189
+ }
187
190
 
188
191
  .e-tip-content {
189
- border-radius: $editor-tip-content-bdr-radius;
192
+ border-radius: $editor-popup-tip-content-bdr-radius;
190
193
  color: $editor-value-text-color;
191
194
  }
192
195
 
@@ -615,6 +615,11 @@
615
615
  transform: translateX(30%) translateY(-50%);
616
616
  }
617
617
 
618
+ .e-bigger .e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content,
619
+ .e-inplaceeditor-tip.e-bigger.e-tooltip-wrap .e-tip-content {
620
+ padding: 0;
621
+ }
622
+
618
623
  .e-bigger .e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content .e-editable-wrapper,
619
624
  .e-inplaceeditor-tip.e-bigger.e-tooltip-wrap .e-tip-content .e-editable-wrapper {
620
625
  padding: 12px;
@@ -760,6 +760,11 @@
760
760
  transform: translateX(30%) translateY(-50%);
761
761
  }
762
762
 
763
+ .e-bigger .e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content,
764
+ .e-inplaceeditor-tip.e-bigger.e-tooltip-wrap .e-tip-content {
765
+ padding: 0;
766
+ }
767
+
763
768
  .e-bigger .e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content .e-editable-wrapper,
764
769
  .e-inplaceeditor-tip.e-bigger.e-tooltip-wrap .e-tip-content .e-editable-wrapper {
765
770
  padding: 12px;
@@ -1001,6 +1001,11 @@
1001
1001
  transform: translateX(30%) translateY(-50%);
1002
1002
  }
1003
1003
 
1004
+ .e-bigger .e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content,
1005
+ .e-inplaceeditor-tip.e-bigger.e-tooltip-wrap .e-tip-content {
1006
+ padding: 0;
1007
+ }
1008
+
1004
1009
  .e-bigger .e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content .e-editable-wrapper,
1005
1010
  .e-inplaceeditor-tip.e-bigger.e-tooltip-wrap .e-tip-content .e-editable-wrapper {
1006
1011
  padding: 16px;
@@ -63,7 +63,6 @@
63
63
  .e-input-group.e-control-wrapper.e-ddl .e-input[readonly],
64
64
  .e-float-input.e-control-wrapper.e-ddl input[readonly] {
65
65
  background: transparent;
66
- color: inherit;
67
66
  }
68
67
 
69
68
  .e-input-group.e-control-wrapper.e-ddl.e-readonly .e-input[readonly],
@@ -91,6 +90,13 @@
91
90
  color: #adb5bd;
92
91
  }
93
92
 
93
+ .e-input-group.e-ddl.e-readonly .e-input[readonly] ~ span.e-input-group-icon.e-ddl-icon.e-search-icon,
94
+ .e-input-group.e-control-wrapper.e-readonly .e-input[readonly] ~ span.e-input-group-icon.e-ddl-icon.e-search-icon,
95
+ .e-float-input.e-ddl.e-readonly .e-input[readonly] ~ span.e-input-group-icon.e-ddl-icon.e-search-icon,
96
+ .e-float-input.e-control-wrapper.e-ddl.e-readonly .e-input[readonly] ~ span.e-input-group-icon.e-ddl-icon.e-search-icon {
97
+ background: #343a40;
98
+ }
99
+
94
100
  .e-input-group:not(.e-disabled) .e-control.e-dropdownlist ~ .e-ddl-icon,
95
101
  .e-input-group.e-disabled.e-ddl .e-control.e-dropdownlist ~ .e-input-group-icon,
96
102
  .e-control.e-dropdownlist .e-input-group.e-disabled.e-ddl .e-input-group-icon,
@@ -153,7 +159,7 @@
153
159
  }
154
160
 
155
161
  .e-multiselect .e-input-group-icon.e-ddl-icon {
156
- border-radius: 0 4px 4px 0;
162
+ border-radius: 0 2px 2px 0;
157
163
  border-right-width: 0;
158
164
  }
159
165
 
@@ -638,6 +644,11 @@
638
644
  transform: translateX(30%) translateY(-50%);
639
645
  }
640
646
 
647
+ .e-bigger .e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content,
648
+ .e-inplaceeditor-tip.e-bigger.e-tooltip-wrap .e-tip-content {
649
+ padding: 0;
650
+ }
651
+
641
652
  .e-bigger .e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content .e-editable-wrapper,
642
653
  .e-inplaceeditor-tip.e-bigger.e-tooltip-wrap .e-tip-content .e-editable-wrapper {
643
654
  padding: 16px;
@@ -774,10 +785,6 @@
774
785
  border-radius: 4px;
775
786
  }
776
787
 
777
- .e-bigger .e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content {
778
- padding: 0;
779
- }
780
-
781
788
  .e-control.e-inplaceeditor .e-editable-value-wrapper {
782
789
  min-height: 30px;
783
790
  }
@@ -63,7 +63,6 @@
63
63
  .e-input-group.e-control-wrapper.e-ddl .e-input[readonly],
64
64
  .e-float-input.e-control-wrapper.e-ddl input[readonly] {
65
65
  background: transparent;
66
- color: inherit;
67
66
  }
68
67
 
69
68
  .e-input-group.e-control-wrapper.e-ddl.e-readonly .e-input[readonly],
@@ -91,6 +90,13 @@
91
90
  color: #6c757d;
92
91
  }
93
92
 
93
+ .e-input-group.e-ddl.e-readonly .e-input[readonly] ~ span.e-input-group-icon.e-ddl-icon.e-search-icon,
94
+ .e-input-group.e-control-wrapper.e-readonly .e-input[readonly] ~ span.e-input-group-icon.e-ddl-icon.e-search-icon,
95
+ .e-float-input.e-ddl.e-readonly .e-input[readonly] ~ span.e-input-group-icon.e-ddl-icon.e-search-icon,
96
+ .e-float-input.e-control-wrapper.e-ddl.e-readonly .e-input[readonly] ~ span.e-input-group-icon.e-ddl-icon.e-search-icon {
97
+ background: #e9ecef;
98
+ }
99
+
94
100
  .e-input-group:not(.e-disabled) .e-control.e-dropdownlist ~ .e-ddl-icon,
95
101
  .e-input-group.e-disabled.e-ddl .e-control.e-dropdownlist ~ .e-input-group-icon,
96
102
  .e-control.e-dropdownlist .e-input-group.e-disabled.e-ddl .e-input-group-icon,
@@ -153,7 +159,7 @@
153
159
  }
154
160
 
155
161
  .e-multiselect .e-input-group-icon.e-ddl-icon {
156
- border-radius: 0 4px 4px 0;
162
+ border-radius: 0 2px 2px 0;
157
163
  border-right-width: 0;
158
164
  }
159
165
 
@@ -638,6 +644,11 @@
638
644
  transform: translateX(30%) translateY(-50%);
639
645
  }
640
646
 
647
+ .e-bigger .e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content,
648
+ .e-inplaceeditor-tip.e-bigger.e-tooltip-wrap .e-tip-content {
649
+ padding: 0;
650
+ }
651
+
641
652
  .e-bigger .e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content .e-editable-wrapper,
642
653
  .e-inplaceeditor-tip.e-bigger.e-tooltip-wrap .e-tip-content .e-editable-wrapper {
643
654
  padding: 16px;
@@ -774,10 +785,6 @@
774
785
  border-radius: 4px;
775
786
  }
776
787
 
777
- .e-bigger .e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content {
778
- padding: 0;
779
- }
780
-
781
788
  .e-control.e-inplaceeditor .e-editable-value-wrapper {
782
789
  min-height: 30px;
783
790
  }
@@ -569,6 +569,11 @@
569
569
  transform: translateX(30%) translateY(-50%);
570
570
  }
571
571
 
572
+ .e-bigger .e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content,
573
+ .e-inplaceeditor-tip.e-bigger.e-tooltip-wrap .e-tip-content {
574
+ padding: 0;
575
+ }
576
+
572
577
  .e-bigger .e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content .e-editable-wrapper,
573
578
  .e-inplaceeditor-tip.e-bigger.e-tooltip-wrap .e-tip-content .e-editable-wrapper {
574
579
  padding: 12px;
@@ -563,6 +563,11 @@
563
563
  transform: translateX(30%) translateY(-50%);
564
564
  }
565
565
 
566
+ .e-bigger .e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content,
567
+ .e-inplaceeditor-tip.e-bigger.e-tooltip-wrap .e-tip-content {
568
+ padding: 0;
569
+ }
570
+
566
571
  .e-bigger .e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content .e-editable-wrapper,
567
572
  .e-inplaceeditor-tip.e-bigger.e-tooltip-wrap .e-tip-content .e-editable-wrapper {
568
573
  padding: 12px;