@syncfusion/ej2-image-editor 28.1.41 → 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
|
@@ -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;
|
|
@@ -678,6 +685,10 @@
|
|
|
678
685
|
top: calc(50% + 60px);
|
|
679
686
|
}
|
|
680
687
|
|
|
688
|
+
.e-image-editor.e-control.e-readonly {
|
|
689
|
+
opacity: 1 !important; /* stylelint-disable-line declaration-no-important */
|
|
690
|
+
}
|
|
691
|
+
|
|
681
692
|
.e-image-editor {
|
|
682
693
|
background: #e6e6e6;
|
|
683
694
|
}
|
|
@@ -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: #e9ecef;
|
|
681
692
|
}
|
|
@@ -683,10 +694,10 @@
|
|
|
683
694
|
background: #f8f9fa;
|
|
684
695
|
}
|
|
685
696
|
.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 {
|
|
686
|
-
border-color:
|
|
697
|
+
border-color: rgb(84.3605150215, 91.3905579399, 97.6394849785) !important; /* stylelint-disable-line declaration-no-important */
|
|
687
698
|
}
|
|
688
699
|
.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 {
|
|
689
|
-
border-color:
|
|
700
|
+
border-color: rgb(84.3605150215, 91.3905579399, 97.6394849785) !important; /* stylelint-disable-line declaration-no-important */
|
|
690
701
|
}
|
|
691
702
|
.e-image-editor .e-toolbar .e-toolbar-items .e-tbar-btn.e-btn.e-selected-btn {
|
|
692
703
|
background: #495057 !important; /* stylelint-disable-line declaration-no-important */
|
|
@@ -708,15 +719,15 @@
|
|
|
708
719
|
color: #fff;
|
|
709
720
|
}
|
|
710
721
|
.e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn:focus {
|
|
711
|
-
background:
|
|
722
|
+
background: rgb(91.452360515, 99.0733905579, 105.847639485);
|
|
712
723
|
-webkit-box-shadow: none;
|
|
713
724
|
box-shadow: none;
|
|
714
725
|
color: #fff;
|
|
715
|
-
-webkit-box-shadow: 0 0 0 0.25em rgba(115, 122,
|
|
716
|
-
box-shadow: 0 0 0 0.25em rgba(115, 122,
|
|
726
|
+
-webkit-box-shadow: 0 0 0 0.25em rgba(115.3599785408, 122.5070600858, 128.8600214592, 0.5) !important;
|
|
727
|
+
box-shadow: 0 0 0 0.25em rgba(115.3599785408, 122.5070600858, 128.8600214592, 0.5) !important; /* stylelint-disable-line declaration-no-important */
|
|
717
728
|
}
|
|
718
729
|
.e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn:active {
|
|
719
|
-
background:
|
|
730
|
+
background: rgb(84.3605150215, 91.3905579399, 97.6394849785);
|
|
720
731
|
-webkit-box-shadow: none;
|
|
721
732
|
box-shadow: none;
|
|
722
733
|
color: #fff;
|
|
@@ -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,20 +690,24 @@
|
|
|
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
|
-
background:
|
|
698
|
+
background: rgb(68.0034482759, 75.85, 83.6965517241);
|
|
688
699
|
}
|
|
689
700
|
.e-image-editor .e-contextual-toolbar-wrapper {
|
|
690
|
-
background:
|
|
701
|
+
background: rgb(26.177027027, 29.35, 32.522972973);
|
|
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;
|
|
@@ -705,28 +716,28 @@
|
|
|
705
716
|
background: inherit;
|
|
706
717
|
border: none;
|
|
707
718
|
margin-top: -1px;
|
|
708
|
-
background:
|
|
719
|
+
background: rgb(26.177027027, 29.35, 32.522972973);
|
|
709
720
|
color: #adb5bd;
|
|
710
721
|
}
|
|
711
722
|
.e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn .e-caret-hide {
|
|
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
|
}
|
|
@@ -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
|
}
|
|
@@ -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
|
}
|
|
@@ -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
|
}
|
|
@@ -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
|
}
|
|
@@ -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
|
}
|
|
@@ -419,6 +419,13 @@
|
|
|
419
419
|
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item {
|
|
420
420
|
height: auto !important; /* stylelint-disable-line declaration-no-important */
|
|
421
421
|
}
|
|
422
|
+
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item .filter-wrapper {
|
|
423
|
+
-webkit-box-sizing: content-box;
|
|
424
|
+
box-sizing: content-box;
|
|
425
|
+
}
|
|
426
|
+
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item .filter-wrapper div {
|
|
427
|
+
text-align: center;
|
|
428
|
+
}
|
|
422
429
|
.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 {
|
|
423
430
|
border: 2px solid transparent;
|
|
424
431
|
height: 100px;
|
|
@@ -698,17 +705,21 @@
|
|
|
698
705
|
top: calc(50% + 60px);
|
|
699
706
|
}
|
|
700
707
|
|
|
708
|
+
.e-image-editor.e-control.e-readonly {
|
|
709
|
+
opacity: 1 !important; /* stylelint-disable-line declaration-no-important */
|
|
710
|
+
}
|
|
711
|
+
|
|
701
712
|
.e-image-editor {
|
|
702
|
-
background:
|
|
713
|
+
background: rgb(40.8, 40.8, 40.8);
|
|
703
714
|
}
|
|
704
715
|
.e-image-editor .e-contextual-toolbar-wrapper {
|
|
705
716
|
background: #212121;
|
|
706
717
|
}
|
|
707
718
|
.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 {
|
|
708
|
-
border-color:
|
|
719
|
+
border-color: rgb(125.44, 125.44, 125.44) !important; /* stylelint-disable-line declaration-no-important */
|
|
709
720
|
}
|
|
710
721
|
.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 {
|
|
711
|
-
border-color:
|
|
722
|
+
border-color: rgb(125.44, 125.44, 125.44) !important; /* stylelint-disable-line declaration-no-important */
|
|
712
723
|
}
|
|
713
724
|
.e-image-editor .e-toolbar .e-toolbar-items .e-tbar-btn.e-btn .e-icons {
|
|
714
725
|
color: #fff;
|
|
@@ -731,13 +742,13 @@
|
|
|
731
742
|
color: #fff;
|
|
732
743
|
}
|
|
733
744
|
.e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn:focus {
|
|
734
|
-
background:
|
|
745
|
+
background: rgb(134.92, 134.92, 134.92);
|
|
735
746
|
-webkit-box-shadow: none;
|
|
736
747
|
box-shadow: none;
|
|
737
748
|
color: #fff;
|
|
738
749
|
}
|
|
739
750
|
.e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn:active {
|
|
740
|
-
background:
|
|
751
|
+
background: rgb(125.44, 125.44, 125.44);
|
|
741
752
|
-webkit-box-shadow: none;
|
|
742
753
|
box-shadow: none;
|
|
743
754
|
color: #fff;
|
|
@@ -419,6 +419,13 @@
|
|
|
419
419
|
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item {
|
|
420
420
|
height: auto !important; /* stylelint-disable-line declaration-no-important */
|
|
421
421
|
}
|
|
422
|
+
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item .filter-wrapper {
|
|
423
|
+
-webkit-box-sizing: content-box;
|
|
424
|
+
box-sizing: content-box;
|
|
425
|
+
}
|
|
426
|
+
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item .filter-wrapper div {
|
|
427
|
+
text-align: center;
|
|
428
|
+
}
|
|
422
429
|
.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 {
|
|
423
430
|
border: 2px solid transparent;
|
|
424
431
|
height: 100px;
|
|
@@ -700,6 +707,10 @@
|
|
|
700
707
|
top: calc(50% + 60px);
|
|
701
708
|
}
|
|
702
709
|
|
|
710
|
+
.e-image-editor.e-control.e-readonly {
|
|
711
|
+
opacity: 1 !important; /* stylelint-disable-line declaration-no-important */
|
|
712
|
+
}
|
|
713
|
+
|
|
703
714
|
.e-image-editor {
|
|
704
715
|
background: #eee;
|
|
705
716
|
}
|
|
@@ -707,10 +718,10 @@
|
|
|
707
718
|
background: #fafafa;
|
|
708
719
|
}
|
|
709
720
|
.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 {
|
|
710
|
-
border-color: rgba(
|
|
721
|
+
border-color: rgba(183.5116545663, 183.5116545663, 183.5116545663, 0.9584) !important; /* stylelint-disable-line declaration-no-important */
|
|
711
722
|
}
|
|
712
723
|
.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 {
|
|
713
|
-
border-color: rgba(
|
|
724
|
+
border-color: rgba(183.5116545663, 183.5116545663, 183.5116545663, 0.9584) !important; /* stylelint-disable-line declaration-no-important */
|
|
714
725
|
}
|
|
715
726
|
.e-image-editor .e-toolbar .e-toolbar-items .e-tbar-btn.e-btn .e-icons {
|
|
716
727
|
color: #757575;
|
|
@@ -739,7 +750,7 @@
|
|
|
739
750
|
color: rgba(0, 0, 0, 0.87);
|
|
740
751
|
}
|
|
741
752
|
.e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn:active {
|
|
742
|
-
background: rgba(
|
|
753
|
+
background: rgba(183.5116545663, 183.5116545663, 183.5116545663, 0.9584);
|
|
743
754
|
-webkit-box-shadow: none;
|
|
744
755
|
box-shadow: none;
|
|
745
756
|
color: rgba(0, 0, 0, 0.87);
|
|
@@ -404,6 +404,13 @@
|
|
|
404
404
|
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item {
|
|
405
405
|
height: auto !important; /* stylelint-disable-line declaration-no-important */
|
|
406
406
|
}
|
|
407
|
+
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item .filter-wrapper {
|
|
408
|
+
-webkit-box-sizing: content-box;
|
|
409
|
+
box-sizing: content-box;
|
|
410
|
+
}
|
|
411
|
+
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item .filter-wrapper div {
|
|
412
|
+
text-align: center;
|
|
413
|
+
}
|
|
407
414
|
.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 {
|
|
408
415
|
border: 2px solid transparent;
|
|
409
416
|
height: 100px;
|
|
@@ -720,6 +727,10 @@
|
|
|
720
727
|
top: calc(50% + 60px);
|
|
721
728
|
}
|
|
722
729
|
|
|
730
|
+
.e-image-editor.e-control.e-readonly {
|
|
731
|
+
opacity: 1 !important; /* stylelint-disable-line declaration-no-important */
|
|
732
|
+
}
|
|
733
|
+
|
|
723
734
|
.e-image-editor {
|
|
724
735
|
background: -webkit-gradient(linear, left bottom, left top, from(rgba(var(--color-sf-primary), 0.14)), to(rgba(var(--color-sf-primary), 0.14))), rgba(var(--color-sf-surface));
|
|
725
736
|
background: linear-gradient(0deg, rgba(var(--color-sf-primary), 0.14), rgba(var(--color-sf-primary), 0.14)), rgba(var(--color-sf-surface));
|
|
@@ -406,6 +406,13 @@
|
|
|
406
406
|
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item {
|
|
407
407
|
height: auto !important; /* stylelint-disable-line declaration-no-important */
|
|
408
408
|
}
|
|
409
|
+
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item .filter-wrapper {
|
|
410
|
+
-webkit-box-sizing: content-box;
|
|
411
|
+
box-sizing: content-box;
|
|
412
|
+
}
|
|
413
|
+
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item .filter-wrapper div {
|
|
414
|
+
text-align: center;
|
|
415
|
+
}
|
|
409
416
|
.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 {
|
|
410
417
|
border: 2px solid transparent;
|
|
411
418
|
height: 100px;
|
|
@@ -722,6 +729,10 @@
|
|
|
722
729
|
top: calc(50% + 60px);
|
|
723
730
|
}
|
|
724
731
|
|
|
732
|
+
.e-image-editor.e-control.e-readonly {
|
|
733
|
+
opacity: 1 !important; /* stylelint-disable-line declaration-no-important */
|
|
734
|
+
}
|
|
735
|
+
|
|
725
736
|
.e-image-editor {
|
|
726
737
|
background: -webkit-gradient(linear, left bottom, left top, from(rgba(var(--color-sf-primary), 0.14)), to(rgba(var(--color-sf-primary), 0.14))), rgba(var(--color-sf-surface));
|
|
727
738
|
background: linear-gradient(0deg, rgba(var(--color-sf-primary), 0.14), rgba(var(--color-sf-primary), 0.14)), rgba(var(--color-sf-surface));
|
|
@@ -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;
|
|
@@ -680,6 +687,10 @@
|
|
|
680
687
|
top: calc(50% + 60px);
|
|
681
688
|
}
|
|
682
689
|
|
|
690
|
+
.e-image-editor.e-control.e-readonly {
|
|
691
|
+
opacity: 1 !important; /* stylelint-disable-line declaration-no-important */
|
|
692
|
+
}
|
|
693
|
+
|
|
683
694
|
.e-image-editor {
|
|
684
695
|
background: #4b5563;
|
|
685
696
|
}
|
|
@@ -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;
|
|
@@ -680,6 +687,10 @@
|
|
|
680
687
|
top: calc(50% + 60px);
|
|
681
688
|
}
|
|
682
689
|
|
|
690
|
+
.e-image-editor.e-control.e-readonly {
|
|
691
|
+
opacity: 1 !important; /* stylelint-disable-line declaration-no-important */
|
|
692
|
+
}
|
|
693
|
+
|
|
683
694
|
.e-image-editor {
|
|
684
695
|
background: #e5e7eb;
|
|
685
696
|
}
|