@syncfusion/ej2-image-editor 23.1.41 → 23.2.4
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 +12 -2
- 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 +305 -163
- package/dist/es6/ej2-image-editor.es2015.js.map +1 -1
- package/dist/es6/ej2-image-editor.es5.js +303 -161
- 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 +11 -11
- package/src/image-editor/action/draw.js +177 -133
- package/src/image-editor/action/selection.js +37 -1
- package/src/image-editor/action/shape.d.ts +1 -0
- package/src/image-editor/action/shape.js +14 -0
- package/src/image-editor/action/transform.js +3 -0
- package/src/image-editor/base/image-editor.js +3 -1
- package/src/image-editor/renderer/toolbar.js +70 -27
- package/styles/bootstrap-dark.css +14 -3
- package/styles/bootstrap.css +14 -3
- package/styles/bootstrap4.css +14 -3
- package/styles/bootstrap5-dark.css +14 -3
- package/styles/bootstrap5.css +14 -3
- package/styles/fabric-dark.css +14 -3
- package/styles/fabric.css +14 -3
- package/styles/fluent-dark.css +14 -3
- package/styles/fluent.css +14 -3
- package/styles/highcontrast-light.css +14 -3
- package/styles/highcontrast.css +14 -3
- package/styles/image-editor/_bootstrap-dark-definition.scss +4 -0
- package/styles/image-editor/_bootstrap-definition.scss +4 -0
- package/styles/image-editor/_bootstrap4-definition.scss +4 -0
- package/styles/image-editor/_bootstrap5-definition.scss +4 -0
- package/styles/image-editor/_fabric-dark-definition.scss +4 -0
- package/styles/image-editor/_fabric-definition.scss +4 -0
- package/styles/image-editor/_fluent-definition.scss +4 -0
- package/styles/image-editor/_fusionnew-definition.scss +4 -0
- package/styles/image-editor/_highcontrast-definition.scss +4 -0
- package/styles/image-editor/_highcontrast-light-definition.scss +4 -0
- package/styles/image-editor/_layout.scss +21 -7
- package/styles/image-editor/_material-dark-definition.scss +4 -0
- package/styles/image-editor/_material-definition.scss +4 -0
- package/styles/image-editor/_material3-definition.scss +4 -0
- package/styles/image-editor/_tailwind-definition.scss +4 -0
- package/styles/image-editor/bootstrap-dark.css +14 -3
- package/styles/image-editor/bootstrap.css +14 -3
- package/styles/image-editor/bootstrap4.css +14 -3
- package/styles/image-editor/bootstrap5-dark.css +14 -3
- package/styles/image-editor/bootstrap5.css +14 -3
- package/styles/image-editor/fabric-dark.css +14 -3
- package/styles/image-editor/fabric.css +14 -3
- package/styles/image-editor/fluent-dark.css +14 -3
- package/styles/image-editor/fluent.css +14 -3
- package/styles/image-editor/highcontrast-light.css +14 -3
- package/styles/image-editor/highcontrast.css +14 -3
- package/styles/image-editor/material-dark.css +14 -3
- package/styles/image-editor/material.css +14 -3
- package/styles/image-editor/material3-dark.css +19 -4
- package/styles/image-editor/material3.css +19 -4
- package/styles/image-editor/tailwind-dark.css +14 -3
- package/styles/image-editor/tailwind.css +14 -3
- package/styles/material-dark.css +14 -3
- package/styles/material.css +14 -3
- package/styles/material3-dark.css +19 -4
- package/styles/material3.css +19 -4
- package/styles/tailwind-dark.css +14 -3
- package/styles/tailwind.css +14 -3
|
@@ -766,19 +766,32 @@ var ToolbarModule = /** @class */ (function () {
|
|
|
766
766
|
var parent = this.parent;
|
|
767
767
|
var aspectRatioHeight = parent.element.querySelector('#' + parent.element.id + '_resizeHeight');
|
|
768
768
|
var aspectRatioWidth = parent.element.querySelector('#' + parent.element.id + '_resizeWidth');
|
|
769
|
-
var
|
|
769
|
+
var icon = parent.element.querySelector('#' + parent.element.id + '_aspectratio');
|
|
770
770
|
var originalWidth = parent.img.destWidth;
|
|
771
771
|
var originalHeight = parent.img.destHeight;
|
|
772
772
|
var aspectRatioHeightValue = parseFloat(aspectRatioHeight.value);
|
|
773
773
|
var width = Math.floor((aspectRatioHeightValue / (originalHeight / originalWidth)));
|
|
774
|
-
|
|
774
|
+
var widthNumeric = getComponent(aspectRatioWidth, 'numerictextbox');
|
|
775
|
+
if (icon) {
|
|
775
776
|
if (width != null && !isNaN(width)) {
|
|
776
|
-
|
|
777
|
-
|
|
777
|
+
if (isNullOrUndefined(widthNumeric.value)) {
|
|
778
|
+
widthNumeric.placeholder = width + ' px';
|
|
779
|
+
aspectRatioWidth.placeholder = width.toString() + ' px';
|
|
780
|
+
}
|
|
781
|
+
else {
|
|
782
|
+
widthNumeric.value = width;
|
|
783
|
+
aspectRatioWidth.value = width.toString() + ' px';
|
|
784
|
+
}
|
|
778
785
|
}
|
|
779
786
|
else {
|
|
780
|
-
|
|
781
|
-
|
|
787
|
+
if (isNullOrUndefined(widthNumeric.value)) {
|
|
788
|
+
widthNumeric.placeholder = '0 px';
|
|
789
|
+
aspectRatioWidth.placeholder = '0 px';
|
|
790
|
+
}
|
|
791
|
+
else {
|
|
792
|
+
widthNumeric.value = 0;
|
|
793
|
+
aspectRatioWidth.value = '0 px';
|
|
794
|
+
}
|
|
782
795
|
}
|
|
783
796
|
}
|
|
784
797
|
};
|
|
@@ -787,37 +800,53 @@ var ToolbarModule = /** @class */ (function () {
|
|
|
787
800
|
var parent = this.parent;
|
|
788
801
|
var aspectRatioHeight = parent.element.querySelector('#' + parent.element.id + '_resizeHeight');
|
|
789
802
|
var aspectRatioWidth = parent.element.querySelector('#' + parent.element.id + '_resizeWidth');
|
|
790
|
-
var
|
|
803
|
+
var icon = parent.element.querySelector('#' + parent.element.id + '_aspectratio');
|
|
791
804
|
var originalWidth = parent.img.destWidth;
|
|
792
805
|
var originalHeight = parent.img.destHeight;
|
|
793
806
|
var aspectRatioWidthValue = parseFloat(aspectRatioWidth.value);
|
|
794
807
|
var height = Math.floor((aspectRatioWidthValue / (originalWidth / originalHeight)));
|
|
795
|
-
|
|
796
|
-
|
|
797
|
-
|
|
798
|
-
|
|
799
|
-
|
|
800
|
-
|
|
801
|
-
|
|
808
|
+
var heightNumeric = getComponent(aspectRatioHeight, 'numerictextbox');
|
|
809
|
+
if (icon) {
|
|
810
|
+
if (!isNaN(height)) {
|
|
811
|
+
if (isNullOrUndefined(heightNumeric.value)) {
|
|
812
|
+
heightNumeric.placeholder = height + ' px';
|
|
813
|
+
aspectRatioHeight.placeholder = height.toString() + ' px';
|
|
814
|
+
}
|
|
815
|
+
else {
|
|
816
|
+
heightNumeric.value = height;
|
|
817
|
+
aspectRatioHeight.value = height.toString() + ' px';
|
|
818
|
+
}
|
|
819
|
+
}
|
|
820
|
+
else {
|
|
821
|
+
if (isNullOrUndefined(heightNumeric.value)) {
|
|
822
|
+
heightNumeric.placeholder = '0 px';
|
|
823
|
+
aspectRatioHeight.placeholder = '0 px';
|
|
824
|
+
}
|
|
825
|
+
else {
|
|
826
|
+
heightNumeric.value = 0;
|
|
827
|
+
aspectRatioHeight.value = '0 px';
|
|
828
|
+
}
|
|
829
|
+
}
|
|
802
830
|
}
|
|
803
831
|
};
|
|
804
832
|
ToolbarModule.prototype.getResizeToolbarItem = function () {
|
|
805
833
|
var toolbarItems = [];
|
|
834
|
+
var isResize = this.parent.aspectWidth && this.parent.aspectHeight ? true : false;
|
|
806
835
|
var spanWidth = document.createElement('span');
|
|
807
836
|
spanWidth.innerHTML = this.l10n.getConstant('W');
|
|
808
837
|
toolbarItems.push({ id: this.parent.element.id + '_width', cssClass: 'e-ie-resize-width', template: spanWidth, align: 'Center' });
|
|
809
838
|
toolbarItems.push({ id: this.parent.element.id + '_resizeWidth', prefixIcon: 'e-icons e-anti-clock-wise',
|
|
810
839
|
tooltipText: this.l10n.getConstant('Width'), align: 'Center', type: 'Input', template: new NumericTextBox({ width: 75, htmlAttributes: { maxLength: "4" },
|
|
811
|
-
showSpinButton: false, value:
|
|
812
|
-
format: '###.## px' })
|
|
840
|
+
showSpinButton: false, value: isResize ? this.parent.aspectWidth : null,
|
|
841
|
+
placeholder: isResize ? null : Math.ceil(this.parent.img.srcWidth).toString(), format: '###.## px' })
|
|
813
842
|
});
|
|
814
843
|
var spanHeight = document.createElement('span');
|
|
815
844
|
spanHeight.innerHTML = this.l10n.getConstant('H');
|
|
816
845
|
toolbarItems.push({ id: this.parent.element.id + '_height', cssClass: 'e-ie-resize-height', template: spanHeight, align: 'Center' });
|
|
817
846
|
toolbarItems.push({ id: this.parent.element.id + '_resizeHeight', prefixIcon: 'e-icons e-clock-wise',
|
|
818
847
|
tooltipText: this.l10n.getConstant('Height'), align: 'Center', type: 'Input', template: new NumericTextBox({ width: 75, htmlAttributes: { maxLength: "4" },
|
|
819
|
-
showSpinButton: false, value:
|
|
820
|
-
format: '###.## px' })
|
|
848
|
+
showSpinButton: false, value: isResize ? this.parent.aspectHeight : null,
|
|
849
|
+
placeholder: isResize ? null : Math.ceil(this.parent.img.srcHeight).toString(), format: '###.## px' })
|
|
821
850
|
});
|
|
822
851
|
if (!this.isAspectRatio) {
|
|
823
852
|
toolbarItems.push({ id: this.parent.element.id + '_aspectratio', prefixIcon: 'e-icons e-lock', align: 'Center', tooltipText: this.l10n.getConstant('AspectRatio'), type: 'Button' });
|
|
@@ -887,14 +916,11 @@ var ToolbarModule = /** @class */ (function () {
|
|
|
887
916
|
var parent = this.parent;
|
|
888
917
|
var aspectRatioHeight = parent.element.querySelector('#' + parent.element.id + '_resizeHeight');
|
|
889
918
|
var aspectRatioWidth = parent.element.querySelector('#' + parent.element.id + '_resizeWidth');
|
|
890
|
-
|
|
891
|
-
|
|
892
|
-
|
|
893
|
-
|
|
894
|
-
|
|
895
|
-
if (!isNullOrUndefined(aspectRatioWidth)) {
|
|
896
|
-
aspectRatioHeight.addEventListener('keyup', this.widthAspectRatio.bind(this));
|
|
897
|
-
}
|
|
919
|
+
if (!isNullOrUndefined(aspectRatioHeight)) {
|
|
920
|
+
aspectRatioWidth.addEventListener('keyup', this.heightAspectRatio.bind(this));
|
|
921
|
+
}
|
|
922
|
+
if (!isNullOrUndefined(aspectRatioWidth)) {
|
|
923
|
+
aspectRatioHeight.addEventListener('keyup', this.widthAspectRatio.bind(this));
|
|
898
924
|
}
|
|
899
925
|
};
|
|
900
926
|
ToolbarModule.prototype.enableDisableTbrBtn = function () {
|
|
@@ -973,7 +999,7 @@ var ToolbarModule = /** @class */ (function () {
|
|
|
973
999
|
};
|
|
974
1000
|
ToolbarModule.prototype.fileSelect = function (inputElement, args) {
|
|
975
1001
|
var type = inputElement.files[0].type.split('/')[1];
|
|
976
|
-
if (type === 'png' || type === 'jpg' || type === 'jpeg' || type === 'svg') {
|
|
1002
|
+
if (type === 'png' || type === 'jpg' || type === 'jpeg' || type === 'svg' || type === 'svg+xml') {
|
|
977
1003
|
this.parent.notify('draw', { prop: 'fileSelect', value: { inputElement: inputElement, args: args } });
|
|
978
1004
|
}
|
|
979
1005
|
else {
|
|
@@ -3491,6 +3517,8 @@ var ToolbarModule = /** @class */ (function () {
|
|
|
3491
3517
|
ToolbarModule.prototype.performDefTbrClick = function (type, isContextualToolbar, isDisabledAdjustment, isDisabledFilter, isFilterFinetune) {
|
|
3492
3518
|
var parent = this.parent;
|
|
3493
3519
|
var zoomIn = parent.element.querySelector('#' + parent.element.id + '_zoomIn');
|
|
3520
|
+
var aspectRatioHeight = parent.element.querySelector('#' + parent.element.id + '_resizeHeight');
|
|
3521
|
+
var aspectRatioWidth = parent.element.querySelector('#' + parent.element.id + '_resizeWidth');
|
|
3494
3522
|
var isCropSelection = false;
|
|
3495
3523
|
var panBtn;
|
|
3496
3524
|
var splitWords;
|
|
@@ -3570,12 +3598,27 @@ var ToolbarModule = /** @class */ (function () {
|
|
|
3570
3598
|
case 'aspectratio':
|
|
3571
3599
|
if (!parent.isCircleCrop && (isNullOrUndefined(parent.currSelectionPoint)) ||
|
|
3572
3600
|
(parent.currSelectionPoint && parent.currSelectionPoint.shape !== 'crop-circle')) {
|
|
3601
|
+
if (getComponent(aspectRatioWidth, 'numerictextbox').value) {
|
|
3602
|
+
parent.aspectWidth = getComponent(aspectRatioWidth, 'numerictextbox').value;
|
|
3603
|
+
parent.aspectHeight = getComponent(aspectRatioHeight, 'numerictextbox').value;
|
|
3604
|
+
parent.notify('transform', { prop: 'resize', value: { width: parent.aspectWidth, height: null, isAspectRatio: true } });
|
|
3605
|
+
}
|
|
3573
3606
|
parent.resizeSrc = { startX: parent.img.srcLeft, startY: parent.img.srcTop, width: parent.img.srcWidth,
|
|
3574
3607
|
height: parent.img.srcHeight };
|
|
3575
3608
|
this.refreshToolbar('resize');
|
|
3576
3609
|
}
|
|
3577
3610
|
break;
|
|
3578
3611
|
case 'nonaspectratio':
|
|
3612
|
+
if (getComponent(aspectRatioWidth, 'numerictextbox').value ||
|
|
3613
|
+
getComponent(aspectRatioHeight, 'numerictextbox').value) {
|
|
3614
|
+
parent.aspectWidth = getComponent(aspectRatioWidth, 'numerictextbox').value ?
|
|
3615
|
+
getComponent(aspectRatioWidth, 'numerictextbox').value :
|
|
3616
|
+
parseFloat(getComponent(aspectRatioWidth, 'numerictextbox').placeholder);
|
|
3617
|
+
parent.aspectHeight = getComponent(aspectRatioHeight, 'numerictextbox').value ?
|
|
3618
|
+
getComponent(aspectRatioHeight, 'numerictextbox').value :
|
|
3619
|
+
parseFloat(getComponent(aspectRatioHeight, 'numerictextbox').placeholder);
|
|
3620
|
+
parent.notify('transform', { prop: 'resize', value: { width: parent.aspectWidth, height: parent.aspectHeight, isAspectRatio: false } });
|
|
3621
|
+
}
|
|
3579
3622
|
parent.resizeSrc = { startX: parent.img.srcLeft, startY: parent.img.srcTop, width: parent.img.srcWidth,
|
|
3580
3623
|
height: parent.img.srcHeight };
|
|
3581
3624
|
this.refreshToolbar('resize');
|
|
@@ -224,9 +224,10 @@
|
|
|
224
224
|
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn .e-icons.e-btn-icon {
|
|
225
225
|
font-size: 18px;
|
|
226
226
|
}
|
|
227
|
-
.e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-fill.e-template .e-dropdown-btn .e-icons.e-caret, .e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-stroke.e-template .e-dropdown-btn .e-icons.e-caret, .e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-pen-stroke-color.e-template .e-dropdown-btn .e-icons.e-caret, .e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-text-font-color.e-template .e-dropdown-btn .e-icons.e-caret, .e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-save.e-template .e-dropdown-btn .e-icons.e-caret,
|
|
227
|
+
.e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-fill.e-template .e-dropdown-btn .e-icons.e-caret, .e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-stroke.e-template .e-dropdown-btn .e-icons.e-caret, .e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-frame-stroke.e-template .e-dropdown-btn .e-icons.e-caret, .e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-pen-stroke-color.e-template .e-dropdown-btn .e-icons.e-caret, .e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-text-font-color.e-template .e-dropdown-btn .e-icons.e-caret, .e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-save.e-template .e-dropdown-btn .e-icons.e-caret,
|
|
228
228
|
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-fill.e-template .e-dropdown-btn .e-icons.e-caret,
|
|
229
229
|
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-stroke.e-template .e-dropdown-btn .e-icons.e-caret,
|
|
230
|
+
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-frame-stroke.e-template .e-dropdown-btn .e-icons.e-caret,
|
|
230
231
|
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-pen-stroke-color.e-template .e-dropdown-btn .e-icons.e-caret,
|
|
231
232
|
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-text-font-color.e-template .e-dropdown-btn .e-icons.e-caret,
|
|
232
233
|
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-save.e-template .e-dropdown-btn .e-icons.e-caret {
|
|
@@ -236,6 +237,11 @@
|
|
|
236
237
|
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-text-font-color.e-template .e-dropdown-btn .e-icons.e-caret {
|
|
237
238
|
margin-top: -4px;
|
|
238
239
|
}
|
|
240
|
+
.e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-btn-icon.e-dropdownbtn-preview,
|
|
241
|
+
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-btn-icon.e-dropdownbtn-preview {
|
|
242
|
+
margin-top: -1px !important; /* stylelint-disable-line declaration-no-important */
|
|
243
|
+
margin-left: 0;
|
|
244
|
+
}
|
|
239
245
|
.e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-select, .e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-annotation, .e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-transform,
|
|
240
246
|
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-select,
|
|
241
247
|
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-annotation,
|
|
@@ -330,7 +336,7 @@
|
|
|
330
336
|
.e-image-editor .e-toolbar .e-toolbar-items .e-image-upload .e-image-upload .e-upload {
|
|
331
337
|
border: none;
|
|
332
338
|
}
|
|
333
|
-
.e-image-editor .e-toolbar .e-toolbar-items .e-fill.e-template .e-dropdown-btn .e-icons.e-caret, .e-image-editor .e-toolbar .e-toolbar-items .e-stroke.e-template .e-dropdown-btn .e-icons.e-caret, .e-image-editor .e-toolbar .e-toolbar-items .e-pen-stroke-color.e-template .e-dropdown-btn .e-icons.e-caret, .e-image-editor .e-toolbar .e-toolbar-items .e-text-font-color.e-template .e-dropdown-btn .e-icons.e-caret, .e-image-editor .e-toolbar .e-toolbar-items .e-save.e-template .e-dropdown-btn .e-icons.e-caret {
|
|
339
|
+
.e-image-editor .e-toolbar .e-toolbar-items .e-fill.e-template .e-dropdown-btn .e-icons.e-caret, .e-image-editor .e-toolbar .e-toolbar-items .e-stroke.e-template .e-dropdown-btn .e-icons.e-caret, .e-image-editor .e-toolbar .e-toolbar-items .e-frame-stroke.e-template .e-dropdown-btn .e-icons.e-caret, .e-image-editor .e-toolbar .e-toolbar-items .e-pen-stroke-color.e-template .e-dropdown-btn .e-icons.e-caret, .e-image-editor .e-toolbar .e-toolbar-items .e-text-font-color.e-template .e-dropdown-btn .e-icons.e-caret, .e-image-editor .e-toolbar .e-toolbar-items .e-save.e-template .e-dropdown-btn .e-icons.e-caret {
|
|
334
340
|
font-size: 16px;
|
|
335
341
|
}
|
|
336
342
|
.e-image-editor .e-toolbar .e-toolbar-items .e-text-font-color.e-template .e-dropdown-btn .e-icons.e-caret {
|
|
@@ -339,7 +345,8 @@
|
|
|
339
345
|
.e-image-editor .e-toolbar .e-toolbar-items .e-btn-icon.e-dropdownbtn-preview {
|
|
340
346
|
height: 18px;
|
|
341
347
|
width: 18px;
|
|
342
|
-
margin-top: -
|
|
348
|
+
margin-top: -2px !important; /* stylelint-disable-line declaration-no-important */
|
|
349
|
+
margin-left: 0;
|
|
343
350
|
}
|
|
344
351
|
.e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-select, .e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-annotation, .e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-transform {
|
|
345
352
|
font-size: 16px;
|
|
@@ -384,6 +391,10 @@
|
|
|
384
391
|
margin: 4px;
|
|
385
392
|
text-align: center;
|
|
386
393
|
}
|
|
394
|
+
.e-image-editor .e-contextual-toolbar-wrapper .e-frame-wrapper .e-dropdown-btn {
|
|
395
|
+
margin: 0 auto;
|
|
396
|
+
width: max-content;
|
|
397
|
+
}
|
|
387
398
|
.e-image-editor .e-contextual-toolbar-wrapper.e-frame-wrapper .e-toolbar {
|
|
388
399
|
height: inherit !important; /* stylelint-disable-line declaration-no-important */
|
|
389
400
|
}
|
package/styles/bootstrap.css
CHANGED
|
@@ -224,9 +224,10 @@
|
|
|
224
224
|
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn .e-icons.e-btn-icon {
|
|
225
225
|
font-size: 18px;
|
|
226
226
|
}
|
|
227
|
-
.e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-fill.e-template .e-dropdown-btn .e-icons.e-caret, .e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-stroke.e-template .e-dropdown-btn .e-icons.e-caret, .e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-pen-stroke-color.e-template .e-dropdown-btn .e-icons.e-caret, .e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-text-font-color.e-template .e-dropdown-btn .e-icons.e-caret, .e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-save.e-template .e-dropdown-btn .e-icons.e-caret,
|
|
227
|
+
.e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-fill.e-template .e-dropdown-btn .e-icons.e-caret, .e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-stroke.e-template .e-dropdown-btn .e-icons.e-caret, .e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-frame-stroke.e-template .e-dropdown-btn .e-icons.e-caret, .e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-pen-stroke-color.e-template .e-dropdown-btn .e-icons.e-caret, .e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-text-font-color.e-template .e-dropdown-btn .e-icons.e-caret, .e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-save.e-template .e-dropdown-btn .e-icons.e-caret,
|
|
228
228
|
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-fill.e-template .e-dropdown-btn .e-icons.e-caret,
|
|
229
229
|
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-stroke.e-template .e-dropdown-btn .e-icons.e-caret,
|
|
230
|
+
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-frame-stroke.e-template .e-dropdown-btn .e-icons.e-caret,
|
|
230
231
|
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-pen-stroke-color.e-template .e-dropdown-btn .e-icons.e-caret,
|
|
231
232
|
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-text-font-color.e-template .e-dropdown-btn .e-icons.e-caret,
|
|
232
233
|
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-save.e-template .e-dropdown-btn .e-icons.e-caret {
|
|
@@ -236,6 +237,11 @@
|
|
|
236
237
|
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-text-font-color.e-template .e-dropdown-btn .e-icons.e-caret {
|
|
237
238
|
margin-top: -4px;
|
|
238
239
|
}
|
|
240
|
+
.e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-btn-icon.e-dropdownbtn-preview,
|
|
241
|
+
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-btn-icon.e-dropdownbtn-preview {
|
|
242
|
+
margin-top: -1px !important; /* stylelint-disable-line declaration-no-important */
|
|
243
|
+
margin-left: 0;
|
|
244
|
+
}
|
|
239
245
|
.e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-select, .e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-annotation, .e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-transform,
|
|
240
246
|
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-select,
|
|
241
247
|
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-annotation,
|
|
@@ -330,7 +336,7 @@
|
|
|
330
336
|
.e-image-editor .e-toolbar .e-toolbar-items .e-image-upload .e-image-upload .e-upload {
|
|
331
337
|
border: none;
|
|
332
338
|
}
|
|
333
|
-
.e-image-editor .e-toolbar .e-toolbar-items .e-fill.e-template .e-dropdown-btn .e-icons.e-caret, .e-image-editor .e-toolbar .e-toolbar-items .e-stroke.e-template .e-dropdown-btn .e-icons.e-caret, .e-image-editor .e-toolbar .e-toolbar-items .e-pen-stroke-color.e-template .e-dropdown-btn .e-icons.e-caret, .e-image-editor .e-toolbar .e-toolbar-items .e-text-font-color.e-template .e-dropdown-btn .e-icons.e-caret, .e-image-editor .e-toolbar .e-toolbar-items .e-save.e-template .e-dropdown-btn .e-icons.e-caret {
|
|
339
|
+
.e-image-editor .e-toolbar .e-toolbar-items .e-fill.e-template .e-dropdown-btn .e-icons.e-caret, .e-image-editor .e-toolbar .e-toolbar-items .e-stroke.e-template .e-dropdown-btn .e-icons.e-caret, .e-image-editor .e-toolbar .e-toolbar-items .e-frame-stroke.e-template .e-dropdown-btn .e-icons.e-caret, .e-image-editor .e-toolbar .e-toolbar-items .e-pen-stroke-color.e-template .e-dropdown-btn .e-icons.e-caret, .e-image-editor .e-toolbar .e-toolbar-items .e-text-font-color.e-template .e-dropdown-btn .e-icons.e-caret, .e-image-editor .e-toolbar .e-toolbar-items .e-save.e-template .e-dropdown-btn .e-icons.e-caret {
|
|
334
340
|
font-size: 16px;
|
|
335
341
|
}
|
|
336
342
|
.e-image-editor .e-toolbar .e-toolbar-items .e-text-font-color.e-template .e-dropdown-btn .e-icons.e-caret {
|
|
@@ -339,7 +345,8 @@
|
|
|
339
345
|
.e-image-editor .e-toolbar .e-toolbar-items .e-btn-icon.e-dropdownbtn-preview {
|
|
340
346
|
height: 18px;
|
|
341
347
|
width: 18px;
|
|
342
|
-
margin-top: -
|
|
348
|
+
margin-top: -2px !important; /* stylelint-disable-line declaration-no-important */
|
|
349
|
+
margin-left: 0;
|
|
343
350
|
}
|
|
344
351
|
.e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-select, .e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-annotation, .e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-transform {
|
|
345
352
|
font-size: 16px;
|
|
@@ -384,6 +391,10 @@
|
|
|
384
391
|
margin: 4px;
|
|
385
392
|
text-align: center;
|
|
386
393
|
}
|
|
394
|
+
.e-image-editor .e-contextual-toolbar-wrapper .e-frame-wrapper .e-dropdown-btn {
|
|
395
|
+
margin: 0 auto;
|
|
396
|
+
width: max-content;
|
|
397
|
+
}
|
|
387
398
|
.e-image-editor .e-contextual-toolbar-wrapper.e-frame-wrapper .e-toolbar {
|
|
388
399
|
height: inherit !important; /* stylelint-disable-line declaration-no-important */
|
|
389
400
|
}
|
package/styles/bootstrap4.css
CHANGED
|
@@ -223,9 +223,10 @@
|
|
|
223
223
|
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn .e-icons.e-btn-icon {
|
|
224
224
|
font-size: 18px;
|
|
225
225
|
}
|
|
226
|
-
.e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-fill.e-template .e-dropdown-btn .e-icons.e-caret, .e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-stroke.e-template .e-dropdown-btn .e-icons.e-caret, .e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-pen-stroke-color.e-template .e-dropdown-btn .e-icons.e-caret, .e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-text-font-color.e-template .e-dropdown-btn .e-icons.e-caret, .e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-save.e-template .e-dropdown-btn .e-icons.e-caret,
|
|
226
|
+
.e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-fill.e-template .e-dropdown-btn .e-icons.e-caret, .e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-stroke.e-template .e-dropdown-btn .e-icons.e-caret, .e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-frame-stroke.e-template .e-dropdown-btn .e-icons.e-caret, .e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-pen-stroke-color.e-template .e-dropdown-btn .e-icons.e-caret, .e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-text-font-color.e-template .e-dropdown-btn .e-icons.e-caret, .e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-save.e-template .e-dropdown-btn .e-icons.e-caret,
|
|
227
227
|
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-fill.e-template .e-dropdown-btn .e-icons.e-caret,
|
|
228
228
|
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-stroke.e-template .e-dropdown-btn .e-icons.e-caret,
|
|
229
|
+
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-frame-stroke.e-template .e-dropdown-btn .e-icons.e-caret,
|
|
229
230
|
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-pen-stroke-color.e-template .e-dropdown-btn .e-icons.e-caret,
|
|
230
231
|
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-text-font-color.e-template .e-dropdown-btn .e-icons.e-caret,
|
|
231
232
|
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-save.e-template .e-dropdown-btn .e-icons.e-caret {
|
|
@@ -235,6 +236,11 @@
|
|
|
235
236
|
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-text-font-color.e-template .e-dropdown-btn .e-icons.e-caret {
|
|
236
237
|
margin-top: -4px;
|
|
237
238
|
}
|
|
239
|
+
.e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-btn-icon.e-dropdownbtn-preview,
|
|
240
|
+
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-btn-icon.e-dropdownbtn-preview {
|
|
241
|
+
margin-top: -1px !important; /* stylelint-disable-line declaration-no-important */
|
|
242
|
+
margin-left: 0;
|
|
243
|
+
}
|
|
238
244
|
.e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-select, .e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-annotation, .e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-transform,
|
|
239
245
|
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-select,
|
|
240
246
|
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-annotation,
|
|
@@ -328,7 +334,7 @@
|
|
|
328
334
|
.e-image-editor .e-toolbar .e-toolbar-items .e-image-upload .e-image-upload .e-upload {
|
|
329
335
|
border: none;
|
|
330
336
|
}
|
|
331
|
-
.e-image-editor .e-toolbar .e-toolbar-items .e-fill.e-template .e-dropdown-btn .e-icons.e-caret, .e-image-editor .e-toolbar .e-toolbar-items .e-stroke.e-template .e-dropdown-btn .e-icons.e-caret, .e-image-editor .e-toolbar .e-toolbar-items .e-pen-stroke-color.e-template .e-dropdown-btn .e-icons.e-caret, .e-image-editor .e-toolbar .e-toolbar-items .e-text-font-color.e-template .e-dropdown-btn .e-icons.e-caret, .e-image-editor .e-toolbar .e-toolbar-items .e-save.e-template .e-dropdown-btn .e-icons.e-caret {
|
|
337
|
+
.e-image-editor .e-toolbar .e-toolbar-items .e-fill.e-template .e-dropdown-btn .e-icons.e-caret, .e-image-editor .e-toolbar .e-toolbar-items .e-stroke.e-template .e-dropdown-btn .e-icons.e-caret, .e-image-editor .e-toolbar .e-toolbar-items .e-frame-stroke.e-template .e-dropdown-btn .e-icons.e-caret, .e-image-editor .e-toolbar .e-toolbar-items .e-pen-stroke-color.e-template .e-dropdown-btn .e-icons.e-caret, .e-image-editor .e-toolbar .e-toolbar-items .e-text-font-color.e-template .e-dropdown-btn .e-icons.e-caret, .e-image-editor .e-toolbar .e-toolbar-items .e-save.e-template .e-dropdown-btn .e-icons.e-caret {
|
|
332
338
|
font-size: 16px;
|
|
333
339
|
}
|
|
334
340
|
.e-image-editor .e-toolbar .e-toolbar-items .e-text-font-color.e-template .e-dropdown-btn .e-icons.e-caret {
|
|
@@ -337,7 +343,8 @@
|
|
|
337
343
|
.e-image-editor .e-toolbar .e-toolbar-items .e-btn-icon.e-dropdownbtn-preview {
|
|
338
344
|
height: 18px;
|
|
339
345
|
width: 18px;
|
|
340
|
-
margin-top: -
|
|
346
|
+
margin-top: -2px !important; /* stylelint-disable-line declaration-no-important */
|
|
347
|
+
margin-left: 0;
|
|
341
348
|
}
|
|
342
349
|
.e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-select, .e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-annotation, .e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-transform {
|
|
343
350
|
font-size: 16px;
|
|
@@ -382,6 +389,10 @@
|
|
|
382
389
|
margin: 4px;
|
|
383
390
|
text-align: center;
|
|
384
391
|
}
|
|
392
|
+
.e-image-editor .e-contextual-toolbar-wrapper .e-frame-wrapper .e-dropdown-btn {
|
|
393
|
+
margin: 0 auto;
|
|
394
|
+
width: max-content;
|
|
395
|
+
}
|
|
385
396
|
.e-image-editor .e-contextual-toolbar-wrapper.e-frame-wrapper .e-toolbar {
|
|
386
397
|
height: inherit !important; /* stylelint-disable-line declaration-no-important */
|
|
387
398
|
}
|
|
@@ -236,9 +236,10 @@
|
|
|
236
236
|
padding-top: 4px;
|
|
237
237
|
padding-bottom: 4px;
|
|
238
238
|
}
|
|
239
|
-
.e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-fill.e-template .e-dropdown-btn .e-icons.e-caret, .e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-stroke.e-template .e-dropdown-btn .e-icons.e-caret, .e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-pen-stroke-color.e-template .e-dropdown-btn .e-icons.e-caret, .e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-text-font-color.e-template .e-dropdown-btn .e-icons.e-caret, .e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-save.e-template .e-dropdown-btn .e-icons.e-caret,
|
|
239
|
+
.e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-fill.e-template .e-dropdown-btn .e-icons.e-caret, .e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-stroke.e-template .e-dropdown-btn .e-icons.e-caret, .e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-frame-stroke.e-template .e-dropdown-btn .e-icons.e-caret, .e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-pen-stroke-color.e-template .e-dropdown-btn .e-icons.e-caret, .e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-text-font-color.e-template .e-dropdown-btn .e-icons.e-caret, .e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-save.e-template .e-dropdown-btn .e-icons.e-caret,
|
|
240
240
|
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-fill.e-template .e-dropdown-btn .e-icons.e-caret,
|
|
241
241
|
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-stroke.e-template .e-dropdown-btn .e-icons.e-caret,
|
|
242
|
+
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-frame-stroke.e-template .e-dropdown-btn .e-icons.e-caret,
|
|
242
243
|
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-pen-stroke-color.e-template .e-dropdown-btn .e-icons.e-caret,
|
|
243
244
|
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-text-font-color.e-template .e-dropdown-btn .e-icons.e-caret,
|
|
244
245
|
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-save.e-template .e-dropdown-btn .e-icons.e-caret {
|
|
@@ -248,6 +249,11 @@
|
|
|
248
249
|
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-text-font-color.e-template .e-dropdown-btn .e-icons.e-caret {
|
|
249
250
|
margin-top: -4px;
|
|
250
251
|
}
|
|
252
|
+
.e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-btn-icon.e-dropdownbtn-preview,
|
|
253
|
+
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-btn-icon.e-dropdownbtn-preview {
|
|
254
|
+
margin-top: -4px !important; /* stylelint-disable-line declaration-no-important */
|
|
255
|
+
margin-left: -4px;
|
|
256
|
+
}
|
|
251
257
|
.e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-select, .e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-annotation, .e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-transform,
|
|
252
258
|
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-select,
|
|
253
259
|
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-annotation,
|
|
@@ -346,7 +352,7 @@
|
|
|
346
352
|
.e-image-editor .e-toolbar .e-toolbar-items .e-image-upload .e-icons.e-upload-icon {
|
|
347
353
|
padding-top: 6px;
|
|
348
354
|
}
|
|
349
|
-
.e-image-editor .e-toolbar .e-toolbar-items .e-fill.e-template .e-dropdown-btn .e-icons.e-caret, .e-image-editor .e-toolbar .e-toolbar-items .e-stroke.e-template .e-dropdown-btn .e-icons.e-caret, .e-image-editor .e-toolbar .e-toolbar-items .e-pen-stroke-color.e-template .e-dropdown-btn .e-icons.e-caret, .e-image-editor .e-toolbar .e-toolbar-items .e-text-font-color.e-template .e-dropdown-btn .e-icons.e-caret, .e-image-editor .e-toolbar .e-toolbar-items .e-save.e-template .e-dropdown-btn .e-icons.e-caret {
|
|
355
|
+
.e-image-editor .e-toolbar .e-toolbar-items .e-fill.e-template .e-dropdown-btn .e-icons.e-caret, .e-image-editor .e-toolbar .e-toolbar-items .e-stroke.e-template .e-dropdown-btn .e-icons.e-caret, .e-image-editor .e-toolbar .e-toolbar-items .e-frame-stroke.e-template .e-dropdown-btn .e-icons.e-caret, .e-image-editor .e-toolbar .e-toolbar-items .e-pen-stroke-color.e-template .e-dropdown-btn .e-icons.e-caret, .e-image-editor .e-toolbar .e-toolbar-items .e-text-font-color.e-template .e-dropdown-btn .e-icons.e-caret, .e-image-editor .e-toolbar .e-toolbar-items .e-save.e-template .e-dropdown-btn .e-icons.e-caret {
|
|
350
356
|
font-size: 18px;
|
|
351
357
|
}
|
|
352
358
|
.e-image-editor .e-toolbar .e-toolbar-items .e-text-font-color.e-template .e-dropdown-btn .e-icons.e-caret {
|
|
@@ -355,7 +361,8 @@
|
|
|
355
361
|
.e-image-editor .e-toolbar .e-toolbar-items .e-btn-icon.e-dropdownbtn-preview {
|
|
356
362
|
height: 18px;
|
|
357
363
|
width: 18px;
|
|
358
|
-
margin-top: -4px;
|
|
364
|
+
margin-top: -4px !important; /* stylelint-disable-line declaration-no-important */
|
|
365
|
+
margin-left: -4px;
|
|
359
366
|
}
|
|
360
367
|
.e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-select, .e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-annotation, .e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-transform {
|
|
361
368
|
font-size: 18px;
|
|
@@ -400,6 +407,10 @@
|
|
|
400
407
|
margin: 4px;
|
|
401
408
|
text-align: center;
|
|
402
409
|
}
|
|
410
|
+
.e-image-editor .e-contextual-toolbar-wrapper .e-frame-wrapper .e-dropdown-btn {
|
|
411
|
+
margin: 0 auto;
|
|
412
|
+
width: max-content;
|
|
413
|
+
}
|
|
403
414
|
.e-image-editor .e-contextual-toolbar-wrapper.e-frame-wrapper .e-toolbar {
|
|
404
415
|
height: inherit !important; /* stylelint-disable-line declaration-no-important */
|
|
405
416
|
}
|
package/styles/bootstrap5.css
CHANGED
|
@@ -236,9 +236,10 @@
|
|
|
236
236
|
padding-top: 4px;
|
|
237
237
|
padding-bottom: 4px;
|
|
238
238
|
}
|
|
239
|
-
.e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-fill.e-template .e-dropdown-btn .e-icons.e-caret, .e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-stroke.e-template .e-dropdown-btn .e-icons.e-caret, .e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-pen-stroke-color.e-template .e-dropdown-btn .e-icons.e-caret, .e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-text-font-color.e-template .e-dropdown-btn .e-icons.e-caret, .e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-save.e-template .e-dropdown-btn .e-icons.e-caret,
|
|
239
|
+
.e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-fill.e-template .e-dropdown-btn .e-icons.e-caret, .e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-stroke.e-template .e-dropdown-btn .e-icons.e-caret, .e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-frame-stroke.e-template .e-dropdown-btn .e-icons.e-caret, .e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-pen-stroke-color.e-template .e-dropdown-btn .e-icons.e-caret, .e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-text-font-color.e-template .e-dropdown-btn .e-icons.e-caret, .e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-save.e-template .e-dropdown-btn .e-icons.e-caret,
|
|
240
240
|
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-fill.e-template .e-dropdown-btn .e-icons.e-caret,
|
|
241
241
|
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-stroke.e-template .e-dropdown-btn .e-icons.e-caret,
|
|
242
|
+
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-frame-stroke.e-template .e-dropdown-btn .e-icons.e-caret,
|
|
242
243
|
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-pen-stroke-color.e-template .e-dropdown-btn .e-icons.e-caret,
|
|
243
244
|
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-text-font-color.e-template .e-dropdown-btn .e-icons.e-caret,
|
|
244
245
|
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-save.e-template .e-dropdown-btn .e-icons.e-caret {
|
|
@@ -248,6 +249,11 @@
|
|
|
248
249
|
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-text-font-color.e-template .e-dropdown-btn .e-icons.e-caret {
|
|
249
250
|
margin-top: -4px;
|
|
250
251
|
}
|
|
252
|
+
.e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-btn-icon.e-dropdownbtn-preview,
|
|
253
|
+
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-btn-icon.e-dropdownbtn-preview {
|
|
254
|
+
margin-top: -4px !important; /* stylelint-disable-line declaration-no-important */
|
|
255
|
+
margin-left: -4px;
|
|
256
|
+
}
|
|
251
257
|
.e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-select, .e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-annotation, .e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-transform,
|
|
252
258
|
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-select,
|
|
253
259
|
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-annotation,
|
|
@@ -346,7 +352,7 @@
|
|
|
346
352
|
.e-image-editor .e-toolbar .e-toolbar-items .e-image-upload .e-icons.e-upload-icon {
|
|
347
353
|
padding-top: 6px;
|
|
348
354
|
}
|
|
349
|
-
.e-image-editor .e-toolbar .e-toolbar-items .e-fill.e-template .e-dropdown-btn .e-icons.e-caret, .e-image-editor .e-toolbar .e-toolbar-items .e-stroke.e-template .e-dropdown-btn .e-icons.e-caret, .e-image-editor .e-toolbar .e-toolbar-items .e-pen-stroke-color.e-template .e-dropdown-btn .e-icons.e-caret, .e-image-editor .e-toolbar .e-toolbar-items .e-text-font-color.e-template .e-dropdown-btn .e-icons.e-caret, .e-image-editor .e-toolbar .e-toolbar-items .e-save.e-template .e-dropdown-btn .e-icons.e-caret {
|
|
355
|
+
.e-image-editor .e-toolbar .e-toolbar-items .e-fill.e-template .e-dropdown-btn .e-icons.e-caret, .e-image-editor .e-toolbar .e-toolbar-items .e-stroke.e-template .e-dropdown-btn .e-icons.e-caret, .e-image-editor .e-toolbar .e-toolbar-items .e-frame-stroke.e-template .e-dropdown-btn .e-icons.e-caret, .e-image-editor .e-toolbar .e-toolbar-items .e-pen-stroke-color.e-template .e-dropdown-btn .e-icons.e-caret, .e-image-editor .e-toolbar .e-toolbar-items .e-text-font-color.e-template .e-dropdown-btn .e-icons.e-caret, .e-image-editor .e-toolbar .e-toolbar-items .e-save.e-template .e-dropdown-btn .e-icons.e-caret {
|
|
350
356
|
font-size: 18px;
|
|
351
357
|
}
|
|
352
358
|
.e-image-editor .e-toolbar .e-toolbar-items .e-text-font-color.e-template .e-dropdown-btn .e-icons.e-caret {
|
|
@@ -355,7 +361,8 @@
|
|
|
355
361
|
.e-image-editor .e-toolbar .e-toolbar-items .e-btn-icon.e-dropdownbtn-preview {
|
|
356
362
|
height: 18px;
|
|
357
363
|
width: 18px;
|
|
358
|
-
margin-top: -4px;
|
|
364
|
+
margin-top: -4px !important; /* stylelint-disable-line declaration-no-important */
|
|
365
|
+
margin-left: -4px;
|
|
359
366
|
}
|
|
360
367
|
.e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-select, .e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-annotation, .e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-transform {
|
|
361
368
|
font-size: 18px;
|
|
@@ -400,6 +407,10 @@
|
|
|
400
407
|
margin: 4px;
|
|
401
408
|
text-align: center;
|
|
402
409
|
}
|
|
410
|
+
.e-image-editor .e-contextual-toolbar-wrapper .e-frame-wrapper .e-dropdown-btn {
|
|
411
|
+
margin: 0 auto;
|
|
412
|
+
width: max-content;
|
|
413
|
+
}
|
|
403
414
|
.e-image-editor .e-contextual-toolbar-wrapper.e-frame-wrapper .e-toolbar {
|
|
404
415
|
height: inherit !important; /* stylelint-disable-line declaration-no-important */
|
|
405
416
|
}
|
package/styles/fabric-dark.css
CHANGED
|
@@ -224,9 +224,10 @@
|
|
|
224
224
|
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn .e-icons.e-btn-icon {
|
|
225
225
|
font-size: 18px;
|
|
226
226
|
}
|
|
227
|
-
.e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-fill.e-template .e-dropdown-btn .e-icons.e-caret, .e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-stroke.e-template .e-dropdown-btn .e-icons.e-caret, .e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-pen-stroke-color.e-template .e-dropdown-btn .e-icons.e-caret, .e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-text-font-color.e-template .e-dropdown-btn .e-icons.e-caret, .e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-save.e-template .e-dropdown-btn .e-icons.e-caret,
|
|
227
|
+
.e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-fill.e-template .e-dropdown-btn .e-icons.e-caret, .e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-stroke.e-template .e-dropdown-btn .e-icons.e-caret, .e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-frame-stroke.e-template .e-dropdown-btn .e-icons.e-caret, .e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-pen-stroke-color.e-template .e-dropdown-btn .e-icons.e-caret, .e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-text-font-color.e-template .e-dropdown-btn .e-icons.e-caret, .e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-save.e-template .e-dropdown-btn .e-icons.e-caret,
|
|
228
228
|
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-fill.e-template .e-dropdown-btn .e-icons.e-caret,
|
|
229
229
|
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-stroke.e-template .e-dropdown-btn .e-icons.e-caret,
|
|
230
|
+
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-frame-stroke.e-template .e-dropdown-btn .e-icons.e-caret,
|
|
230
231
|
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-pen-stroke-color.e-template .e-dropdown-btn .e-icons.e-caret,
|
|
231
232
|
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-text-font-color.e-template .e-dropdown-btn .e-icons.e-caret,
|
|
232
233
|
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-save.e-template .e-dropdown-btn .e-icons.e-caret {
|
|
@@ -236,6 +237,11 @@
|
|
|
236
237
|
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-text-font-color.e-template .e-dropdown-btn .e-icons.e-caret {
|
|
237
238
|
margin-top: -4px;
|
|
238
239
|
}
|
|
240
|
+
.e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-btn-icon.e-dropdownbtn-preview,
|
|
241
|
+
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-btn-icon.e-dropdownbtn-preview {
|
|
242
|
+
margin-top: -4px !important; /* stylelint-disable-line declaration-no-important */
|
|
243
|
+
margin-left: -1px;
|
|
244
|
+
}
|
|
239
245
|
.e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-select, .e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-annotation, .e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-transform,
|
|
240
246
|
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-select,
|
|
241
247
|
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-annotation,
|
|
@@ -330,7 +336,7 @@
|
|
|
330
336
|
.e-image-editor .e-toolbar .e-toolbar-items .e-image-upload .e-image-upload .e-upload {
|
|
331
337
|
border: none;
|
|
332
338
|
}
|
|
333
|
-
.e-image-editor .e-toolbar .e-toolbar-items .e-fill.e-template .e-dropdown-btn .e-icons.e-caret, .e-image-editor .e-toolbar .e-toolbar-items .e-stroke.e-template .e-dropdown-btn .e-icons.e-caret, .e-image-editor .e-toolbar .e-toolbar-items .e-pen-stroke-color.e-template .e-dropdown-btn .e-icons.e-caret, .e-image-editor .e-toolbar .e-toolbar-items .e-text-font-color.e-template .e-dropdown-btn .e-icons.e-caret, .e-image-editor .e-toolbar .e-toolbar-items .e-save.e-template .e-dropdown-btn .e-icons.e-caret {
|
|
339
|
+
.e-image-editor .e-toolbar .e-toolbar-items .e-fill.e-template .e-dropdown-btn .e-icons.e-caret, .e-image-editor .e-toolbar .e-toolbar-items .e-stroke.e-template .e-dropdown-btn .e-icons.e-caret, .e-image-editor .e-toolbar .e-toolbar-items .e-frame-stroke.e-template .e-dropdown-btn .e-icons.e-caret, .e-image-editor .e-toolbar .e-toolbar-items .e-pen-stroke-color.e-template .e-dropdown-btn .e-icons.e-caret, .e-image-editor .e-toolbar .e-toolbar-items .e-text-font-color.e-template .e-dropdown-btn .e-icons.e-caret, .e-image-editor .e-toolbar .e-toolbar-items .e-save.e-template .e-dropdown-btn .e-icons.e-caret {
|
|
334
340
|
font-size: 16px;
|
|
335
341
|
}
|
|
336
342
|
.e-image-editor .e-toolbar .e-toolbar-items .e-text-font-color.e-template .e-dropdown-btn .e-icons.e-caret {
|
|
@@ -339,7 +345,8 @@
|
|
|
339
345
|
.e-image-editor .e-toolbar .e-toolbar-items .e-btn-icon.e-dropdownbtn-preview {
|
|
340
346
|
height: 18px;
|
|
341
347
|
width: 18px;
|
|
342
|
-
margin-top: -4px;
|
|
348
|
+
margin-top: -4px !important; /* stylelint-disable-line declaration-no-important */
|
|
349
|
+
margin-left: -1px;
|
|
343
350
|
}
|
|
344
351
|
.e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-select, .e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-annotation, .e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-transform {
|
|
345
352
|
font-size: 16px;
|
|
@@ -384,6 +391,10 @@
|
|
|
384
391
|
margin: 4px;
|
|
385
392
|
text-align: center;
|
|
386
393
|
}
|
|
394
|
+
.e-image-editor .e-contextual-toolbar-wrapper .e-frame-wrapper .e-dropdown-btn {
|
|
395
|
+
margin: 0 auto;
|
|
396
|
+
width: max-content;
|
|
397
|
+
}
|
|
387
398
|
.e-image-editor .e-contextual-toolbar-wrapper.e-frame-wrapper .e-toolbar {
|
|
388
399
|
height: inherit !important; /* stylelint-disable-line declaration-no-important */
|
|
389
400
|
}
|
package/styles/fabric.css
CHANGED
|
@@ -224,9 +224,10 @@
|
|
|
224
224
|
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn .e-icons.e-btn-icon {
|
|
225
225
|
font-size: 18px;
|
|
226
226
|
}
|
|
227
|
-
.e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-fill.e-template .e-dropdown-btn .e-icons.e-caret, .e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-stroke.e-template .e-dropdown-btn .e-icons.e-caret, .e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-pen-stroke-color.e-template .e-dropdown-btn .e-icons.e-caret, .e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-text-font-color.e-template .e-dropdown-btn .e-icons.e-caret, .e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-save.e-template .e-dropdown-btn .e-icons.e-caret,
|
|
227
|
+
.e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-fill.e-template .e-dropdown-btn .e-icons.e-caret, .e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-stroke.e-template .e-dropdown-btn .e-icons.e-caret, .e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-frame-stroke.e-template .e-dropdown-btn .e-icons.e-caret, .e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-pen-stroke-color.e-template .e-dropdown-btn .e-icons.e-caret, .e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-text-font-color.e-template .e-dropdown-btn .e-icons.e-caret, .e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-save.e-template .e-dropdown-btn .e-icons.e-caret,
|
|
228
228
|
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-fill.e-template .e-dropdown-btn .e-icons.e-caret,
|
|
229
229
|
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-stroke.e-template .e-dropdown-btn .e-icons.e-caret,
|
|
230
|
+
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-frame-stroke.e-template .e-dropdown-btn .e-icons.e-caret,
|
|
230
231
|
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-pen-stroke-color.e-template .e-dropdown-btn .e-icons.e-caret,
|
|
231
232
|
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-text-font-color.e-template .e-dropdown-btn .e-icons.e-caret,
|
|
232
233
|
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-save.e-template .e-dropdown-btn .e-icons.e-caret {
|
|
@@ -236,6 +237,11 @@
|
|
|
236
237
|
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-text-font-color.e-template .e-dropdown-btn .e-icons.e-caret {
|
|
237
238
|
margin-top: -4px;
|
|
238
239
|
}
|
|
240
|
+
.e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-btn-icon.e-dropdownbtn-preview,
|
|
241
|
+
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-btn-icon.e-dropdownbtn-preview {
|
|
242
|
+
margin-top: -4px !important; /* stylelint-disable-line declaration-no-important */
|
|
243
|
+
margin-left: -1px;
|
|
244
|
+
}
|
|
239
245
|
.e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-select, .e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-annotation, .e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-transform,
|
|
240
246
|
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-select,
|
|
241
247
|
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-annotation,
|
|
@@ -330,7 +336,7 @@
|
|
|
330
336
|
.e-image-editor .e-toolbar .e-toolbar-items .e-image-upload .e-image-upload .e-upload {
|
|
331
337
|
border: none;
|
|
332
338
|
}
|
|
333
|
-
.e-image-editor .e-toolbar .e-toolbar-items .e-fill.e-template .e-dropdown-btn .e-icons.e-caret, .e-image-editor .e-toolbar .e-toolbar-items .e-stroke.e-template .e-dropdown-btn .e-icons.e-caret, .e-image-editor .e-toolbar .e-toolbar-items .e-pen-stroke-color.e-template .e-dropdown-btn .e-icons.e-caret, .e-image-editor .e-toolbar .e-toolbar-items .e-text-font-color.e-template .e-dropdown-btn .e-icons.e-caret, .e-image-editor .e-toolbar .e-toolbar-items .e-save.e-template .e-dropdown-btn .e-icons.e-caret {
|
|
339
|
+
.e-image-editor .e-toolbar .e-toolbar-items .e-fill.e-template .e-dropdown-btn .e-icons.e-caret, .e-image-editor .e-toolbar .e-toolbar-items .e-stroke.e-template .e-dropdown-btn .e-icons.e-caret, .e-image-editor .e-toolbar .e-toolbar-items .e-frame-stroke.e-template .e-dropdown-btn .e-icons.e-caret, .e-image-editor .e-toolbar .e-toolbar-items .e-pen-stroke-color.e-template .e-dropdown-btn .e-icons.e-caret, .e-image-editor .e-toolbar .e-toolbar-items .e-text-font-color.e-template .e-dropdown-btn .e-icons.e-caret, .e-image-editor .e-toolbar .e-toolbar-items .e-save.e-template .e-dropdown-btn .e-icons.e-caret {
|
|
334
340
|
font-size: 16px;
|
|
335
341
|
}
|
|
336
342
|
.e-image-editor .e-toolbar .e-toolbar-items .e-text-font-color.e-template .e-dropdown-btn .e-icons.e-caret {
|
|
@@ -339,7 +345,8 @@
|
|
|
339
345
|
.e-image-editor .e-toolbar .e-toolbar-items .e-btn-icon.e-dropdownbtn-preview {
|
|
340
346
|
height: 18px;
|
|
341
347
|
width: 18px;
|
|
342
|
-
margin-top: -4px;
|
|
348
|
+
margin-top: -4px !important; /* stylelint-disable-line declaration-no-important */
|
|
349
|
+
margin-left: -1px;
|
|
343
350
|
}
|
|
344
351
|
.e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-select, .e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-annotation, .e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-transform {
|
|
345
352
|
font-size: 16px;
|
|
@@ -384,6 +391,10 @@
|
|
|
384
391
|
margin: 4px;
|
|
385
392
|
text-align: center;
|
|
386
393
|
}
|
|
394
|
+
.e-image-editor .e-contextual-toolbar-wrapper .e-frame-wrapper .e-dropdown-btn {
|
|
395
|
+
margin: 0 auto;
|
|
396
|
+
width: max-content;
|
|
397
|
+
}
|
|
387
398
|
.e-image-editor .e-contextual-toolbar-wrapper.e-frame-wrapper .e-toolbar {
|
|
388
399
|
height: inherit !important; /* stylelint-disable-line declaration-no-important */
|
|
389
400
|
}
|
package/styles/fluent-dark.css
CHANGED
|
@@ -232,9 +232,10 @@
|
|
|
232
232
|
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn .e-icons.e-btn-icon {
|
|
233
233
|
font-size: 20px;
|
|
234
234
|
}
|
|
235
|
-
.e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-fill.e-template .e-dropdown-btn .e-icons.e-caret, .e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-stroke.e-template .e-dropdown-btn .e-icons.e-caret, .e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-pen-stroke-color.e-template .e-dropdown-btn .e-icons.e-caret, .e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-text-font-color.e-template .e-dropdown-btn .e-icons.e-caret, .e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-save.e-template .e-dropdown-btn .e-icons.e-caret,
|
|
235
|
+
.e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-fill.e-template .e-dropdown-btn .e-icons.e-caret, .e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-stroke.e-template .e-dropdown-btn .e-icons.e-caret, .e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-frame-stroke.e-template .e-dropdown-btn .e-icons.e-caret, .e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-pen-stroke-color.e-template .e-dropdown-btn .e-icons.e-caret, .e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-text-font-color.e-template .e-dropdown-btn .e-icons.e-caret, .e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-save.e-template .e-dropdown-btn .e-icons.e-caret,
|
|
236
236
|
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-fill.e-template .e-dropdown-btn .e-icons.e-caret,
|
|
237
237
|
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-stroke.e-template .e-dropdown-btn .e-icons.e-caret,
|
|
238
|
+
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-frame-stroke.e-template .e-dropdown-btn .e-icons.e-caret,
|
|
238
239
|
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-pen-stroke-color.e-template .e-dropdown-btn .e-icons.e-caret,
|
|
239
240
|
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-text-font-color.e-template .e-dropdown-btn .e-icons.e-caret,
|
|
240
241
|
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-save.e-template .e-dropdown-btn .e-icons.e-caret {
|
|
@@ -244,6 +245,11 @@
|
|
|
244
245
|
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-text-font-color.e-template .e-dropdown-btn .e-icons.e-caret {
|
|
245
246
|
margin-top: -4px;
|
|
246
247
|
}
|
|
248
|
+
.e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-btn-icon.e-dropdownbtn-preview,
|
|
249
|
+
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-btn-icon.e-dropdownbtn-preview {
|
|
250
|
+
margin-top: -4px !important; /* stylelint-disable-line declaration-no-important */
|
|
251
|
+
margin-left: -4px;
|
|
252
|
+
}
|
|
247
253
|
.e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-select, .e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-annotation, .e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-transform,
|
|
248
254
|
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-select,
|
|
249
255
|
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-annotation,
|
|
@@ -337,7 +343,7 @@
|
|
|
337
343
|
.e-image-editor .e-toolbar .e-toolbar-items .e-image-upload .e-image-upload .e-upload {
|
|
338
344
|
border: none;
|
|
339
345
|
}
|
|
340
|
-
.e-image-editor .e-toolbar .e-toolbar-items .e-fill.e-template .e-dropdown-btn .e-icons.e-caret, .e-image-editor .e-toolbar .e-toolbar-items .e-stroke.e-template .e-dropdown-btn .e-icons.e-caret, .e-image-editor .e-toolbar .e-toolbar-items .e-pen-stroke-color.e-template .e-dropdown-btn .e-icons.e-caret, .e-image-editor .e-toolbar .e-toolbar-items .e-text-font-color.e-template .e-dropdown-btn .e-icons.e-caret, .e-image-editor .e-toolbar .e-toolbar-items .e-save.e-template .e-dropdown-btn .e-icons.e-caret {
|
|
346
|
+
.e-image-editor .e-toolbar .e-toolbar-items .e-fill.e-template .e-dropdown-btn .e-icons.e-caret, .e-image-editor .e-toolbar .e-toolbar-items .e-stroke.e-template .e-dropdown-btn .e-icons.e-caret, .e-image-editor .e-toolbar .e-toolbar-items .e-frame-stroke.e-template .e-dropdown-btn .e-icons.e-caret, .e-image-editor .e-toolbar .e-toolbar-items .e-pen-stroke-color.e-template .e-dropdown-btn .e-icons.e-caret, .e-image-editor .e-toolbar .e-toolbar-items .e-text-font-color.e-template .e-dropdown-btn .e-icons.e-caret, .e-image-editor .e-toolbar .e-toolbar-items .e-save.e-template .e-dropdown-btn .e-icons.e-caret {
|
|
341
347
|
font-size: 18px;
|
|
342
348
|
}
|
|
343
349
|
.e-image-editor .e-toolbar .e-toolbar-items .e-text-font-color.e-template .e-dropdown-btn .e-icons.e-caret {
|
|
@@ -346,7 +352,8 @@
|
|
|
346
352
|
.e-image-editor .e-toolbar .e-toolbar-items .e-btn-icon.e-dropdownbtn-preview {
|
|
347
353
|
height: 18px;
|
|
348
354
|
width: 18px;
|
|
349
|
-
margin-top: -4px;
|
|
355
|
+
margin-top: -4px !important; /* stylelint-disable-line declaration-no-important */
|
|
356
|
+
margin-left: -4px;
|
|
350
357
|
}
|
|
351
358
|
.e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-select, .e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-annotation, .e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-transform {
|
|
352
359
|
font-size: 18px;
|
|
@@ -391,6 +398,10 @@
|
|
|
391
398
|
margin: 4px;
|
|
392
399
|
text-align: center;
|
|
393
400
|
}
|
|
401
|
+
.e-image-editor .e-contextual-toolbar-wrapper .e-frame-wrapper .e-dropdown-btn {
|
|
402
|
+
margin: 0 auto;
|
|
403
|
+
width: max-content;
|
|
404
|
+
}
|
|
394
405
|
.e-image-editor .e-contextual-toolbar-wrapper.e-frame-wrapper .e-toolbar {
|
|
395
406
|
height: inherit !important; /* stylelint-disable-line declaration-no-important */
|
|
396
407
|
}
|