@syncfusion/ej2-image-editor 29.2.5 → 30.1.38

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 (95) hide show
  1. package/.eslintrc.json +2 -0
  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 +898 -227
  5. package/dist/es6/ej2-image-editor.es2015.js.map +1 -1
  6. package/dist/es6/ej2-image-editor.es5.js +920 -237
  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 +15 -47
  12. package/src/image-editor/action/crop.js +1 -1
  13. package/src/image-editor/action/draw.d.ts +1 -0
  14. package/src/image-editor/action/draw.js +103 -31
  15. package/src/image-editor/action/export.js +3 -0
  16. package/src/image-editor/action/selection.d.ts +1 -0
  17. package/src/image-editor/action/selection.js +43 -5
  18. package/src/image-editor/action/shape.d.ts +1 -0
  19. package/src/image-editor/action/shape.js +334 -49
  20. package/src/image-editor/action/transform.js +50 -43
  21. package/src/image-editor/action/undo-redo.d.ts +2 -0
  22. package/src/image-editor/action/undo-redo.js +22 -1
  23. package/src/image-editor/base/enum.d.ts +3 -1
  24. package/src/image-editor/base/enum.js +2 -0
  25. package/src/image-editor/base/image-editor.d.ts +13 -2
  26. package/src/image-editor/base/image-editor.js +242 -27
  27. package/src/image-editor/base/interface.d.ts +17 -1
  28. package/src/image-editor/renderer/toolbar.d.ts +2 -0
  29. package/src/image-editor/renderer/toolbar.js +121 -80
  30. package/styles/bds-lite.css +4 -0
  31. package/styles/bds.css +8 -0
  32. package/styles/bootstrap-dark-lite.css +4 -0
  33. package/styles/bootstrap-dark.css +4 -0
  34. package/styles/bootstrap-lite.css +4 -0
  35. package/styles/bootstrap.css +4 -0
  36. package/styles/bootstrap4-lite.css +4 -0
  37. package/styles/bootstrap4.css +4 -0
  38. package/styles/bootstrap5-dark-lite.css +4 -0
  39. package/styles/bootstrap5-dark.css +4 -0
  40. package/styles/bootstrap5-lite.css +4 -0
  41. package/styles/bootstrap5.3-lite.css +4 -0
  42. package/styles/bootstrap5.3.css +4 -0
  43. package/styles/bootstrap5.css +4 -0
  44. package/styles/fabric-dark-lite.css +4 -0
  45. package/styles/fabric-dark.css +19 -0
  46. package/styles/fabric-lite.css +4 -0
  47. package/styles/fabric.css +19 -0
  48. package/styles/fluent-dark-lite.css +4 -0
  49. package/styles/fluent-dark.css +13 -0
  50. package/styles/fluent-lite.css +4 -0
  51. package/styles/fluent.css +13 -0
  52. package/styles/fluent2-lite.css +8 -0
  53. package/styles/fluent2.css +12 -0
  54. package/styles/highcontrast-light-lite.css +4 -0
  55. package/styles/highcontrast-light.css +4 -0
  56. package/styles/highcontrast-lite.css +9 -1
  57. package/styles/highcontrast.css +14 -1
  58. package/styles/image-editor/_bigger.scss +56 -0
  59. package/styles/image-editor/_highcontrast-definition.scss +1 -1
  60. package/styles/image-editor/_layout.scss +39 -0
  61. package/styles/image-editor/bds.css +8 -0
  62. package/styles/image-editor/bootstrap-dark.css +4 -0
  63. package/styles/image-editor/bootstrap.css +4 -0
  64. package/styles/image-editor/bootstrap4.css +4 -0
  65. package/styles/image-editor/bootstrap5-dark.css +4 -0
  66. package/styles/image-editor/bootstrap5.3.css +4 -0
  67. package/styles/image-editor/bootstrap5.css +4 -0
  68. package/styles/image-editor/fabric-dark.css +19 -0
  69. package/styles/image-editor/fabric.css +19 -0
  70. package/styles/image-editor/fluent-dark.css +13 -0
  71. package/styles/image-editor/fluent.css +13 -0
  72. package/styles/image-editor/fluent2.css +12 -0
  73. package/styles/image-editor/highcontrast-light.css +4 -0
  74. package/styles/image-editor/highcontrast.css +14 -1
  75. package/styles/image-editor/material-dark.css +4 -0
  76. package/styles/image-editor/material.css +8 -0
  77. package/styles/image-editor/material3-dark.css +24 -1
  78. package/styles/image-editor/material3.css +24 -1
  79. package/styles/image-editor/tailwind-dark.css +8 -0
  80. package/styles/image-editor/tailwind.css +8 -0
  81. package/styles/image-editor/tailwind3.css +4 -0
  82. package/styles/material-dark-lite.css +4 -0
  83. package/styles/material-dark.css +4 -0
  84. package/styles/material-lite.css +4 -0
  85. package/styles/material.css +8 -0
  86. package/styles/material3-dark-lite.css +15 -0
  87. package/styles/material3-dark.css +24 -1
  88. package/styles/material3-lite.css +15 -0
  89. package/styles/material3.css +24 -1
  90. package/styles/tailwind-dark-lite.css +4 -0
  91. package/styles/tailwind-dark.css +8 -0
  92. package/styles/tailwind-lite.css +4 -0
  93. package/styles/tailwind.css +8 -0
  94. package/styles/tailwind3-lite.css +4 -0
  95. package/styles/tailwind3.css +4 -0
