@syncfusion/ej2-image-editor 25.2.3 → 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.
Files changed (128) hide show
  1. package/.eslintrc.json +3 -2
  2. package/dist/ej2-image-editor.umd.min.js +2 -2
  3. package/dist/ej2-image-editor.umd.min.js.map +1 -1
  4. package/dist/es6/ej2-image-editor.es2015.js +2679 -829
  5. package/dist/es6/ej2-image-editor.es2015.js.map +1 -1
  6. package/dist/es6/ej2-image-editor.es5.js +2762 -872
  7. package/dist/es6/ej2-image-editor.es5.js.map +1 -1
  8. package/dist/global/ej2-image-editor.min.js +2 -2
  9. package/dist/global/ej2-image-editor.min.js.map +1 -1
  10. package/dist/global/index.d.ts +1 -1
  11. package/package.json +13 -12
  12. package/src/image-editor/action/crop.d.ts +0 -1
  13. package/src/image-editor/action/crop.js +35 -77
  14. package/src/image-editor/action/draw.d.ts +3 -0
  15. package/src/image-editor/action/draw.js +190 -81
  16. package/src/image-editor/action/export.d.ts +3 -0
  17. package/src/image-editor/action/export.js +99 -40
  18. package/src/image-editor/action/filter.d.ts +0 -1
  19. package/src/image-editor/action/filter.js +4 -24
  20. package/src/image-editor/action/freehand-draw.js +30 -8
  21. package/src/image-editor/action/selection.d.ts +10 -0
  22. package/src/image-editor/action/selection.js +444 -99
  23. package/src/image-editor/action/shape.d.ts +11 -1
  24. package/src/image-editor/action/shape.js +520 -127
  25. package/src/image-editor/action/transform.d.ts +0 -1
  26. package/src/image-editor/action/transform.js +53 -69
  27. package/src/image-editor/action/undo-redo.d.ts +2 -0
  28. package/src/image-editor/action/undo-redo.js +114 -29
  29. package/src/image-editor/base/enum.d.ts +5 -1
  30. package/src/image-editor/base/enum.js +4 -0
  31. package/src/image-editor/base/image-editor-model.d.ts +8 -6
  32. package/src/image-editor/base/image-editor.d.ts +116 -7
  33. package/src/image-editor/base/image-editor.js +378 -52
  34. package/src/image-editor/base/interface.d.ts +17 -0
  35. package/src/image-editor/base/interface.js +0 -1
  36. package/src/image-editor/renderer/toolbar.d.ts +14 -1
  37. package/src/image-editor/renderer/toolbar.js +831 -191
  38. package/styles/bootstrap-dark.css +279 -97
  39. package/styles/bootstrap-dark.scss +13 -1
  40. package/styles/bootstrap.css +282 -98
  41. package/styles/bootstrap.scss +13 -1
  42. package/styles/bootstrap4.css +280 -97
  43. package/styles/bootstrap4.scss +13 -1
  44. package/styles/bootstrap5-dark.css +280 -101
  45. package/styles/bootstrap5-dark.scss +13 -1
  46. package/styles/bootstrap5.css +280 -101
  47. package/styles/bootstrap5.scss +13 -1
  48. package/styles/fabric-dark.css +281 -97
  49. package/styles/fabric-dark.scss +13 -1
  50. package/styles/fabric.css +284 -97
  51. package/styles/fabric.scss +13 -1
  52. package/styles/fluent-dark.css +287 -101
  53. package/styles/fluent-dark.scss +13 -1
  54. package/styles/fluent.css +287 -101
  55. package/styles/fluent.scss +13 -1
  56. package/styles/fluent2.css +1851 -0
  57. package/styles/fluent2.scss +13 -0
  58. package/styles/highcontrast-light.css +279 -97
  59. package/styles/highcontrast-light.scss +13 -1
  60. package/styles/highcontrast.css +284 -97
  61. package/styles/highcontrast.scss +13 -1
  62. package/styles/image-editor/_bds-definition.scss +5 -0
  63. package/styles/image-editor/_bootstrap-dark-definition.scss +5 -0
  64. package/styles/image-editor/_bootstrap-definition.scss +5 -0
  65. package/styles/image-editor/_bootstrap4-definition.scss +5 -0
  66. package/styles/image-editor/_bootstrap5-definition.scss +5 -0
  67. package/styles/image-editor/_bootstrap5.3-definition.scss +26 -0
  68. package/styles/image-editor/_fabric-dark-definition.scss +5 -0
  69. package/styles/image-editor/_fabric-definition.scss +5 -0
  70. package/styles/image-editor/_fluent-definition.scss +5 -0
  71. package/styles/image-editor/_fluent2-definition.scss +26 -0
  72. package/styles/image-editor/_fusionnew-definition.scss +5 -0
  73. package/styles/image-editor/_highcontrast-definition.scss +5 -0
  74. package/styles/image-editor/_highcontrast-light-definition.scss +5 -0
  75. package/styles/image-editor/_layout.scss +352 -13
  76. package/styles/image-editor/_material-dark-definition.scss +5 -0
  77. package/styles/image-editor/_material-definition.scss +5 -0
  78. package/styles/image-editor/_material3-definition.scss +5 -0
  79. package/styles/image-editor/_tailwind-definition.scss +5 -0
  80. package/styles/image-editor/bootstrap-dark.css +279 -97
  81. package/styles/image-editor/bootstrap.css +282 -98
  82. package/styles/image-editor/bootstrap4.css +280 -97
  83. package/styles/image-editor/bootstrap5-dark.css +280 -101
  84. package/styles/image-editor/bootstrap5.css +280 -101
  85. package/styles/image-editor/fabric-dark.css +281 -97
  86. package/styles/image-editor/fabric.css +284 -97
  87. package/styles/image-editor/fluent-dark.css +287 -101
  88. package/styles/image-editor/fluent.css +287 -101
  89. package/styles/image-editor/fluent2.css +1851 -0
  90. package/styles/image-editor/fluent2.scss +13 -0
  91. package/styles/image-editor/highcontrast-light.css +279 -97
  92. package/styles/image-editor/highcontrast.css +284 -97
  93. package/styles/image-editor/icons/_bds.scss +1 -162
  94. package/styles/image-editor/icons/_bootstrap-dark.scss +1 -162
  95. package/styles/image-editor/icons/_bootstrap.scss +1 -162
  96. package/styles/image-editor/icons/_bootstrap4.scss +1 -162
  97. package/styles/image-editor/icons/_bootstrap5.3.scss +250 -0
  98. package/styles/image-editor/icons/_bootstrap5.scss +1 -168
  99. package/styles/image-editor/icons/_fabric-dark.scss +1 -162
  100. package/styles/image-editor/icons/_fabric.scss +1 -162
  101. package/styles/image-editor/icons/_fluent.scss +1 -168
  102. package/styles/image-editor/icons/_fluent2.scss +256 -0
  103. package/styles/image-editor/icons/_fusionnew.scss +1 -138
  104. package/styles/image-editor/icons/_highcontrast-light.scss +1 -162
  105. package/styles/image-editor/icons/_highcontrast.scss +1 -162
  106. package/styles/image-editor/icons/_material-dark.scss +2 -163
  107. package/styles/image-editor/icons/_material.scss +1 -162
  108. package/styles/image-editor/icons/_material3.scss +2 -169
  109. package/styles/image-editor/icons/_tailwind.scss +1 -162
  110. package/styles/image-editor/material-dark.css +299 -100
  111. package/styles/image-editor/material.css +302 -100
  112. package/styles/image-editor/material3-dark.css +314 -103
  113. package/styles/image-editor/material3.css +314 -103
  114. package/styles/image-editor/tailwind-dark.css +284 -97
  115. package/styles/image-editor/tailwind.css +284 -97
  116. package/styles/material-dark.css +299 -100
  117. package/styles/material-dark.scss +13 -1
  118. package/styles/material.css +302 -100
  119. package/styles/material.scss +13 -1
  120. package/styles/material3-dark.css +314 -103
  121. package/styles/material3-dark.scss +13 -1
  122. package/styles/material3.css +314 -103
  123. package/styles/material3.scss +13 -1
  124. package/styles/tailwind-dark.css +284 -97
  125. package/styles/tailwind-dark.scss +13 -1
  126. package/styles/tailwind.css +284 -97
  127. package/styles/tailwind.scss +13 -1
  128. package/CHANGELOG.md +0 -281
