@syncfusion/ej2-image-editor 28.2.3 → 29.1.33
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/README.md +1 -1
- 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 +220 -63
- package/dist/es6/ej2-image-editor.es2015.js.map +1 -1
- package/dist/es6/ej2-image-editor.es5.js +229 -72
- 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 +13 -13
- package/src/image-editor/action/draw.js +1 -1
- package/src/image-editor/action/filter.js +0 -15
- package/src/image-editor/action/selection.js +46 -3
- package/src/image-editor/action/transform.js +4 -1
- package/src/image-editor/base/image-editor.d.ts +3 -1
- package/src/image-editor/base/image-editor.js +110 -35
- package/src/image-editor/renderer/toolbar.js +68 -17
- package/styles/bds-lite.css +11 -0
- package/styles/bds.css +11 -0
- package/styles/bootstrap-dark-lite.css +11 -0
- package/styles/bootstrap-dark.css +11 -0
- package/styles/bootstrap-lite.css +11 -0
- package/styles/bootstrap.css +11 -0
- package/styles/bootstrap4-lite.css +17 -6
- package/styles/bootstrap4.css +17 -6
- package/styles/bootstrap5-dark-lite.css +23 -12
- package/styles/bootstrap5-dark.css +23 -12
- package/styles/bootstrap5-lite.css +20 -9
- package/styles/bootstrap5.3-lite.css +11 -0
- package/styles/bootstrap5.3.css +11 -0
- package/styles/bootstrap5.css +20 -9
- package/styles/fabric-dark-lite.css +11 -0
- package/styles/fabric-dark.css +11 -0
- package/styles/fabric-lite.css +11 -0
- package/styles/fabric.css +11 -0
- package/styles/fluent-dark-lite.css +11 -0
- package/styles/fluent-dark.css +11 -0
- package/styles/fluent-lite.css +11 -0
- package/styles/fluent.css +11 -0
- package/styles/fluent2-lite.css +11 -0
- package/styles/fluent2.css +11 -0
- package/styles/highcontrast-light-lite.css +11 -0
- package/styles/highcontrast-light.css +11 -0
- package/styles/highcontrast-lite.css +11 -0
- package/styles/highcontrast.css +11 -0
- package/styles/image-editor/_layout.scss +11 -0
- package/styles/image-editor/_material-dark-definition.scss +3 -1
- package/styles/image-editor/_theme.scss +4 -2
- package/styles/image-editor/bds.css +11 -0
- package/styles/image-editor/bootstrap-dark.css +11 -0
- package/styles/image-editor/bootstrap.css +11 -0
- package/styles/image-editor/bootstrap4.css +17 -6
- package/styles/image-editor/bootstrap5-dark.css +23 -12
- package/styles/image-editor/bootstrap5.3.css +11 -0
- package/styles/image-editor/bootstrap5.css +20 -9
- package/styles/image-editor/fabric-dark.css +11 -0
- package/styles/image-editor/fabric.css +11 -0
- package/styles/image-editor/fluent-dark.css +11 -0
- package/styles/image-editor/fluent.css +11 -0
- package/styles/image-editor/fluent2.css +11 -0
- package/styles/image-editor/highcontrast-light.css +11 -0
- package/styles/image-editor/highcontrast.css +11 -0
- package/styles/image-editor/material-dark.css +16 -5
- package/styles/image-editor/material.css +14 -3
- package/styles/image-editor/material3-dark.css +11 -0
- package/styles/image-editor/material3.css +11 -0
- package/styles/image-editor/tailwind-dark.css +11 -0
- package/styles/image-editor/tailwind.css +11 -0
- package/styles/image-editor/tailwind3.css +11 -0
- package/styles/material-dark-lite.css +16 -5
- package/styles/material-dark.css +16 -5
- package/styles/material-lite.css +14 -3
- package/styles/material.css +14 -3
- package/styles/material3-dark-lite.css +11 -0
- package/styles/material3-dark.css +11 -0
- package/styles/material3-lite.css +11 -0
- package/styles/material3.css +11 -0
- package/styles/tailwind-dark-lite.css +11 -0
- package/styles/tailwind-dark.css +11 -0
- package/styles/tailwind-lite.css +11 -0
- package/styles/tailwind.css +11 -0
- package/styles/tailwind3-lite.css +11 -0
- package/styles/tailwind3.css +11 -0
|
@@ -403,6 +403,13 @@
|
|
|
403
403
|
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item {
|
|
404
404
|
height: auto !important; /* stylelint-disable-line declaration-no-important */
|
|
405
405
|
}
|
|
406
|
+
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item .filter-wrapper {
|
|
407
|
+
-webkit-box-sizing: content-box;
|
|
408
|
+
box-sizing: content-box;
|
|
409
|
+
}
|
|
410
|
+
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item .filter-wrapper div {
|
|
411
|
+
text-align: center;
|
|
412
|
+
}
|
|
406
413
|
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item .filterwrapper canvas, .e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item .filter-wrapper canvas {
|
|
407
414
|
border: 2px solid transparent;
|
|
408
415
|
height: 100px;
|
|
@@ -683,6 +690,10 @@
|
|
|
683
690
|
top: calc(50% + 60px);
|
|
684
691
|
}
|
|
685
692
|
|
|
693
|
+
.e-image-editor.e-control.e-readonly {
|
|
694
|
+
opacity: 1 !important; /* stylelint-disable-line declaration-no-important */
|
|
695
|
+
}
|
|
696
|
+
|
|
686
697
|
.e-image-editor {
|
|
687
698
|
background: #dee2e6;
|
|
688
699
|
}
|
|
@@ -690,13 +701,13 @@
|
|
|
690
701
|
background: #f8f9fa;
|
|
691
702
|
}
|
|
692
703
|
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item:hover .filterwrapper canvas, .e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item.e-selected .filterwrapper canvas, .e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item:hover .filter-wrapper canvas, .e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item.e-selected .filter-wrapper canvas {
|
|
693
|
-
border-color:
|
|
704
|
+
border-color: rgb(86.4, 93.6, 100) !important; /* stylelint-disable-line declaration-no-important */
|
|
694
705
|
}
|
|
695
706
|
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item.e-selected .filterwrapper:focus canvas, .e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item.e-selected .filter-wrapper:focus canvas {
|
|
696
|
-
border-color:
|
|
707
|
+
border-color: rgb(86.4, 93.6, 100) !important; /* stylelint-disable-line declaration-no-important */
|
|
697
708
|
}
|
|
698
709
|
.e-image-editor .e-toolbar .e-toolbar-items .e-tbar-btn.e-btn.e-selected-btn {
|
|
699
|
-
background:
|
|
710
|
+
background: rgb(91.8, 99.45, 106.25) !important; /* stylelint-disable-line declaration-no-important */
|
|
700
711
|
}
|
|
701
712
|
.e-image-editor .e-toolbar .e-toolbar-items .e-tbar-btn.e-btn.e-selected-btn .e-icons {
|
|
702
713
|
color: #fff;
|
|
@@ -712,21 +723,21 @@
|
|
|
712
723
|
display: none !important; /* stylelint-disable-line declaration-no-important */
|
|
713
724
|
}
|
|
714
725
|
.e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn:hover {
|
|
715
|
-
background:
|
|
726
|
+
background: rgb(91.8, 99.45, 106.25);
|
|
716
727
|
-webkit-box-shadow: none;
|
|
717
728
|
box-shadow: none;
|
|
718
729
|
color: #fff;
|
|
719
730
|
}
|
|
720
731
|
.e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn:focus {
|
|
721
|
-
background:
|
|
732
|
+
background: rgb(91.8, 99.45, 106.25);
|
|
722
733
|
-webkit-box-shadow: none;
|
|
723
734
|
box-shadow: none;
|
|
724
735
|
color: #fff;
|
|
725
|
-
-webkit-box-shadow: 0 0 0 4px rgba(130,
|
|
726
|
-
box-shadow: 0 0 0 4px rgba(130,
|
|
736
|
+
-webkit-box-shadow: 0 0 0 4px rgba(130.05, 137.7, 144.5, 0.5) !important;
|
|
737
|
+
box-shadow: 0 0 0 4px rgba(130.05, 137.7, 144.5, 0.5) !important; /* stylelint-disable-line declaration-no-important */
|
|
727
738
|
}
|
|
728
739
|
.e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn:active {
|
|
729
|
-
background:
|
|
740
|
+
background: rgb(86.4, 93.6, 100);
|
|
730
741
|
-webkit-box-shadow: none;
|
|
731
742
|
box-shadow: none;
|
|
732
743
|
color: #fff;
|
|
@@ -752,7 +763,7 @@
|
|
|
752
763
|
}
|
|
753
764
|
|
|
754
765
|
.e-dropdown-popup .e-selected-btn {
|
|
755
|
-
background:
|
|
766
|
+
background: rgb(91.8, 99.45, 106.25) !important; /* stylelint-disable-line declaration-no-important */
|
|
756
767
|
color: #fff !important; /* stylelint-disable-line declaration-no-important */
|
|
757
768
|
}
|
|
758
769
|
.e-ie-filter-canvas:focus,
|
|
@@ -407,6 +407,13 @@
|
|
|
407
407
|
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item {
|
|
408
408
|
height: auto !important; /* stylelint-disable-line declaration-no-important */
|
|
409
409
|
}
|
|
410
|
+
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item .filter-wrapper {
|
|
411
|
+
-webkit-box-sizing: content-box;
|
|
412
|
+
box-sizing: content-box;
|
|
413
|
+
}
|
|
414
|
+
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item .filter-wrapper div {
|
|
415
|
+
text-align: center;
|
|
416
|
+
}
|
|
410
417
|
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item .filterwrapper canvas, .e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item .filter-wrapper canvas {
|
|
411
418
|
border: 2px solid transparent;
|
|
412
419
|
height: 100px;
|
|
@@ -687,6 +694,10 @@
|
|
|
687
694
|
top: calc(50% + 60px);
|
|
688
695
|
}
|
|
689
696
|
|
|
697
|
+
.e-image-editor.e-control.e-readonly {
|
|
698
|
+
opacity: 1 !important; /* stylelint-disable-line declaration-no-important */
|
|
699
|
+
}
|
|
700
|
+
|
|
690
701
|
.e-image-editor {
|
|
691
702
|
background: var(--color-sf-border-light);
|
|
692
703
|
}
|
package/styles/bootstrap5.3.css
CHANGED
|
@@ -407,6 +407,13 @@
|
|
|
407
407
|
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item {
|
|
408
408
|
height: auto !important; /* stylelint-disable-line declaration-no-important */
|
|
409
409
|
}
|
|
410
|
+
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item .filter-wrapper {
|
|
411
|
+
-webkit-box-sizing: content-box;
|
|
412
|
+
box-sizing: content-box;
|
|
413
|
+
}
|
|
414
|
+
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item .filter-wrapper div {
|
|
415
|
+
text-align: center;
|
|
416
|
+
}
|
|
410
417
|
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item .filterwrapper canvas, .e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item .filter-wrapper canvas {
|
|
411
418
|
border: 2px solid transparent;
|
|
412
419
|
height: 100px;
|
|
@@ -687,6 +694,10 @@
|
|
|
687
694
|
top: calc(50% + 60px);
|
|
688
695
|
}
|
|
689
696
|
|
|
697
|
+
.e-image-editor.e-control.e-readonly {
|
|
698
|
+
opacity: 1 !important; /* stylelint-disable-line declaration-no-important */
|
|
699
|
+
}
|
|
700
|
+
|
|
690
701
|
.e-image-editor {
|
|
691
702
|
background: var(--color-sf-border-light);
|
|
692
703
|
}
|
package/styles/bootstrap5.css
CHANGED
|
@@ -403,6 +403,13 @@
|
|
|
403
403
|
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item {
|
|
404
404
|
height: auto !important; /* stylelint-disable-line declaration-no-important */
|
|
405
405
|
}
|
|
406
|
+
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item .filter-wrapper {
|
|
407
|
+
-webkit-box-sizing: content-box;
|
|
408
|
+
box-sizing: content-box;
|
|
409
|
+
}
|
|
410
|
+
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item .filter-wrapper div {
|
|
411
|
+
text-align: center;
|
|
412
|
+
}
|
|
406
413
|
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item .filterwrapper canvas, .e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item .filter-wrapper canvas {
|
|
407
414
|
border: 2px solid transparent;
|
|
408
415
|
height: 100px;
|
|
@@ -683,6 +690,10 @@
|
|
|
683
690
|
top: calc(50% + 60px);
|
|
684
691
|
}
|
|
685
692
|
|
|
693
|
+
.e-image-editor.e-control.e-readonly {
|
|
694
|
+
opacity: 1 !important; /* stylelint-disable-line declaration-no-important */
|
|
695
|
+
}
|
|
696
|
+
|
|
686
697
|
.e-image-editor {
|
|
687
698
|
background: #dee2e6;
|
|
688
699
|
}
|
|
@@ -690,13 +701,13 @@
|
|
|
690
701
|
background: #f8f9fa;
|
|
691
702
|
}
|
|
692
703
|
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item:hover .filterwrapper canvas, .e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item.e-selected .filterwrapper canvas, .e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item:hover .filter-wrapper canvas, .e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item.e-selected .filter-wrapper canvas {
|
|
693
|
-
border-color:
|
|
704
|
+
border-color: rgb(86.4, 93.6, 100) !important; /* stylelint-disable-line declaration-no-important */
|
|
694
705
|
}
|
|
695
706
|
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item.e-selected .filterwrapper:focus canvas, .e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item.e-selected .filter-wrapper:focus canvas {
|
|
696
|
-
border-color:
|
|
707
|
+
border-color: rgb(86.4, 93.6, 100) !important; /* stylelint-disable-line declaration-no-important */
|
|
697
708
|
}
|
|
698
709
|
.e-image-editor .e-toolbar .e-toolbar-items .e-tbar-btn.e-btn.e-selected-btn {
|
|
699
|
-
background:
|
|
710
|
+
background: rgb(91.8, 99.45, 106.25) !important; /* stylelint-disable-line declaration-no-important */
|
|
700
711
|
}
|
|
701
712
|
.e-image-editor .e-toolbar .e-toolbar-items .e-tbar-btn.e-btn.e-selected-btn .e-icons {
|
|
702
713
|
color: #fff;
|
|
@@ -712,21 +723,21 @@
|
|
|
712
723
|
display: none !important; /* stylelint-disable-line declaration-no-important */
|
|
713
724
|
}
|
|
714
725
|
.e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn:hover {
|
|
715
|
-
background:
|
|
726
|
+
background: rgb(91.8, 99.45, 106.25);
|
|
716
727
|
-webkit-box-shadow: none;
|
|
717
728
|
box-shadow: none;
|
|
718
729
|
color: #fff;
|
|
719
730
|
}
|
|
720
731
|
.e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn:focus {
|
|
721
|
-
background:
|
|
732
|
+
background: rgb(91.8, 99.45, 106.25);
|
|
722
733
|
-webkit-box-shadow: none;
|
|
723
734
|
box-shadow: none;
|
|
724
735
|
color: #fff;
|
|
725
|
-
-webkit-box-shadow: 0 0 0 4px rgba(130,
|
|
726
|
-
box-shadow: 0 0 0 4px rgba(130,
|
|
736
|
+
-webkit-box-shadow: 0 0 0 4px rgba(130.05, 137.7, 144.5, 0.5) !important;
|
|
737
|
+
box-shadow: 0 0 0 4px rgba(130.05, 137.7, 144.5, 0.5) !important; /* stylelint-disable-line declaration-no-important */
|
|
727
738
|
}
|
|
728
739
|
.e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn:active {
|
|
729
|
-
background:
|
|
740
|
+
background: rgb(86.4, 93.6, 100);
|
|
730
741
|
-webkit-box-shadow: none;
|
|
731
742
|
box-shadow: none;
|
|
732
743
|
color: #fff;
|
|
@@ -752,7 +763,7 @@
|
|
|
752
763
|
}
|
|
753
764
|
|
|
754
765
|
.e-dropdown-popup .e-selected-btn {
|
|
755
|
-
background:
|
|
766
|
+
background: rgb(91.8, 99.45, 106.25) !important; /* stylelint-disable-line declaration-no-important */
|
|
756
767
|
color: #fff !important; /* stylelint-disable-line declaration-no-important */
|
|
757
768
|
}
|
|
758
769
|
.e-ie-filter-canvas:focus,
|
|
@@ -398,6 +398,13 @@
|
|
|
398
398
|
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item {
|
|
399
399
|
height: auto !important; /* stylelint-disable-line declaration-no-important */
|
|
400
400
|
}
|
|
401
|
+
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item .filter-wrapper {
|
|
402
|
+
-webkit-box-sizing: content-box;
|
|
403
|
+
box-sizing: content-box;
|
|
404
|
+
}
|
|
405
|
+
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item .filter-wrapper div {
|
|
406
|
+
text-align: center;
|
|
407
|
+
}
|
|
401
408
|
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item .filterwrapper canvas, .e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item .filter-wrapper canvas {
|
|
402
409
|
border: 2px solid transparent;
|
|
403
410
|
height: 100px;
|
|
@@ -679,6 +686,10 @@
|
|
|
679
686
|
top: calc(50% + 60px);
|
|
680
687
|
}
|
|
681
688
|
|
|
689
|
+
.e-image-editor.e-control.e-readonly {
|
|
690
|
+
opacity: 1 !important; /* stylelint-disable-line declaration-no-important */
|
|
691
|
+
}
|
|
692
|
+
|
|
682
693
|
.e-image-editor {
|
|
683
694
|
background: #201f1f;
|
|
684
695
|
}
|
package/styles/fabric-dark.css
CHANGED
|
@@ -398,6 +398,13 @@
|
|
|
398
398
|
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item {
|
|
399
399
|
height: auto !important; /* stylelint-disable-line declaration-no-important */
|
|
400
400
|
}
|
|
401
|
+
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item .filter-wrapper {
|
|
402
|
+
-webkit-box-sizing: content-box;
|
|
403
|
+
box-sizing: content-box;
|
|
404
|
+
}
|
|
405
|
+
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item .filter-wrapper div {
|
|
406
|
+
text-align: center;
|
|
407
|
+
}
|
|
401
408
|
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item .filterwrapper canvas, .e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item .filter-wrapper canvas {
|
|
402
409
|
border: 2px solid transparent;
|
|
403
410
|
height: 100px;
|
|
@@ -679,6 +686,10 @@
|
|
|
679
686
|
top: calc(50% + 60px);
|
|
680
687
|
}
|
|
681
688
|
|
|
689
|
+
.e-image-editor.e-control.e-readonly {
|
|
690
|
+
opacity: 1 !important; /* stylelint-disable-line declaration-no-important */
|
|
691
|
+
}
|
|
692
|
+
|
|
682
693
|
.e-image-editor {
|
|
683
694
|
background: #201f1f;
|
|
684
695
|
}
|
package/styles/fabric-lite.css
CHANGED
|
@@ -398,6 +398,13 @@
|
|
|
398
398
|
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item {
|
|
399
399
|
height: auto !important; /* stylelint-disable-line declaration-no-important */
|
|
400
400
|
}
|
|
401
|
+
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item .filter-wrapper {
|
|
402
|
+
-webkit-box-sizing: content-box;
|
|
403
|
+
box-sizing: content-box;
|
|
404
|
+
}
|
|
405
|
+
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item .filter-wrapper div {
|
|
406
|
+
text-align: center;
|
|
407
|
+
}
|
|
401
408
|
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item .filterwrapper canvas, .e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item .filter-wrapper canvas {
|
|
402
409
|
border: 2px solid transparent;
|
|
403
410
|
height: 100px;
|
|
@@ -681,6 +688,10 @@
|
|
|
681
688
|
top: calc(50% + 60px);
|
|
682
689
|
}
|
|
683
690
|
|
|
691
|
+
.e-image-editor.e-control.e-readonly {
|
|
692
|
+
opacity: 1 !important; /* stylelint-disable-line declaration-no-important */
|
|
693
|
+
}
|
|
694
|
+
|
|
684
695
|
.e-image-editor {
|
|
685
696
|
background: #fff;
|
|
686
697
|
}
|
package/styles/fabric.css
CHANGED
|
@@ -398,6 +398,13 @@
|
|
|
398
398
|
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item {
|
|
399
399
|
height: auto !important; /* stylelint-disable-line declaration-no-important */
|
|
400
400
|
}
|
|
401
|
+
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item .filter-wrapper {
|
|
402
|
+
-webkit-box-sizing: content-box;
|
|
403
|
+
box-sizing: content-box;
|
|
404
|
+
}
|
|
405
|
+
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item .filter-wrapper div {
|
|
406
|
+
text-align: center;
|
|
407
|
+
}
|
|
401
408
|
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item .filterwrapper canvas, .e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item .filter-wrapper canvas {
|
|
402
409
|
border: 2px solid transparent;
|
|
403
410
|
height: 100px;
|
|
@@ -681,6 +688,10 @@
|
|
|
681
688
|
top: calc(50% + 60px);
|
|
682
689
|
}
|
|
683
690
|
|
|
691
|
+
.e-image-editor.e-control.e-readonly {
|
|
692
|
+
opacity: 1 !important; /* stylelint-disable-line declaration-no-important */
|
|
693
|
+
}
|
|
694
|
+
|
|
684
695
|
.e-image-editor {
|
|
685
696
|
background: #fff;
|
|
686
697
|
}
|
|
@@ -403,6 +403,13 @@
|
|
|
403
403
|
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item {
|
|
404
404
|
height: auto !important; /* stylelint-disable-line declaration-no-important */
|
|
405
405
|
}
|
|
406
|
+
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item .filter-wrapper {
|
|
407
|
+
-webkit-box-sizing: content-box;
|
|
408
|
+
box-sizing: content-box;
|
|
409
|
+
}
|
|
410
|
+
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item .filter-wrapper div {
|
|
411
|
+
text-align: center;
|
|
412
|
+
}
|
|
406
413
|
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item .filterwrapper canvas, .e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item .filter-wrapper canvas {
|
|
407
414
|
border: 2px solid transparent;
|
|
408
415
|
height: 100px;
|
|
@@ -686,6 +693,10 @@
|
|
|
686
693
|
top: calc(50% + 60px);
|
|
687
694
|
}
|
|
688
695
|
|
|
696
|
+
.e-image-editor.e-control.e-readonly {
|
|
697
|
+
opacity: 1 !important; /* stylelint-disable-line declaration-no-important */
|
|
698
|
+
}
|
|
699
|
+
|
|
689
700
|
.e-image-editor {
|
|
690
701
|
background: #201f1e;
|
|
691
702
|
}
|
package/styles/fluent-dark.css
CHANGED
|
@@ -403,6 +403,13 @@
|
|
|
403
403
|
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item {
|
|
404
404
|
height: auto !important; /* stylelint-disable-line declaration-no-important */
|
|
405
405
|
}
|
|
406
|
+
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item .filter-wrapper {
|
|
407
|
+
-webkit-box-sizing: content-box;
|
|
408
|
+
box-sizing: content-box;
|
|
409
|
+
}
|
|
410
|
+
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item .filter-wrapper div {
|
|
411
|
+
text-align: center;
|
|
412
|
+
}
|
|
406
413
|
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item .filterwrapper canvas, .e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item .filter-wrapper canvas {
|
|
407
414
|
border: 2px solid transparent;
|
|
408
415
|
height: 100px;
|
|
@@ -686,6 +693,10 @@
|
|
|
686
693
|
top: calc(50% + 60px);
|
|
687
694
|
}
|
|
688
695
|
|
|
696
|
+
.e-image-editor.e-control.e-readonly {
|
|
697
|
+
opacity: 1 !important; /* stylelint-disable-line declaration-no-important */
|
|
698
|
+
}
|
|
699
|
+
|
|
689
700
|
.e-image-editor {
|
|
690
701
|
background: #201f1e;
|
|
691
702
|
}
|
package/styles/fluent-lite.css
CHANGED
|
@@ -403,6 +403,13 @@
|
|
|
403
403
|
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item {
|
|
404
404
|
height: auto !important; /* stylelint-disable-line declaration-no-important */
|
|
405
405
|
}
|
|
406
|
+
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item .filter-wrapper {
|
|
407
|
+
-webkit-box-sizing: content-box;
|
|
408
|
+
box-sizing: content-box;
|
|
409
|
+
}
|
|
410
|
+
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item .filter-wrapper div {
|
|
411
|
+
text-align: center;
|
|
412
|
+
}
|
|
406
413
|
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item .filterwrapper canvas, .e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item .filter-wrapper canvas {
|
|
407
414
|
border: 2px solid transparent;
|
|
408
415
|
height: 100px;
|
|
@@ -686,6 +693,10 @@
|
|
|
686
693
|
top: calc(50% + 60px);
|
|
687
694
|
}
|
|
688
695
|
|
|
696
|
+
.e-image-editor.e-control.e-readonly {
|
|
697
|
+
opacity: 1 !important; /* stylelint-disable-line declaration-no-important */
|
|
698
|
+
}
|
|
699
|
+
|
|
689
700
|
.e-image-editor {
|
|
690
701
|
background: #faf9f8;
|
|
691
702
|
}
|
package/styles/fluent.css
CHANGED
|
@@ -403,6 +403,13 @@
|
|
|
403
403
|
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item {
|
|
404
404
|
height: auto !important; /* stylelint-disable-line declaration-no-important */
|
|
405
405
|
}
|
|
406
|
+
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item .filter-wrapper {
|
|
407
|
+
-webkit-box-sizing: content-box;
|
|
408
|
+
box-sizing: content-box;
|
|
409
|
+
}
|
|
410
|
+
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item .filter-wrapper div {
|
|
411
|
+
text-align: center;
|
|
412
|
+
}
|
|
406
413
|
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item .filterwrapper canvas, .e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item .filter-wrapper canvas {
|
|
407
414
|
border: 2px solid transparent;
|
|
408
415
|
height: 100px;
|
|
@@ -686,6 +693,10 @@
|
|
|
686
693
|
top: calc(50% + 60px);
|
|
687
694
|
}
|
|
688
695
|
|
|
696
|
+
.e-image-editor.e-control.e-readonly {
|
|
697
|
+
opacity: 1 !important; /* stylelint-disable-line declaration-no-important */
|
|
698
|
+
}
|
|
699
|
+
|
|
689
700
|
.e-image-editor {
|
|
690
701
|
background: #faf9f8;
|
|
691
702
|
}
|
package/styles/fluent2-lite.css
CHANGED
|
@@ -410,6 +410,13 @@
|
|
|
410
410
|
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item {
|
|
411
411
|
height: auto !important; /* stylelint-disable-line declaration-no-important */
|
|
412
412
|
}
|
|
413
|
+
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item .filter-wrapper {
|
|
414
|
+
-webkit-box-sizing: content-box;
|
|
415
|
+
box-sizing: content-box;
|
|
416
|
+
}
|
|
417
|
+
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item .filter-wrapper div {
|
|
418
|
+
text-align: center;
|
|
419
|
+
}
|
|
413
420
|
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item .filterwrapper canvas, .e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item .filter-wrapper canvas {
|
|
414
421
|
border: 2px solid transparent;
|
|
415
422
|
height: 100px;
|
|
@@ -709,6 +716,10 @@
|
|
|
709
716
|
top: calc(50% + 60px);
|
|
710
717
|
}
|
|
711
718
|
|
|
719
|
+
.e-image-editor.e-control.e-readonly {
|
|
720
|
+
opacity: 1 !important; /* stylelint-disable-line declaration-no-important */
|
|
721
|
+
}
|
|
722
|
+
|
|
712
723
|
.e-image-editor {
|
|
713
724
|
background: var(--color-sf-content-bg-color-alt1);
|
|
714
725
|
}
|
package/styles/fluent2.css
CHANGED
|
@@ -410,6 +410,13 @@
|
|
|
410
410
|
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item {
|
|
411
411
|
height: auto !important; /* stylelint-disable-line declaration-no-important */
|
|
412
412
|
}
|
|
413
|
+
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item .filter-wrapper {
|
|
414
|
+
-webkit-box-sizing: content-box;
|
|
415
|
+
box-sizing: content-box;
|
|
416
|
+
}
|
|
417
|
+
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item .filter-wrapper div {
|
|
418
|
+
text-align: center;
|
|
419
|
+
}
|
|
413
420
|
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item .filterwrapper canvas, .e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item .filter-wrapper canvas {
|
|
414
421
|
border: 2px solid transparent;
|
|
415
422
|
height: 100px;
|
|
@@ -709,6 +716,10 @@
|
|
|
709
716
|
top: calc(50% + 60px);
|
|
710
717
|
}
|
|
711
718
|
|
|
719
|
+
.e-image-editor.e-control.e-readonly {
|
|
720
|
+
opacity: 1 !important; /* stylelint-disable-line declaration-no-important */
|
|
721
|
+
}
|
|
722
|
+
|
|
712
723
|
.e-image-editor {
|
|
713
724
|
background: var(--color-sf-content-bg-color-alt1);
|
|
714
725
|
}
|
|
@@ -397,6 +397,13 @@
|
|
|
397
397
|
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item {
|
|
398
398
|
height: auto !important; /* stylelint-disable-line declaration-no-important */
|
|
399
399
|
}
|
|
400
|
+
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item .filter-wrapper {
|
|
401
|
+
-webkit-box-sizing: content-box;
|
|
402
|
+
box-sizing: content-box;
|
|
403
|
+
}
|
|
404
|
+
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item .filter-wrapper div {
|
|
405
|
+
text-align: center;
|
|
406
|
+
}
|
|
400
407
|
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item .filterwrapper canvas, .e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item .filter-wrapper canvas {
|
|
401
408
|
border: 2px solid transparent;
|
|
402
409
|
height: 100px;
|
|
@@ -676,6 +683,10 @@
|
|
|
676
683
|
top: calc(50% + 60px);
|
|
677
684
|
}
|
|
678
685
|
|
|
686
|
+
.e-image-editor.e-control.e-readonly {
|
|
687
|
+
opacity: 1 !important; /* stylelint-disable-line declaration-no-important */
|
|
688
|
+
}
|
|
689
|
+
|
|
679
690
|
.e-image-editor {
|
|
680
691
|
background: #fff;
|
|
681
692
|
}
|
|
@@ -397,6 +397,13 @@
|
|
|
397
397
|
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item {
|
|
398
398
|
height: auto !important; /* stylelint-disable-line declaration-no-important */
|
|
399
399
|
}
|
|
400
|
+
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item .filter-wrapper {
|
|
401
|
+
-webkit-box-sizing: content-box;
|
|
402
|
+
box-sizing: content-box;
|
|
403
|
+
}
|
|
404
|
+
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item .filter-wrapper div {
|
|
405
|
+
text-align: center;
|
|
406
|
+
}
|
|
400
407
|
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item .filterwrapper canvas, .e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item .filter-wrapper canvas {
|
|
401
408
|
border: 2px solid transparent;
|
|
402
409
|
height: 100px;
|
|
@@ -676,6 +683,10 @@
|
|
|
676
683
|
top: calc(50% + 60px);
|
|
677
684
|
}
|
|
678
685
|
|
|
686
|
+
.e-image-editor.e-control.e-readonly {
|
|
687
|
+
opacity: 1 !important; /* stylelint-disable-line declaration-no-important */
|
|
688
|
+
}
|
|
689
|
+
|
|
679
690
|
.e-image-editor {
|
|
680
691
|
background: #fff;
|
|
681
692
|
}
|
|
@@ -401,6 +401,13 @@
|
|
|
401
401
|
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item {
|
|
402
402
|
height: auto !important; /* stylelint-disable-line declaration-no-important */
|
|
403
403
|
}
|
|
404
|
+
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item .filter-wrapper {
|
|
405
|
+
-webkit-box-sizing: content-box;
|
|
406
|
+
box-sizing: content-box;
|
|
407
|
+
}
|
|
408
|
+
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item .filter-wrapper div {
|
|
409
|
+
text-align: center;
|
|
410
|
+
}
|
|
404
411
|
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item .filterwrapper canvas, .e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item .filter-wrapper canvas {
|
|
405
412
|
border: 2px solid transparent;
|
|
406
413
|
height: 100px;
|
|
@@ -684,6 +691,10 @@
|
|
|
684
691
|
top: calc(50% + 60px);
|
|
685
692
|
}
|
|
686
693
|
|
|
694
|
+
.e-image-editor.e-control.e-readonly {
|
|
695
|
+
opacity: 1 !important; /* stylelint-disable-line declaration-no-important */
|
|
696
|
+
}
|
|
697
|
+
|
|
687
698
|
.e-image-editor {
|
|
688
699
|
background: #000;
|
|
689
700
|
}
|
package/styles/highcontrast.css
CHANGED
|
@@ -401,6 +401,13 @@
|
|
|
401
401
|
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item {
|
|
402
402
|
height: auto !important; /* stylelint-disable-line declaration-no-important */
|
|
403
403
|
}
|
|
404
|
+
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item .filter-wrapper {
|
|
405
|
+
-webkit-box-sizing: content-box;
|
|
406
|
+
box-sizing: content-box;
|
|
407
|
+
}
|
|
408
|
+
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item .filter-wrapper div {
|
|
409
|
+
text-align: center;
|
|
410
|
+
}
|
|
404
411
|
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item .filterwrapper canvas, .e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item .filter-wrapper canvas {
|
|
405
412
|
border: 2px solid transparent;
|
|
406
413
|
height: 100px;
|
|
@@ -684,6 +691,10 @@
|
|
|
684
691
|
top: calc(50% + 60px);
|
|
685
692
|
}
|
|
686
693
|
|
|
694
|
+
.e-image-editor.e-control.e-readonly {
|
|
695
|
+
opacity: 1 !important; /* stylelint-disable-line declaration-no-important */
|
|
696
|
+
}
|
|
697
|
+
|
|
687
698
|
.e-image-editor {
|
|
688
699
|
background: #000;
|
|
689
700
|
}
|
|
@@ -335,6 +335,13 @@
|
|
|
335
335
|
& .e-toolbar-item {
|
|
336
336
|
height: auto !important; /* stylelint-disable-line declaration-no-important */
|
|
337
337
|
|
|
338
|
+
& .filter-wrapper {
|
|
339
|
+
box-sizing: content-box;
|
|
340
|
+
& div {
|
|
341
|
+
text-align: center;
|
|
342
|
+
}
|
|
343
|
+
}
|
|
344
|
+
|
|
338
345
|
& .filterwrapper canvas,
|
|
339
346
|
& .filter-wrapper canvas {
|
|
340
347
|
border: 2px solid transparent;
|
|
@@ -813,4 +820,8 @@
|
|
|
813
820
|
.e-device.e-image-editor .e-ie-drop-area .e-ie-drop-info {
|
|
814
821
|
top: calc(50% + 60px);
|
|
815
822
|
}
|
|
823
|
+
|
|
824
|
+
.e-image-editor.e-control.e-readonly {
|
|
825
|
+
opacity: 1 !important; /* stylelint-disable-line declaration-no-important */
|
|
826
|
+
}
|
|
816
827
|
}
|
|
@@ -1,4 +1,6 @@
|
|
|
1
|
-
|
|
1
|
+
@use 'sass:color';
|
|
2
|
+
|
|
3
|
+
$image-editor-background: color.adjust($grey-black, $lightness: 16%) !default;
|
|
2
4
|
$image-editor-border: 1px solid $grey-600 !default;
|
|
3
5
|
$image-editor-toolbar-icon-color: $grey-dark-font !default;
|
|
4
6
|
$img-editor-cp-preview-border-bottom-color: $grey-black !default;
|
|
@@ -1,4 +1,6 @@
|
|
|
1
|
-
@
|
|
1
|
+
@use 'sass:color';
|
|
2
|
+
|
|
3
|
+
@include export-module('image-editor-theme') {
|
|
2
4
|
.e-image-editor {
|
|
3
5
|
background: $image-editor-background;
|
|
4
6
|
|
|
@@ -83,7 +85,7 @@
|
|
|
83
85
|
border: 2px solid #fff !important; /* stylelint-disable-line declaration-no-important */
|
|
84
86
|
}
|
|
85
87
|
@else if $skin-name == 'bootstrap4' {
|
|
86
|
-
$color-rgba: rgba(mix(
|
|
88
|
+
$color-rgba: rgba(color.mix(color.adjust($btn-focus-bgcolor, $lightness: 50%), $btn-focus-border-color, 15%), .5);
|
|
87
89
|
box-shadow: 0 0 0 .25em $color-rgba !important; /* stylelint-disable-line declaration-no-important */
|
|
88
90
|
}
|
|
89
91
|
@else if $skin-name == 'bootstrap5' {
|
|
@@ -507,6 +507,13 @@
|
|
|
507
507
|
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item {
|
|
508
508
|
height: auto !important; /* stylelint-disable-line declaration-no-important */
|
|
509
509
|
}
|
|
510
|
+
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item .filter-wrapper {
|
|
511
|
+
-webkit-box-sizing: content-box;
|
|
512
|
+
box-sizing: content-box;
|
|
513
|
+
}
|
|
514
|
+
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item .filter-wrapper div {
|
|
515
|
+
text-align: center;
|
|
516
|
+
}
|
|
510
517
|
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item .filterwrapper canvas, .e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item .filter-wrapper canvas {
|
|
511
518
|
border: 2px solid transparent;
|
|
512
519
|
height: 100px;
|
|
@@ -790,6 +797,10 @@
|
|
|
790
797
|
top: calc(50% + 60px);
|
|
791
798
|
}
|
|
792
799
|
|
|
800
|
+
.e-image-editor.e-control.e-readonly {
|
|
801
|
+
opacity: 1 !important; /* stylelint-disable-line declaration-no-important */
|
|
802
|
+
}
|
|
803
|
+
|
|
793
804
|
.e-image-editor {
|
|
794
805
|
background: var(--color-sf-border-secondary);
|
|
795
806
|
}
|
|
@@ -398,6 +398,13 @@
|
|
|
398
398
|
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item {
|
|
399
399
|
height: auto !important; /* stylelint-disable-line declaration-no-important */
|
|
400
400
|
}
|
|
401
|
+
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item .filter-wrapper {
|
|
402
|
+
-webkit-box-sizing: content-box;
|
|
403
|
+
box-sizing: content-box;
|
|
404
|
+
}
|
|
405
|
+
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item .filter-wrapper div {
|
|
406
|
+
text-align: center;
|
|
407
|
+
}
|
|
401
408
|
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item .filterwrapper canvas, .e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item .filter-wrapper canvas {
|
|
402
409
|
border: 2px solid transparent;
|
|
403
410
|
height: 100px;
|
|
@@ -677,6 +684,10 @@
|
|
|
677
684
|
top: calc(50% + 60px);
|
|
678
685
|
}
|
|
679
686
|
|
|
687
|
+
.e-image-editor.e-control.e-readonly {
|
|
688
|
+
opacity: 1 !important; /* stylelint-disable-line declaration-no-important */
|
|
689
|
+
}
|
|
690
|
+
|
|
680
691
|
.e-image-editor {
|
|
681
692
|
background: #959595;
|
|
682
693
|
}
|