@@ -316,6 +316,10 @@
316
316
  .e-image-editor .e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn .e-icons.e-btn-icon {
317
317
  font-size: 16px;
318
318
  }
319
+ .e-image-editor .e-toolbar .e-toolbar-items .e-toolbar-item .e-dropdown-btn.e-btn.e-icon-btn {
320
+ padding-top: 7.5px;
321
+ padding-bottom: 7.5px;
322
+ }
319
323
  .e-image-editor .e-toolbar .e-toolbar-items .e-upload {
320
324
  border: none;
321
325
  }
@@ -720,6 +724,10 @@
720
724
  opacity: 1 !important; /* stylelint-disable-line declaration-no-important */
721
725
  }
722
726
 
727
+ .e-device.e-image-editor .e-ie-quality-slider.e-control-wrapper.e-slider-container.e-horizontal .e-slider {
728
+ top: calc(50% - 18px) !important; /* stylelint-disable-line declaration-no-important */
729
+ }
730
+
723
731
  .e-image-editor {
724
732
  background: var(--color-sf-content-bg-color-alt1);
725
733
  }
@@ -316,6 +316,10 @@
316
316
  .e-image-editor .e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn .e-icons.e-btn-icon {
317
317
  font-size: 16px;
318
318
  }
319
+ .e-image-editor .e-toolbar .e-toolbar-items .e-toolbar-item .e-dropdown-btn.e-btn.e-icon-btn {
320
+ padding-top: 7.5px;
321
+ padding-bottom: 7.5px;
322
+ }
319
323
  .e-image-editor .e-toolbar .e-toolbar-items .e-upload {
320
324
  border: none;
321
325
  }
@@ -720,6 +724,10 @@
720
724
  opacity: 1 !important; /* stylelint-disable-line declaration-no-important */
721
725
  }
722
726
 
727
+ .e-device.e-image-editor .e-ie-quality-slider.e-control-wrapper.e-slider-container.e-horizontal .e-slider {
728
+ top: calc(50% - 18px) !important; /* stylelint-disable-line declaration-no-important */
729
+ }
730
+
723
731
  .e-image-editor {
724
732
  background: var(--color-sf-content-bg-color-alt1);
725
733
  }
@@ -880,6 +888,10 @@
880
888
  .e-image-editor.e-bigger .e-toolbar .e-toolbar-items.e-tbar-pos .e-toolbar-left {
881
889
  line-height: 1;
882
890
  }
891
+ .e-bigger .e-image-editor .e-blr-ie-save-dialog .e-dialog .e-dlg-content .e-ie-dlg-right-content .e-dropdown-btn,
892
+ .e-image-editor.e-bigger .e-blr-ie-save-dialog .e-dialog .e-dlg-content .e-ie-dlg-right-content .e-dropdown-btn {
893
+ padding: 8.2px 14px;
894
+ }
883
895
  .e-bigger .e-image-editor .e-dropdown-btn.e-ie-ddb-popup,
884
896
  .e-image-editor.e-bigger .e-dropdown-btn.e-ie-ddb-popup {
885
897
  padding-left: 16px;
@@ -687,6 +687,10 @@
687
687
  opacity: 1 !important; /* stylelint-disable-line declaration-no-important */
688
688
  }
689
689
 
690
+ .e-device.e-image-editor .e-ie-quality-slider.e-control-wrapper.e-slider-container.e-horizontal .e-slider {
691
+ top: calc(50% - 18px) !important; /* stylelint-disable-line declaration-no-important */
692
+ }
693
+
690
694
  .e-image-editor {
691
695
  background: #fff;
692
696
  }
@@ -687,6 +687,10 @@
687
687
  opacity: 1 !important; /* stylelint-disable-line declaration-no-important */
688
688
  }
689
689
 
690
+ .e-device.e-image-editor .e-ie-quality-slider.e-control-wrapper.e-slider-container.e-horizontal .e-slider {
691
+ top: calc(50% - 18px) !important; /* stylelint-disable-line declaration-no-important */
692
+ }
693
+
690
694
  .e-image-editor {
691
695
  background: #fff;
692
696
  }
@@ -416,6 +416,10 @@
416
416
  margin-left: calc(50% - 137px);