@@ -0,0 +1,26 @@
1
+ $image-editor-background: $content-bg-color-alt1 !default;
2
+ $image-editor-border: 1px solid $border-light !default;
3
+ $image-editor-toolbar-icon-color: $icon-color !default;
4
+ $img-editor-cp-preview-border-bottom-color: $black !default;
5
+ $image-editor-icon-sel-bg-color: $content-bg-color-selected !default;
6
+ $image-editor-ddbtn-margin-top: 0 !default;
7
+ $image-editor-tbar-height: 40px !default;
8
+ $image-editor-bigger-tbar-height: 56px !default;
9
+ $image-editor-tbar-btn-fontsize: 16px !default;
10
+ $image-editor-bigger-tbar-btn-fontsize: $text-xl !default;
11
+ $image-editor-contextual-toolbar: $content-bg-color-alt2 !default;
12
+ $image-editor-drop-border: 2px dashed $icon-color !default;
13
+ $image-editor-dropdown-btn-preview-top: -2px !default;
14
+ $image-editor-dropdown-btn-preview-left: -6px !default;
15
+ $image-editor-bigger-dropdown-btn-preview-top: -2px !default;
16
+ $image-editor-bigger-dropdown-btn-preview-left: -6px !default;
17
+ $image-editor-slider-handler: calc(50% - 10px) !default;
18
+ $image-editor-bigger-slider-handler: calc(50% - 7px) !default;
19
+ $image-editor-device-slider-handler: calc(50% - 9px) !default;
20
+ $image-editor-finetune-value-span: 28% !default;
21
+ $image-editor-finetune-span: 28% !default;
22
+ $image-editor-button-label: 13px !default;
23
+ $image-editor-save-dlg-big-btn-pad: 8px !default;
24
+ $image-editor-save-dlg-grp-btn-padding: 5.2px 10.5px !default;
25
+ $image-editor-save-dlg-dev-grp-btn-padding: 5.2px 10.5px !default;
26
+ $image-editor-icon-button: 5px !default;
@@ -17,3 +17,8 @@ $image-editor-bigger-dropdown-btn-preview-left: -7px !default;
17
17
  $image-editor-slider-handler: calc(50% - 6px) !default;
