@syncfusion/ej2-image-editor 24.2.8 → 25.1.37
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/CHANGELOG.md +5 -45
- package/dist/ej2-image-editor.umd.min.js +2 -2
- package/dist/ej2-image-editor.umd.min.js.map +1 -1
- package/dist/es6/ej2-image-editor.es2015.js +958 -1922
- package/dist/es6/ej2-image-editor.es2015.js.map +1 -1
- package/dist/es6/ej2-image-editor.es5.js +993 -1974
- package/dist/es6/ej2-image-editor.es5.js.map +1 -1
- package/dist/global/ej2-image-editor.min.js +2 -2
- package/dist/global/ej2-image-editor.min.js.map +1 -1
- package/dist/global/index.d.ts +1 -1
- package/package.json +12 -12
- package/src/image-editor/action/crop.js +9 -45
- package/src/image-editor/action/draw.js +52 -207
- package/src/image-editor/action/export.js +6 -35
- package/src/image-editor/action/freehand-draw.js +26 -80
- package/src/image-editor/action/selection.js +122 -326
- package/src/image-editor/action/shape.js +133 -242
- package/src/image-editor/action/transform.d.ts +0 -1
- package/src/image-editor/action/transform.js +80 -291
- package/src/image-editor/action/undo-redo.d.ts +0 -1
- package/src/image-editor/action/undo-redo.js +32 -127
- package/src/image-editor/base/image-editor-model.d.ts +1 -1
- package/src/image-editor/base/image-editor.d.ts +51 -42
- package/src/image-editor/base/image-editor.js +316 -425
- package/src/image-editor/renderer/toolbar.d.ts +1 -0
- package/src/image-editor/renderer/toolbar.js +228 -207
- package/styles/bootstrap-dark.css +0 -12
- package/styles/bootstrap.css +0 -12
- package/styles/bootstrap4.css +0 -12
- package/styles/bootstrap5-dark.css +0 -12
- package/styles/bootstrap5.css +0 -12
- package/styles/fabric-dark.css +0 -12
- package/styles/fabric.css +0 -12
- package/styles/fluent-dark.css +0 -12
- package/styles/fluent.css +0 -12
- package/styles/highcontrast-light.css +0 -12
- package/styles/highcontrast.css +0 -12
- package/styles/image-editor/_bds-definition.scss +21 -0
- package/styles/image-editor/_bootstrap-dark-definition.scss +0 -1
- package/styles/image-editor/_bootstrap-definition.scss +0 -1
- package/styles/image-editor/_bootstrap4-definition.scss +0 -1
- package/styles/image-editor/_bootstrap5-definition.scss +0 -1
- package/styles/image-editor/_fabric-dark-definition.scss +0 -1
- package/styles/image-editor/_fabric-definition.scss +0 -1
- package/styles/image-editor/_fluent-definition.scss +0 -1
- package/styles/image-editor/_fusionnew-definition.scss +0 -1
- package/styles/image-editor/_highcontrast-definition.scss +0 -1
- package/styles/image-editor/_highcontrast-light-definition.scss +0 -1
- package/styles/image-editor/_layout.scss +5 -32
- package/styles/image-editor/_material-dark-definition.scss +0 -1
- package/styles/image-editor/_material-definition.scss +0 -1
- package/styles/image-editor/_material3-definition.scss +2 -3
- package/styles/image-editor/_tailwind-definition.scss +0 -1
- package/styles/image-editor/bootstrap-dark.css +0 -12
- package/styles/image-editor/bootstrap.css +0 -12
- package/styles/image-editor/bootstrap4.css +0 -12
- package/styles/image-editor/bootstrap5-dark.css +0 -12
- package/styles/image-editor/bootstrap5.css +0 -12
- package/styles/image-editor/fabric-dark.css +0 -12
- package/styles/image-editor/fabric.css +0 -12
- package/styles/image-editor/fluent-dark.css +0 -12
- package/styles/image-editor/fluent.css +0 -12
- package/styles/image-editor/highcontrast-light.css +0 -12
- package/styles/image-editor/highcontrast.css +0 -12
- package/styles/image-editor/icons/_bds.scss +411 -0
- package/styles/image-editor/material-dark.css +0 -12
- package/styles/image-editor/material.css +0 -12
- package/styles/image-editor/material3-dark.css +5 -25
- package/styles/image-editor/material3.css +5 -25
- package/styles/image-editor/tailwind-dark.css +2 -14
- package/styles/image-editor/tailwind.css +2 -14
- package/styles/material-dark.css +0 -12
- package/styles/material.css +0 -12
- package/styles/material3-dark.css +5 -25
- package/styles/material3.css +5 -25
- package/styles/tailwind-dark.css +2 -14
- package/styles/tailwind.css +2 -14
|
@@ -559,18 +559,6 @@
|
|
|
559
559
|
margin-left: calc(50% - 80px) !important; /* stylelint-disable-line declaration-no-important */
|
|
560
560
|
}
|
|
561
561
|
|
|
562
|
-
.e-device .e-transparency-slider-wrap {
|
|
563
|
-
top: calc(50% - 15px) !important; /* stylelint-disable-line declaration-no-important */
|
|
564
|
-
}
|
|
565
|
-
|
|
566
|
-
.e-device .e-ie-finetune-slider-wrap {
|
|
567
|
-
top: calc(50% - 15px) !important; /* stylelint-disable-line declaration-no-important */
|
|
568
|
-
}
|
|
569
|
-
|
|
570
|
-
.e-device .e-ie-slider-wrap {
|
|
571
|
-
top: calc(50% - 14px) !important; /* stylelint-disable-line declaration-no-important */
|
|
572
|
-
}
|
|
573
|
-
|
|
574
562
|
.e-image-editor {
|
|
575
563
|
background: #959595;
|
|
576
564
|
}
|
package/styles/bootstrap.css
CHANGED
|
@@ -559,18 +559,6 @@
|
|
|
559
559
|
margin-left: calc(50% - 80px) !important; /* stylelint-disable-line declaration-no-important */
|
|
560
560
|
}
|
|
561
561
|
|
|
562
|
-
.e-device .e-transparency-slider-wrap {
|
|
563
|
-
top: calc(50% - 15px) !important; /* stylelint-disable-line declaration-no-important */
|
|
564
|
-
}
|
|
565
|
-
|
|
566
|
-
.e-device .e-ie-finetune-slider-wrap {
|
|
567
|
-
top: calc(50% - 15px) !important; /* stylelint-disable-line declaration-no-important */
|
|
568
|
-
}
|
|
569
|
-
|
|
570
|
-
.e-device .e-ie-slider-wrap {
|
|
571
|
-
top: calc(50% - 14px) !important; /* stylelint-disable-line declaration-no-important */
|
|
572
|
-
}
|
|
573
|
-
|
|
574
562
|
.e-image-editor {
|
|
575
563
|
background: #e6e6e6;
|
|
576
564
|
}
|
package/styles/bootstrap4.css
CHANGED
|
@@ -557,18 +557,6 @@
|
|
|
557
557
|
margin-left: calc(50% - 80px) !important; /* stylelint-disable-line declaration-no-important */
|
|
558
558
|
}
|
|
559
559
|
|
|
560
|
-
.e-device .e-transparency-slider-wrap {
|
|
561
|
-
top: calc(50% - 15px) !important; /* stylelint-disable-line declaration-no-important */
|
|
562
|
-
}
|
|
563
|
-
|
|
564
|
-
.e-device .e-ie-finetune-slider-wrap {
|
|
565
|
-
top: calc(50% - 15px) !important; /* stylelint-disable-line declaration-no-important */
|
|
566
|
-
}
|
|
567
|
-
|
|
568
|
-
.e-device .e-ie-slider-wrap {
|
|
569
|
-
top: calc(50% - 14px) !important; /* stylelint-disable-line declaration-no-important */
|
|
570
|
-
}
|
|
571
|
-
|
|
572
560
|
.e-image-editor {
|
|
573
561
|
background: #e9ecef;
|
|
574
562
|
}
|
|
@@ -575,18 +575,6 @@
|
|
|
575
575
|
margin-left: calc(50% - 80px) !important; /* stylelint-disable-line declaration-no-important */
|
|
576
576
|
}
|
|
577
577
|
|
|
578
|
-
.e-device .e-transparency-slider-wrap {
|
|
579
|
-
top: calc(50% - 15px) !important; /* stylelint-disable-line declaration-no-important */
|
|
580
|
-
}
|
|
581
|
-
|
|
582
|
-
.e-device .e-ie-finetune-slider-wrap {
|
|
583
|
-
top: calc(50% - 15px) !important; /* stylelint-disable-line declaration-no-important */
|
|
584
|
-
}
|
|
585
|
-
|
|
586
|
-
.e-device .e-ie-slider-wrap {
|
|
587
|
-
top: calc(50% - 14px) !important; /* stylelint-disable-line declaration-no-important */
|
|
588
|
-
}
|
|
589
|
-
|
|
590
578
|
.e-image-editor {
|
|
591
579
|
background: #444c54;
|
|
592
580
|
}
|
package/styles/bootstrap5.css
CHANGED
|
@@ -575,18 +575,6 @@
|
|
|
575
575
|
margin-left: calc(50% - 80px) !important; /* stylelint-disable-line declaration-no-important */
|
|
576
576
|
}
|
|
577
577
|
|
|
578
|
-
.e-device .e-transparency-slider-wrap {
|
|
579
|
-
top: calc(50% - 15px) !important; /* stylelint-disable-line declaration-no-important */
|
|
580
|
-
}
|
|
581
|
-
|
|
582
|
-
.e-device .e-ie-finetune-slider-wrap {
|
|
583
|
-
top: calc(50% - 15px) !important; /* stylelint-disable-line declaration-no-important */
|
|
584
|
-
}
|
|
585
|
-
|
|
586
|
-
.e-device .e-ie-slider-wrap {
|
|
587
|
-
top: calc(50% - 14px) !important; /* stylelint-disable-line declaration-no-important */
|
|
588
|
-
}
|
|
589
|
-
|
|
590
578
|
.e-image-editor {
|
|
591
579
|
background: #dee2e6;
|
|
592
580
|
}
|
package/styles/fabric-dark.css
CHANGED
|
@@ -559,18 +559,6 @@
|
|
|
559
559
|
margin-left: calc(50% - 80px) !important; /* stylelint-disable-line declaration-no-important */
|
|
560
560
|
}
|
|
561
561
|
|
|
562
|
-
.e-device .e-transparency-slider-wrap {
|
|
563
|
-
top: calc(50% - 15px) !important; /* stylelint-disable-line declaration-no-important */
|
|
564
|
-
}
|
|
565
|
-
|
|
566
|
-
.e-device .e-ie-finetune-slider-wrap {
|
|
567
|
-
top: calc(50% - 15px) !important; /* stylelint-disable-line declaration-no-important */
|
|
568
|
-
}
|
|
569
|
-
|
|
570
|
-
.e-device .e-ie-slider-wrap {
|
|
571
|
-
top: calc(50% - 14px) !important; /* stylelint-disable-line declaration-no-important */
|
|
572
|
-
}
|
|
573
|
-
|
|
574
562
|
.e-image-editor {
|
|
575
563
|
background: #201f1f;
|
|
576
564
|
}
|
package/styles/fabric.css
CHANGED
|
@@ -559,18 +559,6 @@
|
|
|
559
559
|
margin-left: calc(50% - 80px) !important; /* stylelint-disable-line declaration-no-important */
|
|
560
560
|
}
|
|
561
561
|
|
|
562
|
-
.e-device .e-transparency-slider-wrap {
|
|
563
|
-
top: calc(50% - 15px) !important; /* stylelint-disable-line declaration-no-important */
|
|
564
|
-
}
|
|
565
|
-
|
|
566
|
-
.e-device .e-ie-finetune-slider-wrap {
|
|
567
|
-
top: calc(50% - 15px) !important; /* stylelint-disable-line declaration-no-important */
|
|
568
|
-
}
|
|
569
|
-
|
|
570
|
-
.e-device .e-ie-slider-wrap {
|
|
571
|
-
top: calc(50% - 14px) !important; /* stylelint-disable-line declaration-no-important */
|
|
572
|
-
}
|
|
573
|
-
|
|
574
562
|
.e-image-editor {
|
|
575
563
|
background: #fff;
|
|
576
564
|
}
|
package/styles/fluent-dark.css
CHANGED
|
@@ -570,18 +570,6 @@
|
|
|
570
570
|
margin-left: calc(50% - 80px) !important; /* stylelint-disable-line declaration-no-important */
|
|
571
571
|
}
|
|
572
572
|
|
|
573
|
-
.e-device .e-transparency-slider-wrap {
|
|
574
|
-
top: calc(50% - 15px) !important; /* stylelint-disable-line declaration-no-important */
|
|
575
|
-
}
|
|
576
|
-
|
|
577
|
-
.e-device .e-ie-finetune-slider-wrap {
|
|
578
|
-
top: calc(50% - 15px) !important; /* stylelint-disable-line declaration-no-important */
|
|
579
|
-
}
|
|
580
|
-
|
|
581
|
-
.e-device .e-ie-slider-wrap {
|
|
582
|
-
top: calc(50% - 14px) !important; /* stylelint-disable-line declaration-no-important */
|
|
583
|
-
}
|
|
584
|
-
|
|
585
573
|
.e-image-editor {
|
|
586
574
|
background: #201f1e;
|
|
587
575
|
}
|
package/styles/fluent.css
CHANGED
|
@@ -570,18 +570,6 @@
|
|
|
570
570
|
margin-left: calc(50% - 80px) !important; /* stylelint-disable-line declaration-no-important */
|
|
571
571
|
}
|
|
572
572
|
|
|
573
|
-
.e-device .e-transparency-slider-wrap {
|
|
574
|
-
top: calc(50% - 15px) !important; /* stylelint-disable-line declaration-no-important */
|
|
575
|
-
}
|
|
576
|
-
|
|
577
|
-
.e-device .e-ie-finetune-slider-wrap {
|
|
578
|
-
top: calc(50% - 15px) !important; /* stylelint-disable-line declaration-no-important */
|
|
579
|
-
}
|
|
580
|
-
|
|
581
|
-
.e-device .e-ie-slider-wrap {
|
|
582
|
-
top: calc(50% - 14px) !important; /* stylelint-disable-line declaration-no-important */
|
|
583
|
-
}
|
|
584
|
-
|
|
585
573
|
.e-image-editor {
|
|
586
574
|
background: #faf9f8;
|
|
587
575
|
}
|
|
@@ -557,18 +557,6 @@
|
|
|
557
557
|
margin-left: calc(50% - 80px) !important; /* stylelint-disable-line declaration-no-important */
|
|
558
558
|
}
|
|
559
559
|
|
|
560
|
-
.e-device .e-transparency-slider-wrap {
|
|
561
|
-
top: calc(50% - 15px) !important; /* stylelint-disable-line declaration-no-important */
|
|
562
|
-
}
|
|
563
|
-
|
|
564
|
-
.e-device .e-ie-finetune-slider-wrap {
|
|
565
|
-
top: calc(50% - 15px) !important; /* stylelint-disable-line declaration-no-important */
|
|
566
|
-
}
|
|
567
|
-
|
|
568
|
-
.e-device .e-ie-slider-wrap {
|
|
569
|
-
top: calc(50% - 14px) !important; /* stylelint-disable-line declaration-no-important */
|
|
570
|
-
}
|
|
571
|
-
|
|
572
560
|
.e-image-editor {
|
|
573
561
|
background: #fff;
|
|
574
562
|
}
|
package/styles/highcontrast.css
CHANGED
|
@@ -561,18 +561,6 @@
|
|
|
561
561
|
margin-left: calc(50% - 80px) !important; /* stylelint-disable-line declaration-no-important */
|
|
562
562
|
}
|
|
563
563
|
|
|
564
|
-
.e-device .e-transparency-slider-wrap {
|
|
565
|
-
top: calc(50% - 15px) !important; /* stylelint-disable-line declaration-no-important */
|
|
566
|
-
}
|
|
567
|
-
|
|
568
|
-
.e-device .e-ie-finetune-slider-wrap {
|
|
569
|
-
top: calc(50% - 15px) !important; /* stylelint-disable-line declaration-no-important */
|
|
570
|
-
}
|
|
571
|
-
|
|
572
|
-
.e-device .e-ie-slider-wrap {
|
|
573
|
-
top: calc(50% - 14px) !important; /* stylelint-disable-line declaration-no-important */
|
|
574
|
-
}
|
|
575
|
-
|
|
576
564
|
.e-image-editor {
|
|
577
565
|
background: #000;
|
|
578
566
|
}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
$image-editor-background: $border-light !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-alt3 !default;
|
|
6
|
+
$image-editor-ddbtn-margin-top: 2px !default;
|
|
7
|
+
$image-editor-tbar-height: 48px !default;
|
|
8
|
+
$image-editor-bigger-tbar-height: 56px !default;
|
|
9
|
+
$image-editor-tbar-btn-fontsize: $text-lg !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% - 6px) !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;
|
|
@@ -19,4 +19,3 @@ $image-editor-bigger-slider-handler: calc(50% - 7px) !default;
|
|
|
19
19
|
$image-editor-device-slider-handler: calc(50% - 7px) !default;
|
|
20
20
|
$image-editor-finetune-value-span: 31% !default;
|
|
21
21
|
$image-editor-finetune-span: 31% !default;
|
|
22
|
-
$image-editor-slider-wrap: calc(50% - 15px) !default;
|
|
@@ -19,4 +19,3 @@ $image-editor-bigger-slider-handler: calc(50% - 7px) !default;
|
|
|
19
19
|
$image-editor-device-slider-handler: calc(50% - 7px) !default;
|
|
20
20
|
$image-editor-finetune-value-span: 31% !default;
|
|
21
21
|
$image-editor-finetune-span: 31% !default;
|
|
22
|
-
$image-editor-slider-wrap: calc(50% - 15px) !default;
|
|
@@ -19,4 +19,3 @@ $image-editor-bigger-slider-handler: calc(50% - 7px) !default;
|
|
|
19
19
|
$image-editor-device-slider-handler: calc(50% - 7px) !default;
|
|
20
20
|
$image-editor-finetune-value-span: 31% !default;
|
|
21
21
|
$image-editor-finetune-span: 31% !default;
|
|
22
|
-
$image-editor-slider-wrap: calc(50% - 15px) !default;
|
|
@@ -19,4 +19,3 @@ $image-editor-bigger-slider-handler: calc(50% - 6px) !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-slider-wrap: calc(50% - 15px) !default;
|
|
@@ -19,4 +19,3 @@ $image-editor-bigger-slider-handler: calc(50% - 9px) !default;
|
|
|
19
19
|
$image-editor-device-slider-handler: calc(50% - 9px) !default;
|
|
20
20
|
$image-editor-finetune-value-span: 29% !default;
|
|
21
21
|
$image-editor-finetune-span: 29% !default;
|
|
22
|
-
$image-editor-slider-wrap: calc(50% - 15px) !default;
|
|
@@ -19,4 +19,3 @@ $image-editor-bigger-slider-handler: calc(50% - 9px) !default;
|
|
|
19
19
|
$image-editor-device-slider-handler: calc(50% - 9px) !default;
|
|
20
20
|
$image-editor-finetune-value-span: 29% !default;
|
|
21
21
|
$image-editor-finetune-span: 29% !default;
|
|
22
|
-
$image-editor-slider-wrap: calc(50% - 15px) !default;
|
|
@@ -19,4 +19,3 @@ $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-slider-wrap: calc(50% - 15px) !default;
|
|
@@ -17,4 +17,3 @@ $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-slider-wrap: calc(50% - 15px) !default;
|
|
@@ -19,4 +19,3 @@ $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-slider-wrap: calc(50% - 15px) !default;
|
|
@@ -19,4 +19,3 @@ $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-slider-wrap: calc(50% - 15px) !default;
|
|
@@ -511,21 +511,18 @@
|
|
|
511
511
|
}
|
|
512
512
|
|
|
513
513
|
.e-ie-finetune-slider-wrap {
|
|
514
|
-
top:
|
|
514
|
+
top: calc(50% - 15px) !important; /* stylelint-disable-line declaration-no-important */
|
|
515
|
+
@if $skin-name == 'Material3' or $skin-name == 'tailwind' {
|
|
516
|
+
top: calc(50% - 14px) !important; /* stylelint-disable-line declaration-no-important */
|
|
517
|
+
}
|
|
515
518
|
}
|
|
516
519
|
|
|
517
520
|
.e-transparency-slider-wrap {
|
|
518
|
-
top:
|
|
521
|
+
top: calc(50% - 15px) !important; /* stylelint-disable-line declaration-no-important */
|
|
519
522
|
}
|
|
520
523
|
|
|
521
524
|
.e-ie-slider-wrap {
|
|
522
525
|
top: calc(50% - 14px) !important; /* stylelint-disable-line declaration-no-important */
|
|
523
|
-
@if $skin-name == 'Material3' {
|
|
524
|
-
top: calc(50% - 12px) !important; /* stylelint-disable-line declaration-no-important */
|
|
525
|
-
}
|
|
526
|
-
@if $skin-name == 'tailwind' {
|
|
527
|
-
top: calc(50% - 13px) !important; /* stylelint-disable-line declaration-no-important */
|
|
528
|
-
}
|
|
529
526
|
}
|
|
530
527
|
|
|
531
528
|
.e-bigger .e-straighten .e-control-wrapper.e-slider-container .e-slider .e-handle {
|
|
@@ -556,28 +553,4 @@
|
|
|
556
553
|
}
|
|
557
554
|
}
|
|
558
555
|
}
|
|
559
|
-
|
|
560
|
-
.e-device .e-transparency-slider-wrap {
|
|
561
|
-
top: calc(50% - 15px) !important; /* stylelint-disable-line declaration-no-important */
|
|
562
|
-
}
|
|
563
|
-
|
|
564
|
-
.e-device .e-ie-finetune-slider-wrap {
|
|
565
|
-
top: calc(50% - 15px) !important; /* stylelint-disable-line declaration-no-important */
|
|
566
|
-
}
|
|
567
|
-
|
|
568
|
-
.e-device .e-ie-finetune-value-span {
|
|
569
|
-
@if $skin-name == 'Material3' {
|
|
570
|
-
top: 29% !important; /* stylelint-disable-line declaration-no-important */
|
|
571
|
-
}
|
|
572
|
-
}
|
|
573
|
-
|
|
574
|
-
.e-device .e-ie-finetune-slider-label {
|
|
575
|
-
@if $skin-name == 'Material3' {
|
|
576
|
-
top: 28% !important; /* stylelint-disable-line declaration-no-important */
|
|
577
|
-
}
|
|
578
|
-
}
|
|
579
|
-
|
|
580
|
-
.e-device .e-ie-slider-wrap {
|
|
581
|
-
top: calc(50% - 14px) !important; /* stylelint-disable-line declaration-no-important */
|
|
582
|
-
}
|
|
583
556
|
}
|
|
@@ -19,4 +19,3 @@ $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-slider-wrap: calc(50% - 15px) !default;
|
|
@@ -19,4 +19,3 @@ $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-slider-wrap: calc(50% - 15px) !default;
|
|
@@ -17,6 +17,5 @@ $image-editor-bigger-dropdown-btn-preview-left: -7px !default;
|
|
|
17
17
|
$image-editor-slider-handler: calc(50% - 8px) !default;
|
|
18
18
|
$image-editor-bigger-slider-handler: calc(50% - 10px) !default;
|
|
19
19
|
$image-editor-device-slider-handler: calc(50% - 8px) !default;
|
|
20
|
-
$image-editor-finetune-value-span:
|
|
21
|
-
$image-editor-finetune-span:
|
|
22
|
-
$image-editor-slider-wrap: calc(50% - 12px) !default;
|
|
20
|
+
$image-editor-finetune-value-span: 29% !default;
|
|
21
|
+
$image-editor-finetune-span: 28% !default;
|
|
@@ -19,4 +19,3 @@ $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-slider-wrap: calc(50% - 14px) !default;
|
|
@@ -559,18 +559,6 @@
|
|
|
559
559
|
margin-left: calc(50% - 80px) !important; /* stylelint-disable-line declaration-no-important */
|
|
560
560
|
}
|
|
561
561
|
|
|
562
|
-
.e-device .e-transparency-slider-wrap {
|
|
563
|
-
top: calc(50% - 15px) !important; /* stylelint-disable-line declaration-no-important */
|
|
564
|
-
}
|
|
565
|
-
|
|
566
|
-
.e-device .e-ie-finetune-slider-wrap {
|
|
567
|
-
top: calc(50% - 15px) !important; /* stylelint-disable-line declaration-no-important */
|
|
568
|
-
}
|
|
569
|
-
|
|
570
|
-
.e-device .e-ie-slider-wrap {
|
|
571
|
-
top: calc(50% - 14px) !important; /* stylelint-disable-line declaration-no-important */
|
|
572
|
-
}
|
|
573
|
-
|
|
574
562
|
.e-image-editor {
|
|
575
563
|
background: #959595;
|
|
576
564
|
}
|
|
@@ -559,18 +559,6 @@
|
|
|
559
559
|
margin-left: calc(50% - 80px) !important; /* stylelint-disable-line declaration-no-important */
|
|
560
560
|
}
|
|
561
561
|
|
|
562
|
-
.e-device .e-transparency-slider-wrap {
|
|
563
|
-
top: calc(50% - 15px) !important; /* stylelint-disable-line declaration-no-important */
|
|
564
|
-
}
|
|
565
|
-
|
|
566
|
-
.e-device .e-ie-finetune-slider-wrap {
|
|
567
|
-
top: calc(50% - 15px) !important; /* stylelint-disable-line declaration-no-important */
|
|
568
|
-
}
|
|
569
|
-
|
|
570
|
-
.e-device .e-ie-slider-wrap {
|
|
571
|
-
top: calc(50% - 14px) !important; /* stylelint-disable-line declaration-no-important */
|
|
572
|
-
}
|
|
573
|
-
|
|
574
562
|
.e-image-editor {
|
|
575
563
|
background: #e6e6e6;
|
|
576
564
|
}
|
|
@@ -557,18 +557,6 @@
|
|
|
557
557
|
margin-left: calc(50% - 80px) !important; /* stylelint-disable-line declaration-no-important */
|
|
558
558
|
}
|
|
559
559
|
|
|
560
|
-
.e-device .e-transparency-slider-wrap {
|
|
561
|
-
top: calc(50% - 15px) !important; /* stylelint-disable-line declaration-no-important */
|
|
562
|
-
}
|
|
563
|
-
|
|
564
|
-
.e-device .e-ie-finetune-slider-wrap {
|
|
565
|
-
top: calc(50% - 15px) !important; /* stylelint-disable-line declaration-no-important */
|
|
566
|
-
}
|
|
567
|
-
|
|
568
|
-
.e-device .e-ie-slider-wrap {
|
|
569
|
-
top: calc(50% - 14px) !important; /* stylelint-disable-line declaration-no-important */
|
|
570
|
-
}
|
|
571
|
-
|
|
572
560
|
.e-image-editor {
|
|
573
561
|
background: #e9ecef;
|
|
574
562
|
}
|
|
@@ -575,18 +575,6 @@
|
|
|
575
575
|
margin-left: calc(50% - 80px) !important; /* stylelint-disable-line declaration-no-important */
|
|
576
576
|
}
|
|
577
577
|
|
|
578
|
-
.e-device .e-transparency-slider-wrap {
|
|
579
|
-
top: calc(50% - 15px) !important; /* stylelint-disable-line declaration-no-important */
|
|
580
|
-
}
|
|
581
|
-
|
|
582
|
-
.e-device .e-ie-finetune-slider-wrap {
|
|
583
|
-
top: calc(50% - 15px) !important; /* stylelint-disable-line declaration-no-important */
|
|
584
|
-
}
|
|
585
|
-
|
|
586
|
-
.e-device .e-ie-slider-wrap {
|
|
587
|
-
top: calc(50% - 14px) !important; /* stylelint-disable-line declaration-no-important */
|
|
588
|
-
}
|
|
589
|
-
|
|
590
578
|
.e-image-editor {
|
|
591
579
|
background: #444c54;
|
|
592
580
|
}
|
|
@@ -575,18 +575,6 @@
|
|
|
575
575
|
margin-left: calc(50% - 80px) !important; /* stylelint-disable-line declaration-no-important */
|
|
576
576
|
}
|
|
577
577
|
|
|
578
|
-
.e-device .e-transparency-slider-wrap {
|
|
579
|
-
top: calc(50% - 15px) !important; /* stylelint-disable-line declaration-no-important */
|
|
580
|
-
}
|
|
581
|
-
|
|
582
|
-
.e-device .e-ie-finetune-slider-wrap {
|
|
583
|
-
top: calc(50% - 15px) !important; /* stylelint-disable-line declaration-no-important */
|
|
584
|
-
}
|
|
585
|
-
|
|
586
|
-
.e-device .e-ie-slider-wrap {
|
|
587
|
-
top: calc(50% - 14px) !important; /* stylelint-disable-line declaration-no-important */
|
|
588
|
-
}
|
|
589
|
-
|
|
590
578
|
.e-image-editor {
|
|
591
579
|
background: #dee2e6;
|
|
592
580
|
}
|
|
@@ -559,18 +559,6 @@
|
|
|
559
559
|
margin-left: calc(50% - 80px) !important; /* stylelint-disable-line declaration-no-important */
|
|
560
560
|
}
|
|
561
561
|
|
|
562
|
-
.e-device .e-transparency-slider-wrap {
|
|
563
|
-
top: calc(50% - 15px) !important; /* stylelint-disable-line declaration-no-important */
|
|
564
|
-
}
|
|
565
|
-
|
|
566
|
-
.e-device .e-ie-finetune-slider-wrap {
|
|
567
|
-
top: calc(50% - 15px) !important; /* stylelint-disable-line declaration-no-important */
|
|
568
|
-
}
|
|
569
|
-
|
|
570
|
-
.e-device .e-ie-slider-wrap {
|
|
571
|
-
top: calc(50% - 14px) !important; /* stylelint-disable-line declaration-no-important */
|
|
572
|
-
}
|
|
573
|
-
|
|
574
562
|
.e-image-editor {
|
|
575
563
|
background: #201f1f;
|
|
576
564
|
}
|
|
@@ -559,18 +559,6 @@
|
|
|
559
559
|
margin-left: calc(50% - 80px) !important; /* stylelint-disable-line declaration-no-important */
|
|
560
560
|
}
|
|
561
561
|
|
|
562
|
-
.e-device .e-transparency-slider-wrap {
|
|
563
|
-
top: calc(50% - 15px) !important; /* stylelint-disable-line declaration-no-important */
|
|
564
|
-
}
|
|
565
|
-
|
|
566
|
-
.e-device .e-ie-finetune-slider-wrap {
|
|
567
|
-
top: calc(50% - 15px) !important; /* stylelint-disable-line declaration-no-important */
|
|
568
|
-
}
|
|
569
|
-
|
|
570
|
-
.e-device .e-ie-slider-wrap {
|
|
571
|
-
top: calc(50% - 14px) !important; /* stylelint-disable-line declaration-no-important */
|
|
572
|
-
}
|
|
573
|
-
|
|
574
562
|
.e-image-editor {
|
|
575
563
|
background: #fff;
|
|
576
564
|
}
|
|
@@ -570,18 +570,6 @@
|
|
|
570
570
|
margin-left: calc(50% - 80px) !important; /* stylelint-disable-line declaration-no-important */
|
|
571
571
|
}
|
|
572
572
|
|
|
573
|
-
.e-device .e-transparency-slider-wrap {
|
|
574
|
-
top: calc(50% - 15px) !important; /* stylelint-disable-line declaration-no-important */
|
|
575
|
-
}
|
|
576
|
-
|
|
577
|
-
.e-device .e-ie-finetune-slider-wrap {
|
|
578
|
-
top: calc(50% - 15px) !important; /* stylelint-disable-line declaration-no-important */
|
|
579
|
-
}
|
|
580
|
-
|
|
581
|
-
.e-device .e-ie-slider-wrap {
|
|
582
|
-
top: calc(50% - 14px) !important; /* stylelint-disable-line declaration-no-important */
|
|
583
|
-
}
|
|
584
|
-
|
|
585
573
|
.e-image-editor {
|
|
586
574
|
background: #201f1e;
|
|
587
575
|
}
|
|
@@ -570,18 +570,6 @@
|
|
|
570
570
|
margin-left: calc(50% - 80px) !important; /* stylelint-disable-line declaration-no-important */
|
|
571
571
|
}
|
|
572
572
|
|
|
573
|
-
.e-device .e-transparency-slider-wrap {
|
|
574
|
-
top: calc(50% - 15px) !important; /* stylelint-disable-line declaration-no-important */
|
|
575
|
-
}
|
|
576
|
-
|
|
577
|
-
.e-device .e-ie-finetune-slider-wrap {
|
|
578
|
-
top: calc(50% - 15px) !important; /* stylelint-disable-line declaration-no-important */
|
|
579
|
-
}
|
|
580
|
-
|
|
581
|
-
.e-device .e-ie-slider-wrap {
|
|
582
|
-
top: calc(50% - 14px) !important; /* stylelint-disable-line declaration-no-important */
|
|
583
|
-
}
|
|
584
|
-
|
|
585
573
|
.e-image-editor {
|
|
586
574
|
background: #faf9f8;
|
|
587
575
|
}
|
|
@@ -557,18 +557,6 @@
|
|
|
557
557
|
margin-left: calc(50% - 80px) !important; /* stylelint-disable-line declaration-no-important */
|
|
558
558
|
}
|
|
559
559
|
|
|
560
|
-
.e-device .e-transparency-slider-wrap {
|
|
561
|
-
top: calc(50% - 15px) !important; /* stylelint-disable-line declaration-no-important */
|
|
562
|
-
}
|
|
563
|
-
|
|
564
|
-
.e-device .e-ie-finetune-slider-wrap {
|
|
565
|
-
top: calc(50% - 15px) !important; /* stylelint-disable-line declaration-no-important */
|
|
566
|
-
}
|
|
567
|
-
|
|
568
|
-
.e-device .e-ie-slider-wrap {
|
|
569
|
-
top: calc(50% - 14px) !important; /* stylelint-disable-line declaration-no-important */
|
|
570
|
-
}
|
|
571
|
-
|
|
572
560
|
.e-image-editor {
|
|
573
561
|
background: #fff;
|
|
574
562
|
}
|
|
@@ -561,18 +561,6 @@
|
|
|
561
561
|
margin-left: calc(50% - 80px) !important; /* stylelint-disable-line declaration-no-important */
|
|
562
562
|
}
|
|
563
563
|
|
|
564
|
-
.e-device .e-transparency-slider-wrap {
|
|
565
|
-
top: calc(50% - 15px) !important; /* stylelint-disable-line declaration-no-important */
|
|
566
|
-
}
|
|
567
|
-
|
|
568
|
-
.e-device .e-ie-finetune-slider-wrap {
|
|
569
|
-
top: calc(50% - 15px) !important; /* stylelint-disable-line declaration-no-important */
|
|
570
|
-
}
|
|
571
|
-
|
|
572
|
-
.e-device .e-ie-slider-wrap {
|
|
573
|
-
top: calc(50% - 14px) !important; /* stylelint-disable-line declaration-no-important */
|
|
574
|
-
}
|
|
575
|
-
|
|
576
564
|
.e-image-editor {
|
|
577
565
|
background: #000;
|
|
578
566
|
}
|