417
417
  height: 54px !important; /* stylelint-disable-line declaration-no-important */
418
418
  }
419
+ .e-image-editor .e-ie-save-dialog .e-dialog .e-dlg-content .e-ie-dlg-right-content .e-dropdown-btn, .e-image-editor .e-blr-ie-save-dialog .e-dialog .e-dlg-content .e-ie-dlg-right-content .e-dropdown-btn {
420
+ padding: 2px 15px;
421
+ }
422
+
419
423
  .e-ie-straighten-value-span,
420
424
  .e-ie-straighten-span,
421
425
  .e-ie-toolbar-straighten {
@@ -695,6 +699,10 @@
695
699
  opacity: 1 !important; /* stylelint-disable-line declaration-no-important */
696
700
  }
697
701
 
702
+ .e-device.e-image-editor .e-ie-quality-slider.e-control-wrapper.e-slider-container.e-horizontal .e-slider {
703
+ top: calc(50% - 18px) !important; /* stylelint-disable-line declaration-no-important */
704
+ }
705
+
698
706
  .e-image-editor {
699
707
  background: #000;
700
708
  }
@@ -711,7 +719,7 @@
711
719
  color: #fff;
712
720
  }
713
721
  .e-image-editor .e-toolbar .e-toolbar-items .e-tbar-btn.e-btn.e-selected-btn {
714
- background: #fff !important; /* stylelint-disable-line declaration-no-important */
722
+ background: #ffd939 !important; /* stylelint-disable-line declaration-no-important */
715
723
  }
716
724
  .e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn {
717
725
  background: inherit;
@@ -416,6 +416,10 @@
416
416
  margin-left: calc(50% - 137px);
417
417
  height: 54px !important; /* stylelint-disable-line declaration-no-important */
418
418
  }
419
+ .e-image-editor .e-ie-save-dialog .e-dialog .e-dlg-content .e-ie-dlg-right-content .e-dropdown-btn, .e-image-editor .e-blr-ie-save-dialog .e-dialog .e-dlg-content .e-ie-dlg-right-content .e-dropdown-btn {
420
+ padding: 2px 15px;
421
+ }
422
+
419
423
  .e-ie-straighten-value-span,
420
424
  .e-ie-straighten-span,
421
425
  .e-ie-toolbar-straighten {
@@ -695,6 +699,10 @@
695
699
  opacity: 1 !important; /* stylelint-disable-line declaration-no-important */
696
700
  }
697
701
 
702
+ .e-device.e-image-editor .e-ie-quality-slider.e-control-wrapper.e-slider-container.e-horizontal .e-slider {
703
+ top: calc(50% - 18px) !important; /* stylelint-disable-line declaration-no-important */
704
+ }
705
+
698
706
  .e-image-editor {
699
707
  background: #000;
700
708
  }
@@ -711,7 +719,7 @@
711
719
  color: #fff;
712
720
  }
713
721
  .e-image-editor .e-toolbar .e-toolbar-items .e-tbar-btn.e-btn.e-selected-btn {
714
- background: #fff !important; /* stylelint-disable-line declaration-no-important */
722
+ background: #ffd939 !important; /* stylelint-disable-line declaration-no-important */
715
723
  }
716
724
  .e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn {
717
725
  background: inherit;
@@ -842,6 +850,11 @@
842
850
  .e-image-editor.e-bigger .e-toolbar .e-toolbar-items.e-tbar-pos .e-toolbar-left {
843
851
  line-height: 1;
844
852
  }
853
+ .e-bigger .e-image-editor .e-ie-save-dialog .e-dialog .e-dlg-content .e-ie-dlg-right-content .e-dropdown-btn, .e-bigger .e-image-editor .e-blr-ie-save-dialog .e-dialog .e-dlg-content .e-ie-dlg-right-content .e-dropdown-btn,
854
+ .e-image-editor.e-bigger .e-ie-save-dialog .e-dialog .e-dlg-content .e-ie-dlg-right-content .e-dropdown-btn,
855
+ .e-image-editor.e-bigger .e-blr-ie-save-dialog .e-dialog .e-dlg-content .e-ie-dlg-right-content .e-dropdown-btn {
856
+ padding: 3px 10px;
857
+ }
845
858
  .e-bigger .e-straighten .e-control-wrapper.e-slider-container .e-slider .e-handle {
846
859
  top: calc(50% - 8px) !important; /* stylelint-disable-line declaration-no-important */
847
860
  }
@@ -134,6 +134,25 @@
134
134
  }
135
135
  }
136
136
 