18
18
  $image-editor-bigger-slider-handler: calc(50% - 6px) !default;
19
19
  $image-editor-device-slider-handler: calc(50% - 6px) !default;
20
+ $image-editor-button-label: 13px !default;
21
+ $image-editor-save-dlg-big-btn-pad: 8px !default;
22
+ $image-editor-save-dlg-grp-btn-padding: 0 !default;
23
+ $image-editor-save-dlg-dev-grp-btn-padding: 4px 13px !default;
24
+ $image-editor-icon-button: 5px !default;
@@ -19,3 +19,8 @@ $image-editor-bigger-slider-handler: calc(50% - 8px) !default;
19
19
  $image-editor-device-slider-handler: calc(50% - 8px) !default;
20
20
  $image-editor-finetune-value-span: 29% !default;
21
21
  $image-editor-finetune-span: 29% !default;
22
+ $image-editor-button-label: 13px !default;
23
+ $image-editor-save-dlg-big-btn-pad: 2px 11px !default;
24
+ $image-editor-save-dlg-grp-btn-padding: 2px 10px !default;
25
+ $image-editor-save-dlg-dev-grp-btn-padding: 3px 9px !default;
26
+ $image-editor-icon-button: 5px !default;
@@ -19,3 +19,8 @@ $image-editor-bigger-slider-handler: calc(50% - 8px) !default;
19
19
  $image-editor-device-slider-handler: calc(50% - 8px) !default;
20
20
  $image-editor-finetune-value-span: 29% !default;
21
21
  $image-editor-finetune-span: 29% !default;