137
+ & .e-ie-save-dialog .e-dialog .e-dlg-content .e-ie-dlg-right-content .e-dropdown-btn,
138
+ & .e-blr-ie-save-dialog .e-dialog .e-dlg-content .e-ie-dlg-right-content .e-dropdown-btn {
139
+ @if $skin-name == 'Material3' {
140
+ padding: 10px;
141
+ }
142
+ @if $skin-name == 'highcontrast' {
143
+ padding: 3px 10px;
144
+ }
145
+ @if $skin-name == 'FluentUI' {
146
+ padding: 7px 14px;
147
+ }
148
+ }
149
+
150
+ & .e-blr-ie-save-dialog .e-dialog .e-dlg-content .e-ie-dlg-right-content .e-dropdown-btn {
151
+ @if $skin-name == 'fluent2' {
152
+ padding: 8.2px 14px;
153
+ }
154
+ }
155
+
137
156
  @if $skin-name == 'fluent2' {
138
157
  & .e-dropdown-btn.e-ie-ddb-popup {
139
158
  padding-left: 16px;
@@ -214,3 +233,40 @@
214
233
  }
215
234
  }
216
235
  }
236
+
237
+ .e-bigger .e-device.e-image-editor {
238
+ .e-ie-img-save-dlg {
239
+ @if $skin-name == 'Material3' {
240
+ width: 106px;
241
+ }
242
+ @else if $skin-name == 'fabric' or $skin-name == 'fabric-dark' {
243
+ width: 120px;
244
+ }
245
+ @else if $skin-name == 'FluentUI' {
246
+ width: 107px;
247
+ }
248
+ @else if $skin-name == 'material' {
249
+ width: 102px;
250
+ }
251
+ @else if $skin-name == 'tailwind' {
252
+ width: 106px;
253
+ }
254
+ }
255
+ .e-ie-img-save-name {
256
+ @if $skin-name == 'fabric' or $skin-name == 'fabric-dark' {
257
+ width: calc(64% - 27px) !important; /* stylelint-disable-line declaration-no-important */
258
+ }
259
+ }
260
+ }
261
+
262
+ .e-bigger .e-device.e-image-editor .e-blr-ie-save-dialog .e-ie-img-save-dlg {
263
+ @if $skin-name == 'fabric' or $skin-name == 'fabric-dark' {
264
+ width: 115px;
265
+ }
266
+ }
267
+
268
+ .e-blr-ie-save-dialog.e-device .e-ie-img-save-name {
269
+ @if $skin-name == 'fabric' or $skin-name == 'fabric-dark' {
270
+ width: calc(64% - 35px) !important; /* stylelint-disable-line declaration-no-important */
271
+ }
272
+ }
@@ -2,7 +2,7 @@ $image-editor-background: $bg-base-0 !default;
2
2
  $image-editor-border: 1px solid $border-fg !default;
3
3
  $image-editor-toolbar-icon-color: $content-font !default;
4
4
  $img-editor-cp-preview-border-bottom-color: $selection-font !default;
5
- $image-editor-icon-sel-bg-color: $content-font !default;
5
+ $image-editor-icon-sel-bg-color: $selection-bg !default;
6
6
  $image-editor-ddbtn-margin-top: 0 !default;
7
7
  $image-editor-tbar-height: 38px !default;
8
8
  $image-editor-bigger-tbar-height: 48px !default;
@@ -172,6 +172,17 @@
172
172
  }
173
173
  }
174
174
  }
175
+ & .e-dropdown-btn {
176
+ &.e-btn.e-icon-btn {
177
+ @if $skin-name == 'fluent2' {
178
+ padding-top: 7.5px;
179
+ padding-bottom: 7.5px;
180
+ }
181
+ @if $skin-name == 'Material3' {
182
+ padding: 8px 16px;
183
+ }
184
+ }
185
+ }
175
186
  }
176
187
 
177
188
  & .e-upload {
@@ -380,6 +391,16 @@
380
391
  }
381
392
  }
382
393
 
394
+ & .e-ie-save-dialog .e-dialog .e-dlg-content .e-ie-dlg-right-content .e-dropdown-btn,
395
+ & .e-blr-ie-save-dialog .e-dialog .e-dlg-content .e-ie-dlg-right-content .e-dropdown-btn {
396
+ @if $skin-name == 'Material3' {
397
+ padding: 8px 13px;
398
+ }
399
+ @if $skin-name == 'highcontrast' {
400
+ padding: 2px 15px;
401
+ }
402
+ }
403
+
383
404
  @if $skin-name == 'fluent2' {
384
405
  & .e-dropdown-btn.e-ie-ddb-popup {
385
406
  padding-left: 14px;
@@ -824,4 +845,22 @@
824
845
  .e-image-editor.e-control.e-readonly {
825
846
  opacity: 1 !important; /* stylelint-disable-line declaration-no-important */
826
847
  }
848
+
849
+ .e-device.e-image-editor .e-ie-quality-slider.e-control-wrapper.e-slider-container.e-horizontal .e-slider {
850
+ @if $skin-name == 'fluent2' or $skin-name == 'highcontrast' or $skin-name == 'highcontrast-light' or $skin-name == 'fabric' or $skin-name == 'fabric-dark' or $skin-name == 'FluentUI' {
851
+ top: calc(50% - 18px) !important; /* stylelint-disable-line declaration-no-important */
852
+ }
853
+ @else {
854
+ top: calc(50% - 16px) !important; /* stylelint-disable-line declaration-no-important */
855
+ }
856
+ }
857
+
858
+ .e-device.e-image-editor {
859
+ .e-ie-save-dialog .e-slider-container .e-slider .e-handle,
860
+ .e-blr-ie-save-dialog .e-slider-container .e-slider .e-handle {
861
+ @if $skin-name == 'Material3' {
862
+ top: calc(50% - 9px) !important; /* stylelint-disable-line declaration-no-important */
863
+ }
864
+ }
865
+ }
827
866
  }
@@ -801,6 +801,10 @@
801
801
  opacity: 1 !important; /* stylelint-disable-line declaration-no-important */
802
802
  }