22
+ $image-editor-button-label: 13px !default;
23
+ $image-editor-save-dlg-big-btn-pad: 2px 11px !default;
24
+ $image-editor-save-dlg-grp-btn-padding: 2px 10px !default;
25
+ $image-editor-save-dlg-dev-grp-btn-padding: 3px 9px !default;
26
+ $image-editor-icon-button: 5px !default;
@@ -1,7 +1,8 @@
1
1
  @include export-module('image-editor-layout') {
2
-
3
2
  .e-ie-toolbar-upload-div.e-hide,
4
- .e-ie-toolbar-upload-btn.e-hide {
3
+ .e-ie-toolbar-upload-btn.e-hide,
4
+ .e-ie-img-quality-slider,
5
+ .e-ie-img-quality-name .e-hide {
5
6
  display: none;
6
7
  }
7
8
 
@@ -23,7 +24,8 @@
23
24
  margin-left: 15px !important; /* stylelint-disable-line declaration-no-important */
24
25
  }
25
26
 
26
- & .e-hscroll .e-scroll-nav.e-scroll-right-nav {
27
+ & .e-hscroll .e-scroll-nav.e-scroll-right-nav,
28
+ & .e-scroll-right-overlay {
27
29
  display: none !important; /* stylelint-disable-line declaration-no-important */
28
30
  }
29
31
 
@@ -31,10 +33,6 @@
31
33
  padding-right: 0 !important; /* stylelint-disable-line declaration-no-important */
32
34
  }
33
35
 
34
- & .e-scroll-right-overlay {
35
- display: none !important; /* stylelint-disable-line declaration-no-important */
36
- }
37
-
38
36
  & .e-contextual-toolbar-wrapper {
39
37
  border-top: $image-editor-border;
40
38
  border-bottom: none !important; /* stylelint-disable-line declaration-no-important */
@@ -52,11 +50,23 @@
52
50
  & .e-bottom-toolbar-area .e-toolbar {
53
51
  border-bottom: none;
54
52
  }
53
+
54
+ & .e-ie-img-save-name {
55
+ width: calc(65% - 13px) !important; /* stylelint-disable-line declaration-no-important */
56
+ }
57
+
58
+ & .e-ie-img-size-value-span {
59
+ margin-left: calc(100% - 145px) !important; /* stylelint-disable-line declaration-no-important */
60
+ }
61
+
62
+ & .e-ie-quality-option-container .e-slider-container {
63
+ margin-left: 0 !important; /* stylelint-disable-line declaration-no-important */
64
+ height: auto !important; /* stylelint-disable-line declaration-no-important */
65
+ }
55
66
  }
56
67
 
57
68
  .e-bigger .e-image-editor,
58
69
  .e-image-editor.e-bigger {
59
-
60
70
  & .e-contextual-toolbar-wrapper {
61
71
  & .e-slider-container {
62
72
  & .e-slider {
@@ -80,10 +90,7 @@
80
90
 
81
91
  & .e-toolbar-items {
82
92
  & .e-toolbar-item {
83
- &.e-ie-resize-height span {
84
- font-size: 16px;
85
- }
86
-
93
+ &.e-ie-resize-height span,
87
94
  &.e-ie-resize-width span {
88
95
  font-size: 16px;
89
96
  }
@@ -172,6 +179,12 @@
172
179
  }
173
180
  }
174
181
  }
182
+
183
+ & .e-ie-save-dialog .e-ie-img-save-dlg .e-btn {
184
+ @if $skin-name == 'Material3' {
185
+ margin-top: 5px !important; /* stylelint-disable-line declaration-no-important */
186
+ }
187
+ }
175
188
  }
176
189
 
177
190
  .e-image-editor {
@@ -248,7 +261,7 @@
248
261
  height: $image-editor-tbar-height !important; /* stylelint-disable-line declaration-no-important */
249
262
  min-height: $image-editor-tbar-height !important; /* stylelint-disable-line declaration-no-important */
250
263
  }
251
- @if $skin-name == 'FluentUI' {
264
+ @if $skin-name == 'FluentUI' or $skin-name == 'fluent2' {
252
265
  box-shadow: none !important; /* stylelint-disable-line declaration-no-important */
253
266
  }
254
267
  & .e-toolbar-items {
@@ -471,6 +484,18 @@
471
484
  }
472
485
  }
473
486
  }
487
+
488
+ .e-ie-img-save-dlg .e-btn {
489
+ @if $skin-name == 'Material3' {
490
+ background: transparent;
491
+ box-shadow: none;
492
+ border: none;
493
+ border-bottom: 1px solid;
494
+ border-radius: 0;
495
+ border-color: rgba(var(--color-sf-outline));
496
+ }
497
+ }
498
+
474
499
  .e-ie-straighten-value-span,
475
500
  .e-ie-straighten-span,
476
501
  .e-ie-toolbar-straighten {
@@ -553,4 +578,318 @@
553
578
  }
554
579
  }
555
580
  }
581
+
582
+ .e-ie-quality-slider.e-control-wrapper.e-slider-container.e-horizontal,
583
+ .e-ie-quality-option-container .e-slider-container.e-horizontal{
584
+ height: 28px;
585
+ }
586
+
587
+ .e-ie-quality-slider.e-control-wrapper.e-slider-container.e-horizontal .e-slider {
588
+ top: calc(50% - 14px) !important; /* stylelint-disable-line declaration-no-important */
589
+ }
590
+
591
+ .e-ie-quality-slider.e-slider-container + .e-ie-img-icon-button,
592
+ .e-ie-quality-option-container .e-slider-container.e-horizontal + .e-ie-img-icon-button {
593
+ margin-left: 20px !important; /* stylelint-disable-line declaration-no-important */
594
+ }
595
+
596
+ .e-ie-img-size {
597
+ margin: 10px 10px 0;
598
+ }
599
+
600
+ .e-ie-dlg-img-content {
601
+ width: 40%;
602
+ height: 100%;
603
+ margin-right: 5%;
604
+ display: flex;
605
+ flex-direction: column;
606
+ justify-content: center;
607
+ align-items: center;
608
+ }
609
+
610
+ .e-ie-img-input {
611
+ width: 90% !important; /* stylelint-disable-line declaration-no-important */
612
+ }
613
+
614
+ .e-ie-img-dlg-canvas {
615
+ width: 100%;
616
+ height: 100%;
617
+ }
618
+
619
+ .e-ie-img-size {
620
+ font-size: 14px;
621
+ display: flex;
622
+ flex-direction: column;
623
+ justify-content: flex-start;
624
+ }
625
+
626
+ .e-ie-dlg-right-content {
627
+ width: 60%;
628
+ }
629
+
630
+ .e-ie-img-save-name {
631
+ display: inline-block;
632
+ margin-right: 10px;
633
+ width: calc(71% - 13px);
634
+
635
+ @if $skin-name == 'FluentUI' {
636
+ width: calc(69% - 15px) !important; /* stylelint-disable-line declaration-no-important */
637
+ }
638
+ @if $skin-name == 'highcontrast' or $skin-name == 'fabric' or $skin-name == 'fabric-dark' {
639
+ margin-right: 8px !important; /* stylelint-disable-line declaration-no-important */
640
+ }
641
+ }
642
+
643
+ .e-ie-img-save-dlg {
644
+ display: inline-block;
645
+ width: 90px;
646
+ }
647
+
648
+ .e-ie-img-save-dlg .e-btn {
649
+ width: 100%;
650
+ }
651
+
652
+ .e-ie-img-label-name {
653
+ margin-bottom: 5px;
654
+ display: block;
655
+ }
656
+
657
+ .e-ie-img-quality-name {
658
+ position: relative;
659
+ width: 100% !important; /* stylelint-disable-line declaration-no-important */
660
+ }
661
+
662
+ .e-ie-quality-info {
663
+ margin-bottom: 0;
664
+ margin-top: 0;
665
+ }
666
+
667
+ .e-ie-quality-span {
668
+ margin-left: 5px;
669
+ display: inline-flex;
670
+ }
671
+
672
+ .e-ie-img-quality-label {
673
+ margin-bottom: 3%;
674
+ margin-top: 5%;
675
+ display: inline-flex;
676
+ }
677
+
678
+ .e-ie-img-quality-size {
679
+ margin-top: 5%;
680
+ display: block;
681
+ }
682
+
683
+ .e-ie-img-size-value-span {
684
+ width: 8%;
685
+ text-transform: capitalize;
686
+ margin-left: calc(100% - 194px);
687
+ margin-top: 4px;
688
+ @if $skin-name == 'highcontrast' {
689
+ margin-left: calc(100% - 175px);
690
+ }
691
+ @if $skin-name == 'FluentUI' or $skin-name == 'material' or $skin-name == 'Material3' {
692
+ margin-left: calc(100% - 185px);
693
+ }
694
+ @if $skin-name == 'fabric' {
695
+ margin-left: calc(100% - 180px);
696
+ }
697
+ }
698
+
699
+ .e-device.e-ie-save-dialog .e-ie-img-size-value-span {
700
+ margin-left: calc(100% - 145px) !important; /* stylelint-disable-line declaration-no-important */
701
+ @if $skin-name == 'highcontrast' {
702
+ margin-left: calc(100% - 135px) !important; /* stylelint-disable-line declaration-no-important */
703
+ }
704
+ @if $skin-name == 'FluentUI' {
705
+ margin-left: calc(100% - 155px) !important; /* stylelint-disable-line declaration-no-important */
706
+ }
707
+ @if $skin-name == 'fabric' or $skin-name == 'bootstrap' {
708
+ margin-left: calc(100% - 136px) !important; /* stylelint-disable-line declaration-no-important */
709
+ }
710
+ @if $skin-name == 'material' {
711
+ margin-left: calc(100% - 130px) !important; /* stylelint-disable-line declaration-no-important */
712
+ }
713
+ @if $skin-name == 'tailwind' {
714
+ margin-left: calc(100% - 163px) !important; /* stylelint-disable-line declaration-no-important */
715
+ }
716
+ @if $skin-name == 'bootstrap5' {
717
+ margin-left: calc(100% - 156px) !important; /* stylelint-disable-line declaration-no-important */
718
+ }
719
+ }
720
+
721
+ .e-bigger .e-ie-save-dialog .e-ie-img-save-name {
722
+ width: calc(71% - 30px) !important; /* stylelint-disable-line declaration-no-important */
723
+ }
724
+
725
+ .e-device.e-ie-save-dialog .e-ie-img-save-name {
726
+ width: calc(71% - 30px) !important; /* stylelint-disable-line declaration-no-important */
727
+ @if $skin-name == 'highcontrast' or $skin-name == 'fabric' or $skin-name == 'fabric-dark' or $skin-name == 'FluentUI' {
728
+ width: calc(71% - 33px) !important; /* stylelint-disable-line declaration-no-important */
729
+ }
730
+
731
+ @if $skin-name == 'tailwind' {
732
+ width: calc(71% - 31px) !important; /* stylelint-disable-line declaration-no-important */
733
+ }
734
+ }
735
+
736
+ .e-ie-img-icon-button {
737
+ margin-left: 10px;
738
+ width: max-content;
739
+ margin-bottom: $image-editor-icon-button;
740
+ @if $skin-name == 'tailwind' {
741
+ padding-top: 4px;
742
+ padding-bottom: 4px;
743
+ }
744
+ }
745
+
746
+ .e-bigger .e-image-editor .e-dlg-container .e-dialog,
747
+ .e-bigger.e-image-editor .e-dlg-container .e-dialog {
748
+ width: 656px;
749
+ }
750
+
751
+ .e-bigger .e-ie-img-save-dlg {
752
+ width: 106px;
753
+ }
754
+
755
+ .e-bigger .e-image-editor .e-control-wrapper.e-slider-container.e-horizontal,
756
+ .e-bigger.e-image-editor .e-control-wrapper.e-slider-container.e-horizontal {
757
+ width: 217px;
758
+ }
759
+
760
+ .e-ie-quality-option-container .e-btn-group .e-btn {
761
+ padding-left: $image-editor-button-label;
762
+ padding-right: $image-editor-button-label;
763
+ }
764
+
765
+ .e-bigger .e-dialog.e-blr-ie-save-dialog:not(.e-device) {
766
+ @if $skin-name == 'FluentUI' {
767
+ width: 656px !important; /* stylelint-disable-line declaration-no-important */
768
+ }
769
+ @else if $skin-name == 'highcontrast' or $skin-name == 'tailwind' {
770
+ width: 625px !important; /* stylelint-disable-line declaration-no-important */
771
+ }
772
+ @else if $skin-name == 'fabric' or $skin-name == 'fabric-dark' {
773
+ width: 635px !important; /* stylelint-disable-line declaration-no-important */
774
+ }
775
+ @else {
776
+ width: 620px !important; /* stylelint-disable-line declaration-no-important */
777
+ }
778
+
779
+ & .e-ie-img-icon-button {
780
+ padding: $image-editor-save-dlg-big-btn-pad;
781
+ }
782
+
783
+ & .e-btn-group .e-btn {
784
+ @if $skin-name == 'material' or $skin-name == 'material-dark' {
785
+ padding: 4px 10px 2px;
786
+ }
787
+ }
788
+ }
789
+
790
+ .e-blr-ie-save-dialog {
791
+ & .e-ie-img-save-name {
792
+ width: calc(67% - 13px);
793
+ }
794
+
795
+ & .e-ie-quality-custom {
796
+ width: calc(65% - 13px);
797
+ }
798
+
799
+ & .e-ie-quality-option-container .e-ie-img-icon-button {
800
+ @if $skin-name == 'FluentUI' {
801
+ margin-left: 25px;
802
+ }
803
+ @else {
804
+ margin-left: 20px;
805
+ }
806
+ }
807
+
808
+ & .e-ie-quality-option-container .e-slider-container.e-horizontal {
809
+ @if $skin-name == 'Material3' {
810
+ margin-top: 5px;
811
+ }
812
+ }
813
+
814
+ & .e-ie-img-size-value-span {
815
+ vertical-align: middle;
816
+ margin-left: calc(50% - 55px);
817
+ }
818
+
819
+ & .e-btn-group .e-btn {
820
+ padding: $image-editor-save-dlg-grp-btn-padding;
821
+ }
822
+
823
+ &.e-device {
824
+ & .e-ie-img-save-name {
825
+ @if $skin-name == 'FluentUI' or $skin-name == 'fabric' or $skin-name == 'fabric-dark' or $skin-name == 'highcontrast' {
826
+ width: calc(63% - 15px) !important; /* stylelint-disable-line declaration-no-important */
827
+ }
828
+ @else {
829
+ width: calc(64% - 15px) !important; /* stylelint-disable-line declaration-no-important */
830
+ }
831
+ }
832
+
833
+ & .e-ie-quality-custom {
834
+ width: 75% !important; /* stylelint-disable-line declaration-no-important */
835
+ }
836
+
837
+ & .e-ie-quality-option-container .e-ie-img-icon-button {
838
+ margin-left: 0;
839
+ }
840
+
841
+ & .e-slider-container {
842
+ margin-left: 0 !important; /* stylelint-disable-line declaration-no-important */
843
+ height: 28px !important; /* stylelint-disable-line declaration-no-important */
844
+ }
845
+
846
+ & .e-ie-img-size-value-span {
847
+ @if $skin-name == 'Material3' or $skin-name == 'material' or $skin-name == 'material-dark' or $skin-name == 'fabric' or $skin-name == 'fabric-dark' or $skin-name == 'highcontrast' {
848
+ margin-left: calc(75% - 100px) !important; /* stylelint-disable-line declaration-no-important */
849
+ }
850
+ @else if $skin-name == 'bootstrap' {
851
+ margin-left: calc(73% - 100px) !important; /* stylelint-disable-line declaration-no-important */
852
+ }
853
+ @else if $skin-name == 'tailwind' {
854
+ margin-left: calc(67% - 100px) !important; /* stylelint-disable-line declaration-no-important */
855
+ }
856
+ @else {
857
+ margin-left: calc(70% - 100px) !important; /* stylelint-disable-line declaration-no-important */
858
+ }
859
+ }
860
+
861
+ & .e-btn-group .e-btn {
862
+ padding: $image-editor-save-dlg-dev-grp-btn-padding;
863
+ }
864
+
865
+ & .e-ie-quality-option-container .e-ie-img-icon-button {
866
+ @if $skin-name == 'fluent2' {
867
+ padding: 8.5px;
868
+ }
869
+ }
870
+ }
871
+ }
872
+
873
+ .e-bigger .e-ie-save-dialog .e-ie-img-save-name {
874
+ width: calc(71% - 30px) !important; /* stylelint-disable-line declaration-no-important */
875
+ @if $skin-name == 'tailwind' or $skin-name == 'material' or $skin-name == 'bootstrap4' {
876
+ width: calc(65% - 13px) !important; /* stylelint-disable-line declaration-no-important */
877
+ }
878
+ @if $skin-name == 'highcontrast' {
879
+ width: calc(62% - 13px) !important; /* stylelint-disable-line declaration-no-important */
880
+ }
881
+ @if $skin-name == 'FluentUI' {
882
+ width: calc(68% - 30px) !important; /* stylelint-disable-line declaration-no-important */
883
+ }
884
+ @if $skin-name == 'fabric' or $skin-name == 'bootstrap' {
885
+ width: calc(64% - 13px) !important; /* stylelint-disable-line declaration-no-important */
886
+ }
887
+ }
888
+
889
+ .e-ie-save-dialog .e-ie-quality-slider.e-slider-container + .e-ie-img-icon-button,
890
+ .e-ie-save-dialog .e-ie-quality-option-container .e-slider-container.e-horizontal + .e-ie-img-icon-button {
891
+ @if $skin-name == 'Material3' {
892
+ margin-left: 30px !important; /* stylelint-disable-line declaration-no-important */
893
+ }
894
+ }
556
895
  }