803
803
 
804
+ .e-device.e-image-editor .e-ie-quality-slider.e-control-wrapper.e-slider-container.e-horizontal .e-slider {
805
+ top: calc(50% - 16px) !important; /* stylelint-disable-line declaration-no-important */
806
+ }
807
+
804
808
  .e-image-editor {
805
809
  background: var(--color-sf-border-secondary);
806
810
  }
@@ -981,4 +985,8 @@
981
985
  .e-bigger .e-ie-save-dialog .e-ie-img-save-name {
982
986
  width: calc(71% - 30px) !important; /* stylelint-disable-line declaration-no-important */
983
987
  width: calc(65% - 13px) !important; /* stylelint-disable-line declaration-no-important */
988
+ }
989
+
990
+ .e-bigger .e-device.e-image-editor .e-ie-img-save-dlg {
991
+ width: 106px;
984
992
  }
@@ -688,6 +688,10 @@
688
688
  opacity: 1 !important; /* stylelint-disable-line declaration-no-important */
689
689
  }
690
690
 
691
+ .e-device.e-image-editor .e-ie-quality-slider.e-control-wrapper.e-slider-container.e-horizontal .e-slider {
692
+ top: calc(50% - 16px) !important; /* stylelint-disable-line declaration-no-important */
693
+ }
694
+
691
695
  .e-image-editor {
692
696
  background: #959595;
693
697
  }
@@ -689,6 +689,10 @@
689
689
  opacity: 1 !important; /* stylelint-disable-line declaration-no-important */
690
690
  }
691
691
 
692
+ .e-device.e-image-editor .e-ie-quality-slider.e-control-wrapper.e-slider-container.e-horizontal .e-slider {
693
+ top: calc(50% - 16px) !important; /* stylelint-disable-line declaration-no-important */
694
+ }
695
+
692
696
  .e-image-editor {
693
697
  background: #e6e6e6;
694
698
  }
@@ -687,6 +687,10 @@
687
687
  opacity: 1 !important; /* stylelint-disable-line declaration-no-important */
688
688
  }
689
689
 
690
+ .e-device.e-image-editor .e-ie-quality-slider.e-control-wrapper.e-slider-container.e-horizontal .e-slider {
691
+ top: calc(50% - 16px) !important; /* stylelint-disable-line declaration-no-important */
692
+ }
693
+
690
694
  .e-image-editor {
691
695
  background: #e9ecef;
692
696
  }
@@ -694,6 +694,10 @@
694
694
  opacity: 1 !important; /* stylelint-disable-line declaration-no-important */
695
695
  }
696
696
 
697
+ .e-device.e-image-editor .e-ie-quality-slider.e-control-wrapper.e-slider-container.e-horizontal .e-slider {
698
+ top: calc(50% - 16px) !important; /* stylelint-disable-line declaration-no-important */
699
+ }
700
+
697
701
  .e-image-editor {
698
702
  background: rgb(68.0034482759, 75.85, 83.6965517241);
699
703
  }
@@ -698,6 +698,10 @@
698
698
  opacity: 1 !important; /* stylelint-disable-line declaration-no-important */
699
699
  }
700
700
 
701
+ .e-device.e-image-editor .e-ie-quality-slider.e-control-wrapper.e-slider-container.e-horizontal .e-slider {
702
+ top: calc(50% - 16px) !important; /* stylelint-disable-line declaration-no-important */
703
+ }
704
+
701
705
  .e-image-editor {
702
706
  background: var(--color-sf-border-light);
703
707
  }
@@ -694,6 +694,10 @@
694
694
  opacity: 1 !important; /* stylelint-disable-line declaration-no-important */
695
695
  }
696
696
 
697
+ .e-device.e-image-editor .e-ie-quality-slider.e-control-wrapper.e-slider-container.e-horizontal .e-slider {
698
+ top: calc(50% - 16px) !important; /* stylelint-disable-line declaration-no-important */
699
+ }
700
+
697
701
  .e-image-editor {
698
702
  background: #dee2e6;
699
703
  }