@@ -19,3 +19,8 @@ $image-editor-bigger-slider-handler: calc(50% - 7px) !default;
19
19
  $image-editor-device-slider-handler: calc(50% - 5px) !default;
20
20
  $image-editor-finetune-value-span: 31% !default;
21
21
  $image-editor-finetune-span: 31% !default;
22
+ $image-editor-button-label: 10px !default;
23
+ $image-editor-save-dlg-big-btn-pad: 4px 11px 2px !default;
24
+ $image-editor-save-dlg-grp-btn-padding: 6px 7.5px 4px !default;
25
+ $image-editor-save-dlg-dev-grp-btn-padding: 2px 9.5px !default;
26
+ $image-editor-icon-button: 5px !default;
@@ -19,3 +19,8 @@ $image-editor-bigger-slider-handler: calc(50% - 7px) !default;
19
19
  $image-editor-device-slider-handler: calc(50% - 5px) !default;
20
20
  $image-editor-finetune-value-span: 31% !default;
21
21
  $image-editor-finetune-span: 31% !default;
22
+ $image-editor-button-label: 10px !default;
23
+ $image-editor-save-dlg-big-btn-pad: 4px 11px 2px !default;
24
+ $image-editor-save-dlg-grp-btn-padding: 6px 7.5px 4px !default;
25
+ $image-editor-save-dlg-dev-grp-btn-padding: 2px 9.5px !default;
26
+ $image-editor-icon-button: 5px !default;
@@ -19,3 +19,8 @@ $image-editor-bigger-slider-handler: calc(50% - 10px) !default;
19
19
  $image-editor-device-slider-handler: calc(50% - 8px) !default;
20
20
  $image-editor-finetune-value-span: 29% !default;
21
21
  $image-editor-finetune-span: 28% !default;
22
+ $image-editor-button-label: 13px !default;
23
+ $image-editor-save-dlg-big-btn-pad: 8px 11px !default;
24
+ $image-editor-save-dlg-grp-btn-padding: 8px 10.5px !default;
25
+ $image-editor-save-dlg-dev-grp-btn-padding: 11px 12px !default;
26
+ $image-editor-icon-button: 3px !default;
@@ -19,3 +19,8 @@ $image-editor-bigger-slider-handler: calc(50% - 7px) !default;
19
19
  $image-editor-device-slider-handler: calc(50% - 9px) !default;
20
20
  $image-editor-finetune-value-span: 28% !default;
21
21
  $image-editor-finetune-span: 28% !default;
22
+ $image-editor-button-label: 13px !default;
23
+ $image-editor-save-dlg-big-btn-pad: 4px 15px !default;
24
+ $image-editor-save-dlg-grp-btn-padding: 4px 10px !default;
25
+ $image-editor-save-dlg-dev-grp-btn-padding: 4px 9px !default;
26
+ $image-editor-icon-button: 2.9px !default;