@@ -690,6 +690,10 @@
690
690
  opacity: 1 !important; /* stylelint-disable-line declaration-no-important */
691
691
  }
692
692
 
693
+ .e-device.e-image-editor .e-ie-quality-slider.e-control-wrapper.e-slider-container.e-horizontal .e-slider {
694
+ top: calc(50% - 18px) !important; /* stylelint-disable-line declaration-no-important */
695
+ }
696
+
693
697
  .e-image-editor {
694
698
  background: #201f1f;
695
699
  }
@@ -869,4 +873,19 @@
869
873
  }
870
874
  .e-bigger .e-ie-save-dialog .e-ie-img-save-name {
871
875
  width: calc(71% - 30px) !important; /* stylelint-disable-line declaration-no-important */
876
+ }
877
+
878
+ .e-bigger .e-device.e-image-editor .e-ie-img-save-dlg {
879
+ width: 120px;
880
+ }
881
+ .e-bigger .e-device.e-image-editor .e-ie-img-save-name {
882
+ width: calc(64% - 27px) !important; /* stylelint-disable-line declaration-no-important */
883
+ }
884
+
885
+ .e-bigger .e-device.e-image-editor .e-blr-ie-save-dialog .e-ie-img-save-dlg {
886
+ width: 115px;
887
+ }
888
+
889
+ .e-blr-ie-save-dialog.e-device .e-ie-img-save-name {
890
+ width: calc(64% - 35px) !important; /* stylelint-disable-line declaration-no-important */
872
891
  }
@@ -692,6 +692,10 @@
692
692
  opacity: 1 !important; /* stylelint-disable-line declaration-no-important */
693
693
  }
694
694
 
695
+ .e-device.e-image-editor .e-ie-quality-slider.e-control-wrapper.e-slider-container.e-horizontal .e-slider {
696
+ top: calc(50% - 18px) !important; /* stylelint-disable-line declaration-no-important */
697
+ }
698
+
695
699
  .e-image-editor {
696
700
  background: #fff;
697
701
  }
@@ -872,4 +876,19 @@
872
876
  .e-bigger .e-ie-save-dialog .e-ie-img-save-name {
873
877
  width: calc(71% - 30px) !important; /* stylelint-disable-line declaration-no-important */
874
878
  width: calc(64% - 13px) !important; /* stylelint-disable-line declaration-no-important */
879
+ }
880
+
881
+ .e-bigger .e-device.e-image-editor .e-ie-img-save-dlg {
882
+ width: 120px;
883
+ }
884
+ .e-bigger .e-device.e-image-editor .e-ie-img-save-name {
885
+ width: calc(64% - 27px) !important; /* stylelint-disable-line declaration-no-important */
886
+ }
887
+
888
+ .e-bigger .e-device.e-image-editor .e-blr-ie-save-dialog .e-ie-img-save-dlg {
889
+ width: 115px;
890
+ }
891
+
892
+ .e-blr-ie-save-dialog.e-device .e-ie-img-save-name {
893
+ width: calc(64% - 35px) !important; /* stylelint-disable-line declaration-no-important */
875
894
  }
@@ -697,6 +697,10 @@
697
697
  opacity: 1 !important; /* stylelint-disable-line declaration-no-important */
698
698
  }
699
699
 
700
+ .e-device.e-image-editor .e-ie-quality-slider.e-control-wrapper.e-slider-container.e-horizontal .e-slider {
701
+ top: calc(50% - 18px) !important; /* stylelint-disable-line declaration-no-important */
702
+ }
703
+
700
704
  .e-image-editor {
701
705
  background: #201f1e;
702
706
  }
@@ -847,6 +851,11 @@
847
851
  .e-image-editor.e-bigger .e-toolbar .e-toolbar-items.e-tbar-pos .e-toolbar-left {
848
852
  line-height: 1;
849
853
  }
854
+ .e-bigger .e-image-editor .e-ie-save-dialog .e-dialog .e-dlg-content .e-ie-dlg-right-content .e-dropdown-btn, .e-bigger .e-image-editor .e-blr-ie-save-dialog .e-dialog .e-dlg-content .e-ie-dlg-right-content .e-dropdown-btn,
855
+ .e-image-editor.e-bigger .e-ie-save-dialog .e-dialog .e-dlg-content .e-ie-dlg-right-content .e-dropdown-btn,
856
+ .e-image-editor.e-bigger .e-blr-ie-save-dialog .e-dialog .e-dlg-content .e-ie-dlg-right-content .e-dropdown-btn {
857
+ padding: 7px 14px;
858
+ }
850
859
  .e-bigger .e-straighten .e-control-wrapper.e-slider-container .e-slider .e-handle {
851
860
  top: calc(50% - 8px) !important; /* stylelint-disable-line declaration-no-important */
852
861
  }
@@ -878,4 +887,8 @@
878
887
  .e-bigger .e-ie-save-dialog .e-ie-img-save-name {
879
888
  width: calc(71% - 30px) !important; /* stylelint-disable-line declaration-no-important */
880
889
  width: calc(68% - 30px) !important; /* stylelint-disable-line declaration-no-important */
890
+ }
891
+
892
+ .e-bigger .e-device.e-image-editor .e-ie-img-save-dlg {
893
+ width: 107px;
881
894
  }
@@ -697,6 +697,10 @@
697
697
  opacity: 1 !important; /* stylelint-disable-line declaration-no-important */
698
698
  }
699
699
 
700
+ .e-device.e-image-editor .e-ie-quality-slider.e-control-wrapper.e-slider-container.e-horizontal .e-slider {
701
+ top: calc(50% - 18px) !important; /* stylelint-disable-line declaration-no-important */
702
+ }
703
+
700
704
  .e-image-editor {
701
705
  background: #faf9f8;
702
706
  }
@@ -847,6 +851,11 @@
847
851
  .e-image-editor.e-bigger .e-toolbar .e-toolbar-items.e-tbar-pos .e-toolbar-left {
848
852
  line-height: 1;
849
853
  }
854
+ .e-bigger .e-image-editor .e-ie-save-dialog .e-dialog .e-dlg-content .e-ie-dlg-right-content .e-dropdown-btn, .e-bigger .e-image-editor .e-blr-ie-save-dialog .e-dialog .e-dlg-content .e-ie-dlg-right-content .e-dropdown-btn,
855
+ .e-image-editor.e-bigger .e-ie-save-dialog .e-dialog .e-dlg-content .e-ie-dlg-right-content .e-dropdown-btn,
856
+ .e-image-editor.e-bigger .e-blr-ie-save-dialog .e-dialog .e-dlg-content .e-ie-dlg-right-content .e-dropdown-btn {
857
+ padding: 7px 14px;
858
+ }
850
859
  .e-bigger .e-straighten .e-control-wrapper.e-slider-container .e-slider .e-handle {
851
860
  top: calc(50% - 8px) !important; /* stylelint-disable-line declaration-no-important */
852
861
  }
@@ -878,4 +887,8 @@
878
887
  .e-bigger .e-ie-save-dialog .e-ie-img-save-name {
879
888
  width: calc(71% - 30px) !important; /* stylelint-disable-line declaration-no-important */
880
889
  width: calc(68% - 30px) !important; /* stylelint-disable-line declaration-no-important */
890
+ }
891
+
892
+ .e-bigger .e-device.e-image-editor .e-ie-img-save-dlg {
893
+ width: 107px;
881
894
  }
@@ -316,6 +316,10 @@
316
316
  .e-image-editor .e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn .e-icons.e-btn-icon {
317
317
  font-size: 16px;
318
318
  }
319
+ .e-image-editor .e-toolbar .e-toolbar-items .e-toolbar-item .e-dropdown-btn.e-btn.e-icon-btn {
320
+ padding-top: 7.5px;
321
+ padding-bottom: 7.5px;
322
+ }
319
323
  .e-image-editor .e-toolbar .e-toolbar-items .e-upload {
320
324
  border: none;
321
325
  }
@@ -720,6 +724,10 @@
720
724
  opacity: 1 !important; /* stylelint-disable-line declaration-no-important */
721
725
  }
722
726
 
727
+ .e-device.e-image-editor .e-ie-quality-slider.e-control-wrapper.e-slider-container.e-horizontal .e-slider {
728
+ top: calc(50% - 18px) !important; /* stylelint-disable-line declaration-no-important */
729
+ }
730
+
723
731
  .e-image-editor {
724
732
  background: var(--color-sf-content-bg-color-alt1);
725
733
  }
@@ -880,6 +888,10 @@
880
888
  .e-image-editor.e-bigger .e-toolbar .e-toolbar-items.e-tbar-pos .e-toolbar-left {
881
889
  line-height: 1;
882
890
  }
891
+ .e-bigger .e-image-editor .e-blr-ie-save-dialog .e-dialog .e-dlg-content .e-ie-dlg-right-content .e-dropdown-btn,
892
+ .e-image-editor.e-bigger .e-blr-ie-save-dialog .e-dialog .e-dlg-content .e-ie-dlg-right-content .e-dropdown-btn {
893
+ padding: 8.2px 14px;
894
+ }
883
895
  .e-bigger .e-image-editor .e-dropdown-btn.e-ie-ddb-popup,
884
896
  .e-image-editor.e-bigger .e-dropdown-btn.e-ie-ddb-popup {
885
897
  padding-left: 16px;
@@ -687,6 +687,10 @@
687
687
  opacity: 1 !important; /* stylelint-disable-line declaration-no-important */
688
688
  }
689
689
 
690
+ .e-device.e-image-editor .e-ie-quality-slider.e-control-wrapper.e-slider-container.e-horizontal .e-slider {
691
+ top: calc(50% - 18px) !important; /* stylelint-disable-line declaration-no-important */
692
+ }
693
+
690
694
  .e-image-editor {
691
695
  background: #fff;
692
696
  }
@@ -416,6 +416,10 @@
416
416
  margin-left: calc(50% - 137px);
417
417
  height: 54px !important; /* stylelint-disable-line declaration-no-important */
418
418
  }
419
+ .e-image-editor .e-ie-save-dialog .e-dialog .e-dlg-content .e-ie-dlg-right-content .e-dropdown-btn, .e-image-editor .e-blr-ie-save-dialog .e-dialog .e-dlg-content .e-ie-dlg-right-content .e-dropdown-btn {
420
+ padding: 2px 15px;
421
+ }
422
+
419
423
  .e-ie-straighten-value-span,
420
424
  .e-ie-straighten-span,
421
425
  .e-ie-toolbar-straighten {
@@ -695,6 +699,10 @@
695
699
  opacity: 1 !important; /* stylelint-disable-line declaration-no-important */
696
700
  }
697
701
 
702
+ .e-device.e-image-editor .e-ie-quality-slider.e-control-wrapper.e-slider-container.e-horizontal .e-slider {
703
+ top: calc(50% - 18px) !important; /* stylelint-disable-line declaration-no-important */
704
+ }
705
+
698
706
  .e-image-editor {
699
707
  background: #000;
700
708
  }
@@ -711,7 +719,7 @@
711
719
  color: #fff;
712
720
  }
713
721
  .e-image-editor .e-toolbar .e-toolbar-items .e-tbar-btn.e-btn.e-selected-btn {
714
- background: #fff !important; /* stylelint-disable-line declaration-no-important */
722
+ background: #ffd939 !important; /* stylelint-disable-line declaration-no-important */
715
723
  }
716
724
  .e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn {
717
725
  background: inherit;
@@ -842,6 +850,11 @@
842
850
  .e-image-editor.e-bigger .e-toolbar .e-toolbar-items.e-tbar-pos .e-toolbar-left {
843
851
  line-height: 1;
844
852
  }
853
+ .e-bigger .e-image-editor .e-ie-save-dialog .e-dialog .e-dlg-content .e-ie-dlg-right-content .e-dropdown-btn, .e-bigger .e-image-editor .e-blr-ie-save-dialog .e-dialog .e-dlg-content .e-ie-dlg-right-content .e-dropdown-btn,
854
+ .e-image-editor.e-bigger .e-ie-save-dialog .e-dialog .e-dlg-content .e-ie-dlg-right-content .e-dropdown-btn,
855
+ .e-image-editor.e-bigger .e-blr-ie-save-dialog .e-dialog .e-dlg-content .e-ie-dlg-right-content .e-dropdown-btn {
856
+ padding: 3px 10px;
857
+ }
845
858
  .e-bigger .e-straighten .e-control-wrapper.e-slider-container .e-slider .e-handle {
846
859
  top: calc(50% - 8px) !important; /* stylelint-disable-line declaration-no-important */
847
860
  }
@@ -709,6 +709,10 @@
709
709
  opacity: 1 !important; /* stylelint-disable-line declaration-no-important */
710
710
  }
711
711
 
712
+ .e-device.e-image-editor .e-ie-quality-slider.e-control-wrapper.e-slider-container.e-horizontal .e-slider {
713
+ top: calc(50% - 16px) !important; /* stylelint-disable-line declaration-no-important */
714
+ }
715
+
712
716
  .e-image-editor {
713
717
  background: rgb(40.8, 40.8, 40.8);
714
718
  }
@@ -711,6 +711,10 @@
711
711
  opacity: 1 !important; /* stylelint-disable-line declaration-no-important */
712
712
  }
713
713
 
714
+ .e-device.e-image-editor .e-ie-quality-slider.e-control-wrapper.e-slider-container.e-horizontal .e-slider {
715
+ top: calc(50% - 16px) !important; /* stylelint-disable-line declaration-no-important */
716
+ }
717
+
714
718
  .e-image-editor {
715
719
  background: #eee;
716
720
  }
@@ -898,4 +902,8 @@
898
902
  .e-bigger .e-ie-save-dialog .e-ie-img-save-name {
899
903
  width: calc(71% - 30px) !important; /* stylelint-disable-line declaration-no-important */
900
904
  width: calc(65% - 13px) !important; /* stylelint-disable-line declaration-no-important */
905
+ }
906
+
907
+ .e-bigger .e-device.e-image-editor .e-ie-img-save-dlg {
908
+ width: 102px;
901
909
  }