@syncfusion/ej2-image-editor 26.2.14 → 27.1.48
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 +3202 -732
- package/dist/es6/ej2-image-editor.es2015.js.map +1 -1
- package/dist/es6/ej2-image-editor.es5.js +3281 -797
- 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 +14 -13
- package/src/image-editor/action/crop.d.ts +0 -1
- package/src/image-editor/action/crop.js +8 -19
- package/src/image-editor/action/draw.d.ts +4 -0
- package/src/image-editor/action/draw.js +377 -45
- package/src/image-editor/action/export.js +21 -13
- package/src/image-editor/action/filter.d.ts +13 -0
- package/src/image-editor/action/filter.js +272 -1
- package/src/image-editor/action/freehand-draw.d.ts +1 -0
- package/src/image-editor/action/freehand-draw.js +44 -23
- package/src/image-editor/action/selection.d.ts +6 -0
- package/src/image-editor/action/selection.js +382 -97
- package/src/image-editor/action/shape.d.ts +5 -0
- package/src/image-editor/action/shape.js +287 -141
- package/src/image-editor/action/transform.js +56 -82
- package/src/image-editor/action/undo-redo.d.ts +2 -0
- package/src/image-editor/action/undo-redo.js +100 -1
- package/src/image-editor/base/enum.d.ts +11 -0
- package/src/image-editor/base/enum.js +12 -0
- package/src/image-editor/base/image-editor-model.d.ts +13 -1
- package/src/image-editor/base/image-editor.d.ts +142 -20
- package/src/image-editor/base/image-editor.js +811 -149
- package/src/image-editor/base/interface.d.ts +140 -1
- package/src/image-editor/renderer/toolbar.d.ts +8 -0
- package/src/image-editor/renderer/toolbar.js +873 -191
- package/styles/bootstrap-dark-lite.css +746 -0
- package/styles/bootstrap-dark-lite.scss +13 -0
- package/styles/bootstrap-dark.css +150 -105
- package/styles/bootstrap-dark.scss +1 -0
- package/styles/bootstrap-lite.css +747 -0
- package/styles/bootstrap-lite.scss +13 -0
- package/styles/bootstrap.css +151 -106
- package/styles/bootstrap.scss +1 -0
- package/styles/bootstrap4-lite.css +747 -0
- package/styles/bootstrap4-lite.scss +13 -0
- package/styles/bootstrap4.css +150 -105
- package/styles/bootstrap4.scss +1 -0
- package/styles/bootstrap5-dark-lite.css +757 -0
- package/styles/bootstrap5-dark-lite.scss +13 -0
- package/styles/bootstrap5-dark.css +152 -113
- package/styles/bootstrap5-dark.scss +1 -0
- package/styles/bootstrap5-lite.css +757 -0
- package/styles/bootstrap5-lite.scss +13 -0
- package/styles/bootstrap5.3-lite.css +760 -0
- package/styles/bootstrap5.3-lite.scss +13 -0
- package/styles/bootstrap5.3.css +867 -0
- package/styles/bootstrap5.3.scss +14 -0
- package/styles/bootstrap5.css +152 -113
- package/styles/bootstrap5.scss +1 -0
- package/styles/fabric-dark-lite.css +749 -0
- package/styles/fabric-dark-lite.scss +13 -0
- package/styles/fabric-dark.css +150 -105
- package/styles/fabric-dark.scss +1 -0
- package/styles/fabric-lite.css +751 -0
- package/styles/fabric-lite.scss +13 -0
- package/styles/fabric.css +151 -106
- package/styles/fabric.scss +1 -0
- package/styles/fluent-dark-lite.css +758 -0
- package/styles/fluent-dark-lite.scss +13 -0
- package/styles/fluent-dark.css +150 -111
- package/styles/fluent-dark.scss +1 -0
- package/styles/fluent-lite.css +758 -0
- package/styles/fluent-lite.scss +13 -0
- package/styles/fluent.css +150 -111
- package/styles/fluent.scss +1 -0
- package/styles/fluent2-lite.css +791 -0
- package/styles/fluent2-lite.scss +13 -0
- package/styles/fluent2.css +173 -117
- package/styles/fluent2.scss +1 -0
- package/styles/highcontrast-light-lite.css +748 -0
- package/styles/highcontrast-light-lite.scss +13 -0
- package/styles/highcontrast-light.css +149 -104
- package/styles/highcontrast-light.scss +1 -0
- package/styles/highcontrast-lite.css +753 -0
- package/styles/highcontrast-lite.scss +13 -0
- package/styles/highcontrast.css +150 -104
- package/styles/highcontrast.scss +1 -0
- package/styles/image-editor/_bds-definition.scss +3 -1
- package/styles/image-editor/_bigger.scss +216 -0
- package/styles/image-editor/_bootstrap-dark-definition.scss +3 -1
- package/styles/image-editor/_bootstrap-definition.scss +3 -1
- package/styles/image-editor/_bootstrap4-definition.scss +3 -1
- package/styles/image-editor/_bootstrap5-definition.scss +3 -1
- package/styles/image-editor/_bootstrap5.3-definition.scss +3 -1
- package/styles/image-editor/_fabric-dark-definition.scss +3 -1
- package/styles/image-editor/_fabric-definition.scss +3 -1
- package/styles/image-editor/_fluent-definition.scss +3 -1
- package/styles/image-editor/_fluent2-definition.scss +4 -2
- package/styles/image-editor/_fusionnew-definition.scss +3 -1
- package/styles/image-editor/_highcontrast-definition.scss +3 -1
- package/styles/image-editor/_highcontrast-light-definition.scss +3 -1
- package/styles/image-editor/_layout.scss +75 -212
- package/styles/image-editor/_material-dark-definition.scss +3 -1
- package/styles/image-editor/_material-definition.scss +3 -1
- package/styles/image-editor/_material3-definition.scss +5 -3
- package/styles/image-editor/_tailwind-definition.scss +5 -3
- package/styles/image-editor/_theme.scss +48 -11
- package/styles/image-editor/bootstrap-dark.css +150 -105
- package/styles/image-editor/bootstrap-dark.scss +1 -0
- package/styles/image-editor/bootstrap.css +151 -106
- package/styles/image-editor/bootstrap.scss +1 -0
- package/styles/image-editor/bootstrap4.css +150 -105
- package/styles/image-editor/bootstrap4.scss +1 -0
- package/styles/image-editor/bootstrap5-dark.css +152 -113
- package/styles/image-editor/bootstrap5-dark.scss +1 -0
- package/styles/image-editor/bootstrap5.3.css +867 -0
- package/styles/image-editor/bootstrap5.3.scss +14 -0
- package/styles/image-editor/bootstrap5.css +152 -113
- package/styles/image-editor/bootstrap5.scss +1 -0
- package/styles/image-editor/fabric-dark.css +150 -105
- package/styles/image-editor/fabric-dark.scss +1 -0
- package/styles/image-editor/fabric.css +151 -106
- package/styles/image-editor/fabric.scss +1 -0
- package/styles/image-editor/fluent-dark.css +150 -111
- package/styles/image-editor/fluent-dark.scss +1 -0
- package/styles/image-editor/fluent.css +150 -111
- package/styles/image-editor/fluent.scss +1 -0
- package/styles/image-editor/fluent2.css +173 -117
- package/styles/image-editor/fluent2.scss +1 -0
- package/styles/image-editor/highcontrast-light.css +149 -104
- package/styles/image-editor/highcontrast-light.scss +1 -0
- package/styles/image-editor/highcontrast.css +150 -104
- package/styles/image-editor/highcontrast.scss +1 -0
- package/styles/image-editor/icons/_bds.scss +10 -1
- package/styles/image-editor/icons/_bootstrap-dark.scss +10 -1
- package/styles/image-editor/icons/_bootstrap.scss +10 -1
- package/styles/image-editor/icons/_bootstrap4.scss +10 -1
- package/styles/image-editor/icons/_bootstrap5.3.scss +10 -1
- package/styles/image-editor/icons/_bootstrap5.scss +10 -1
- package/styles/image-editor/icons/_fabric-dark.scss +10 -1
- package/styles/image-editor/icons/_fabric.scss +10 -1
- package/styles/image-editor/icons/_fluent.scss +10 -1
- package/styles/image-editor/icons/_fluent2.scss +10 -1
- package/styles/image-editor/icons/_fusionnew.scss +10 -1
- package/styles/image-editor/icons/_highcontrast-light.scss +10 -1
- package/styles/image-editor/icons/_highcontrast.scss +10 -1
- package/styles/image-editor/icons/_material-dark.scss +10 -1
- package/styles/image-editor/icons/_material.scss +10 -1
- package/styles/image-editor/icons/_material3.scss +10 -1
- package/styles/image-editor/icons/_tailwind.scss +10 -1
- package/styles/image-editor/material-dark.css +153 -108
- package/styles/image-editor/material-dark.scss +1 -0
- package/styles/image-editor/material.css +159 -114
- package/styles/image-editor/material.scss +1 -0
- package/styles/image-editor/material3-dark.css +171 -123
- package/styles/image-editor/material3-dark.scss +1 -0
- package/styles/image-editor/material3.css +171 -123
- package/styles/image-editor/material3.scss +1 -0
- package/styles/image-editor/tailwind-dark.css +154 -116
- package/styles/image-editor/tailwind-dark.scss +1 -0
- package/styles/image-editor/tailwind.css +154 -116
- package/styles/image-editor/tailwind.scss +1 -0
- package/styles/material-dark-lite.css +767 -0
- package/styles/material-dark-lite.scss +13 -0
- package/styles/material-dark.css +153 -108
- package/styles/material-dark.scss +1 -0
- package/styles/material-lite.css +769 -0
- package/styles/material-lite.scss +13 -0
- package/styles/material.css +159 -114
- package/styles/material.scss +1 -0
- package/styles/material3-dark-lite.css +799 -0
- package/styles/material3-dark-lite.scss +13 -0
- package/styles/material3-dark.css +171 -123
- package/styles/material3-dark.scss +1 -0
- package/styles/material3-lite.css +801 -0
- package/styles/material3-lite.scss +13 -0
- package/styles/material3.css +171 -123
- package/styles/material3.scss +1 -0
- package/styles/tailwind-dark-lite.css +751 -0
- package/styles/tailwind-dark-lite.scss +13 -0
- package/styles/tailwind-dark.css +154 -116
- package/styles/tailwind-dark.scss +1 -0
- package/styles/tailwind-lite.css +751 -0
- package/styles/tailwind-lite.scss +13 -0
- package/styles/tailwind.css +154 -116
- package/styles/tailwind.scss +1 -0
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
@import 'ej2-base/styles/definition/bootstrap-dark.scss';
|
|
2
|
+
@import 'ej2-buttons/styles/button/bootstrap-dark-definition.scss';
|
|
3
|
+
@import 'ej2-splitbuttons/styles/drop-down-button/bootstrap-dark-definition.scss';
|
|
4
|
+
@import 'ej2-inputs/styles/numerictextbox/bootstrap-dark-definition.scss';
|
|
5
|
+
@import 'ej2-inputs/styles/textbox/bootstrap-dark-definition.scss';
|
|
6
|
+
@import 'ej2-inputs/styles/uploader/bootstrap-dark-definition.scss';
|
|
7
|
+
@import 'ej2-popups/styles/tooltip/bootstrap-dark-definition.scss';
|
|
8
|
+
@import 'ej2-inputs/styles/color-picker/bootstrap-dark-definition.scss';
|
|
9
|
+
@import 'ej2-navigations/styles/toolbar/bootstrap-dark-definition.scss';
|
|
10
|
+
@import 'ej2-popups/styles/spinner/bootstrap-dark-definition.scss';
|
|
11
|
+
@import 'image-editor/bootstrap-dark-definition.scss';
|
|
12
|
+
@import 'image-editor/icons/bootstrap-dark.scss';
|
|
13
|
+
@import 'image-editor/all.scss';
|
|
@@ -85,9 +85,12 @@
|
|
|
85
85
|
.e-image-editor .e-stroke.e-template .e-caret::before, .e-image-editor .e-frame-stroke.e-template .e-caret::before, .e-image-editor .e-pen-stroke-color.e-template .e-caret::before {
|
|
86
86
|
content: "\ebc6";
|
|
87
87
|
}
|
|
88
|
-
.e-image-editor .e-fill.e-template .e-caret::before {
|
|
88
|
+
.e-image-editor .e-fill.e-template .e-caret::before, .e-image-editor .e-text-background-color.e-template .e-caret::before {
|
|
89
89
|
content: "\e35c";
|
|
90
90
|
}
|
|
91
|
+
.e-image-editor .e-stroke-text-font-color.e-template .e-caret::before {
|
|
92
|
+
content: "\e15c";
|
|
93
|
+
}
|
|
91
94
|
|
|
92
95
|
.e-image-editor .e-custom::before,
|
|
93
96
|
.e-dropdown-popup.e-image-popup .e-custom::before {
|
|
@@ -236,71 +239,6 @@
|
|
|
236
239
|
height: auto !important; /* stylelint-disable-line declaration-no-important */
|
|
237
240
|
}
|
|
238
241
|
|
|
239
|
-
.e-bigger .e-image-editor .e-contextual-toolbar-wrapper .e-slider-container .e-slider .e-handle,
|
|
240
|
-
.e-image-editor.e-bigger .e-contextual-toolbar-wrapper .e-slider-container .e-slider .e-handle {
|
|
241
|
-
top: calc(50% - 7px) !important; /* stylelint-disable-line declaration-no-important */
|
|
242
|
-
}
|
|
243
|
-
.e-bigger .e-image-editor .e-toolbar,
|
|
244
|
-
.e-image-editor.e-bigger .e-toolbar {
|
|
245
|
-
height: 52px !important; /* stylelint-disable-line declaration-no-important */
|
|
246
|
-
min-height: 52px !important; /* stylelint-disable-line declaration-no-important */
|
|
247
|
-
}
|
|
248
|
-
.e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-toolbar-item.e-ie-resize-height span, .e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-toolbar-item.e-ie-resize-width span,
|
|
249
|
-
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-toolbar-item.e-ie-resize-height span,
|
|
250
|
-
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-toolbar-item.e-ie-resize-width span {
|
|
251
|
-
font-size: 16px;
|
|
252
|
-
}
|
|
253
|
-
.e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn.e-tbtn-txt .e-icons.e-btn-icon,
|
|
254
|
-
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn.e-tbtn-txt .e-icons.e-btn-icon {
|
|
255
|
-
padding: 0;
|
|
256
|
-
font-size: 18px;
|
|
257
|
-
}
|
|
258
|
-
.e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn .e-icons.e-btn-icon,
|
|
259
|
-
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn .e-icons.e-btn-icon {
|
|
260
|
-
font-size: 18px;
|
|
261
|
-
}
|
|
262
|
-
.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,
|
|
263
|
-
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-fill.e-template .e-dropdown-btn .e-icons.e-caret,
|
|
264
|
-
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-stroke.e-template .e-dropdown-btn .e-icons.e-caret,
|
|
265
|
-
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-frame-stroke.e-template .e-dropdown-btn .e-icons.e-caret,
|
|
266
|
-
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-pen-stroke-color.e-template .e-dropdown-btn .e-icons.e-caret,
|
|
267
|
-
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-text-font-color.e-template .e-dropdown-btn .e-icons.e-caret,
|
|
268
|
-
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-save.e-template .e-dropdown-btn .e-icons.e-caret {
|
|
269
|
-
font-size: 18px;
|
|
270
|
-
}
|
|
271
|
-
.e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-text-font-color.e-template .e-dropdown-btn .e-icons.e-caret,
|
|
272
|
-
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-text-font-color.e-template .e-dropdown-btn .e-icons.e-caret {
|
|
273
|
-
margin-top: -4px;
|
|
274
|
-
}
|
|
275
|
-
.e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-btn-icon.e-dropdownbtn-preview,
|
|
276
|
-
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-btn-icon.e-dropdownbtn-preview {
|
|
277
|
-
margin-top: -1px !important; /* stylelint-disable-line declaration-no-important */
|
|
278
|
-
margin-left: 0;
|
|
279
|
-
}
|
|
280
|
-
.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,
|
|
281
|
-
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-select,
|
|
282
|
-
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-annotation,
|
|
283
|
-
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-transform {
|
|
284
|
-
font-size: 18px;
|
|
285
|
-
}
|
|
286
|
-
.e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-select .e-icons.e-caret, .e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-annotation .e-icons.e-caret, .e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-transform .e-icons.e-caret,
|
|
287
|
-
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-select .e-icons.e-caret,
|
|
288
|
-
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-annotation .e-icons.e-caret,
|
|
289
|
-
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-transform .e-icons.e-caret {
|
|
290
|
-
font-size: 10px;
|
|
291
|
-
}
|
|
292
|
-
.e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn .e-save,
|
|
293
|
-
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-dropdown-btn .e-save {
|
|
294
|
-
font-size: 18px;
|
|
295
|
-
}
|
|
296
|
-
.e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn .e-save .e-icons.e-caret,
|
|
297
|
-
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-dropdown-btn .e-save .e-icons.e-caret {
|
|
298
|
-
font-size: 10px;
|
|
299
|
-
}
|
|
300
|
-
.e-bigger .e-image-editor .e-toolbar .e-toolbar-items.e-tbar-pos .e-toolbar-left,
|
|
301
|
-
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items.e-tbar-pos .e-toolbar-left {
|
|
302
|
-
line-height: 1;
|
|
303
|
-
}
|
|
304
242
|
.e-image-editor {
|
|
305
243
|
border: 1px solid #acacac;
|
|
306
244
|
position: relative;
|
|
@@ -376,7 +314,7 @@
|
|
|
376
314
|
.e-image-editor .e-toolbar .e-toolbar-items .e-image-upload .e-image-upload .e-upload {
|
|
377
315
|
border: none;
|
|
378
316
|
}
|
|
379
|
-
.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 {
|
|
317
|
+
.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, .e-image-editor .e-toolbar .e-toolbar-items .e-text-background-color.e-template .e-dropdown-btn .e-icons.e-caret, .e-image-editor .e-toolbar .e-toolbar-items .e-stroke-text-font-color.e-template .e-dropdown-btn .e-icons.e-caret {
|
|
380
318
|
font-size: 16px;
|
|
381
319
|
}
|
|
382
320
|
.e-image-editor .e-toolbar .e-toolbar-items .e-text-font-color.e-template .e-dropdown-btn .e-icons.e-caret {
|
|
@@ -458,13 +396,10 @@
|
|
|
458
396
|
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item {
|
|
459
397
|
height: auto !important; /* stylelint-disable-line declaration-no-important */
|
|
460
398
|
}
|
|
461
|
-
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item .filterwrapper, .e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item .filter-wrapper {
|
|
399
|
+
.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 {
|
|
462
400
|
border: 2px solid transparent;
|
|
463
401
|
height: 100px;
|
|
464
402
|
}
|
|
465
|
-
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item:hover .filterwrapper, .e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item:hover .filter-wrapper, .e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item.e-selected .filterwrapper, .e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item.e-selected .filter-wrapper {
|
|
466
|
-
border-top: 2px solid;
|
|
467
|
-
}
|
|
468
403
|
.e-image-editor .e-contextual-toolbar-wrapper .e-slider-container {
|
|
469
404
|
margin-left: calc(50% - 137px);
|
|
470
405
|
height: 54px !important; /* stylelint-disable-line declaration-no-important */
|
|
@@ -516,10 +451,6 @@
|
|
|
516
451
|
top: calc(50% - 14px) !important; /* stylelint-disable-line declaration-no-important */
|
|
517
452
|
}
|
|
518
453
|
|
|
519
|
-
.e-bigger .e-straighten .e-control-wrapper.e-slider-container .e-slider .e-handle {
|
|
520
|
-
top: calc(50% - 7px) !important; /* stylelint-disable-line declaration-no-important */
|
|
521
|
-
}
|
|
522
|
-
|
|
523
454
|
.e-dropdown-popup.e-ie-crop-ddb-popup ul {
|
|
524
455
|
max-height: 250px;
|
|
525
456
|
overflow-y: auto;
|
|
@@ -658,10 +589,6 @@
|
|
|
658
589
|
margin-left: calc(100% - 145px) !important; /* stylelint-disable-line declaration-no-important */
|
|
659
590
|
}
|
|
660
591
|
|
|
661
|
-
.e-bigger .e-ie-save-dialog .e-ie-img-save-name {
|
|
662
|
-
width: calc(71% - 30px) !important; /* stylelint-disable-line declaration-no-important */
|
|
663
|
-
}
|
|
664
|
-
|
|
665
592
|
.e-device.e-ie-save-dialog .e-ie-img-save-name {
|
|
666
593
|
width: calc(71% - 30px) !important; /* stylelint-disable-line declaration-no-important */
|
|
667
594
|
}
|
|
@@ -674,31 +601,11 @@
|
|
|
674
601
|
margin-bottom: 3px;
|
|
675
602
|
}
|
|
676
603
|
|
|
677
|
-
.e-bigger .e-image-editor .e-dlg-container .e-dialog,
|
|
678
|
-
.e-bigger.e-image-editor .e-dlg-container .e-dialog {
|
|
679
|
-
width: 656px;
|
|
680
|
-
}
|
|
681
|
-
|
|
682
|
-
.e-bigger .e-ie-img-save-dlg {
|
|
683
|
-
width: 106px;
|
|
684
|
-
}
|
|
685
|
-
|
|
686
|
-
.e-bigger .e-image-editor .e-control-wrapper.e-slider-container.e-horizontal,
|
|
687
|
-
.e-bigger.e-image-editor .e-control-wrapper.e-slider-container.e-horizontal {
|
|
688
|
-
width: 217px;
|
|
689
|
-
}
|
|
690
|
-
|
|
691
604
|
.e-ie-quality-option-container .e-btn-group .e-btn {
|
|
692
605
|
padding-left: 14.2px;
|
|
693
606
|
padding-right: 14.2px;
|
|
694
607
|
}
|
|
695
608
|
|
|
696
|
-
.e-bigger .e-dialog.e-blr-ie-save-dialog:not(.e-device) {
|
|
697
|
-
width: 620px !important; /* stylelint-disable-line declaration-no-important */
|
|
698
|
-
}
|
|
699
|
-
.e-bigger .e-dialog.e-blr-ie-save-dialog:not(.e-device) .e-ie-img-icon-button {
|
|
700
|
-
padding: 0 10px;
|
|
701
|
-
}
|
|
702
609
|
.e-blr-ie-save-dialog .e-ie-img-save-name {
|
|
703
610
|
width: calc(67% - 13px);
|
|
704
611
|
}
|
|
@@ -734,8 +641,34 @@
|
|
|
734
641
|
.e-blr-ie-save-dialog.e-device .e-btn-group .e-btn {
|
|
735
642
|
padding: 0 12px;
|
|
736
643
|
}
|
|
737
|
-
.e-
|
|
738
|
-
|
|
644
|
+
.e-ie-straighten-value-span {
|
|
645
|
+
margin-left: 7px !important; /* stylelint-disable-line declaration-no-important */
|
|
646
|
+
}
|
|
647
|
+
|
|
648
|
+
.e-device.e-image-editor .e-ie-straighten-value-span {
|
|
649
|
+
margin-left: 15px !important; /* stylelint-disable-line declaration-no-important */
|
|
650
|
+
}
|
|
651
|
+
|
|
652
|
+
@media only screen and (max-width: 390px) {
|
|
653
|
+
.e-device.e-image-editor .e-ie-save-dialog .e-dialog .e-dlg-content .e-ie-dlg-right-content .e-ie-img-quality-name .e-btn-group .e-btn {
|
|
654
|
+
padding-left: 12px;
|
|
655
|
+
padding-right: 12px;
|
|
656
|
+
}
|
|
657
|
+
.e-device.e-image-editor .e-ie-save-dialog .e-dialog .e-dlg-content .e-ie-dlg-right-content .e-ie-img-save-name {
|
|
658
|
+
width: calc(66% - 30px) !important; /* stylelint-disable-line declaration-no-important */
|
|
659
|
+
}
|
|
660
|
+
}
|
|
661
|
+
.e-device.e-image-editor .e-contextual-toolbar-wrapper .e-ie-finetune-slider-label {
|
|
662
|
+
left: calc(50% - 145px) !important; /* stylelint-disable-line declaration-no-important */
|
|
663
|
+
}
|
|
664
|
+
|
|
665
|
+
.e-device.e-image-editor .e-contextual-toolbar-wrapper .e-slider-container {
|
|
666
|
+
width: 170px !important; /* stylelint-disable-line declaration-no-important */
|
|
667
|
+
margin-left: calc(50% - 62px) !important; /* stylelint-disable-line declaration-no-important */
|
|
668
|
+
}
|
|
669
|
+
|
|
670
|
+
.e-device.e-image-editor .e-contextual-toolbar-wrapper .e-ie-finetune-value-span {
|
|
671
|
+
margin-left: 10px !important; /* stylelint-disable-line declaration-no-important */
|
|
739
672
|
}
|
|
740
673
|
|
|
741
674
|
.e-image-editor {
|
|
@@ -744,8 +677,11 @@
|
|
|
744
677
|
.e-image-editor .e-contextual-toolbar-wrapper {
|
|
745
678
|
background: #131313;
|
|
746
679
|
}
|
|
747
|
-
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item:hover .filterwrapper, .e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item.e-selected .filterwrapper, .e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item:hover .filter-wrapper, .e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item.e-selected .filter-wrapper {
|
|
748
|
-
border-color: #2a2a2a;
|
|
680
|
+
.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 {
|
|
681
|
+
border-color: #2a2a2a !important; /* stylelint-disable-line declaration-no-important */
|
|
682
|
+
}
|
|
683
|
+
.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 {
|
|
684
|
+
border-color: #2a2a2a !important; /* stylelint-disable-line declaration-no-important */
|
|
749
685
|
}
|
|
750
686
|
.e-image-editor .e-toolbar .e-toolbar-items .e-tbar-btn.e-btn .e-icons {
|
|
751
687
|
color: #f0f0f0;
|
|
@@ -794,14 +730,123 @@
|
|
|
794
730
|
background: transparent url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iNnB4IiBoZWlnaHQ9IjZweCIgdmlld0JveD0iMCAwIDYgNiIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4KICAgIDwhLS0gR2VuZXJhdG9yOiBTa2V0Y2ggNTAgKDU0OTgzKSAtIGh0dHA6Ly93d3cuYm9oZW1pYW5jb2RpbmcuY29tL3NrZXRjaCAtLT4KICAgIDx0aXRsZT5Hcm91cCA5PC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGRlZnM+PC9kZWZzPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9Ikdyb3VwLTkiPgogICAgICAgICAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlLTExIiBmaWxsPSIjRTBFMEUwIiB4PSIwIiB5PSIwIiB3aWR0aD0iMyIgaGVpZ2h0PSIzIj48L3JlY3Q+CiAgICAgICAgICAgIDxyZWN0IGlkPSJSZWN0YW5nbGUtMTEtQ29weS0yIiBmaWxsPSIjRkZGRkZGIiB4PSIwIiB5PSIzIiB3aWR0aD0iMyIgaGVpZ2h0PSIzIj48L3JlY3Q+CiAgICAgICAgICAgIDxyZWN0IGlkPSJSZWN0YW5nbGUtMTEtQ29weSIgZmlsbD0iI0ZGRkZGRiIgeD0iMyIgeT0iMCIgd2lkdGg9IjMiIGhlaWdodD0iMyI+PC9yZWN0PgogICAgICAgICAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlLTExLUNvcHktMyIgZmlsbD0iI0UwRTBFMCIgeD0iMyIgeT0iMyIgd2lkdGg9IjMiIGhlaWdodD0iMyI+PC9yZWN0PgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+") !important; /* stylelint-disable-line declaration-no-important */
|
|
795
731
|
background-size: 8px !important; /* stylelint-disable-line declaration-no-important */
|
|
796
732
|
}
|
|
733
|
+
.e-image-editor .e-toolbar .e-toolbar-items .e-toolbar-item.e-overlay .e-btn {
|
|
734
|
+
-webkit-box-shadow: none !important;
|
|
735
|
+
box-shadow: none !important; /* stylelint-disable-line declaration-no-important */
|
|
736
|
+
}
|
|
797
737
|
|
|
798
738
|
.e-dropdown-popup .e-selected-btn {
|
|
799
739
|
background: #959595 !important; /* stylelint-disable-line declaration-no-important */
|
|
800
740
|
}
|
|
801
|
-
|
|
802
741
|
.e-ie-filter-canvas:focus,
|
|
803
742
|
.filter-wrapper:focus .e-ie-filter-canvas,
|
|
804
743
|
.filter-wrapper:focus canvas,
|
|
805
744
|
.filter-wrapper canvas:focus {
|
|
806
|
-
border:
|
|
745
|
+
border-color: #f0f0f0 !important; /* stylelint-disable-line declaration-no-important */
|
|
746
|
+
}
|
|
747
|
+
|
|
748
|
+
.e-bigger .e-image-editor .e-contextual-toolbar-wrapper .e-slider-container .e-slider .e-handle,
|
|
749
|
+
.e-image-editor.e-bigger .e-contextual-toolbar-wrapper .e-slider-container .e-slider .e-handle {
|
|
750
|
+
top: calc(50% - 7px) !important; /* stylelint-disable-line declaration-no-important */
|
|
751
|
+
}
|
|
752
|
+
.e-bigger .e-image-editor .e-contextual-toolbar-wrapper .e-toolbar,
|
|
753
|
+
.e-image-editor.e-bigger .e-contextual-toolbar-wrapper .e-toolbar {
|
|
754
|
+
height: 130px !important; /* stylelint-disable-line declaration-no-important */
|
|
755
|
+
}
|
|
756
|
+
.e-bigger .e-image-editor .e-contextual-toolbar-wrapper .e-frame-wrapper .e-toolbar, .e-bigger .e-image-editor .e-contextual-toolbar-wrapper.e-frame-wrapper .e-toolbar,
|
|
757
|
+
.e-image-editor.e-bigger .e-contextual-toolbar-wrapper .e-frame-wrapper .e-toolbar,
|
|
758
|
+
.e-image-editor.e-bigger .e-contextual-toolbar-wrapper.e-frame-wrapper .e-toolbar {
|
|
759
|
+
height: inherit !important; /* stylelint-disable-line declaration-no-important */
|
|
760
|
+
}
|
|
761
|
+
.e-bigger .e-image-editor .e-toolbar,
|
|
762
|
+
.e-image-editor.e-bigger .e-toolbar {
|
|
763
|
+
height: 52px !important; /* stylelint-disable-line declaration-no-important */
|
|
764
|
+
min-height: 52px !important; /* stylelint-disable-line declaration-no-important */
|
|
765
|
+
}
|
|
766
|
+
.e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-toolbar-item.e-ie-resize-height span, .e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-toolbar-item.e-ie-resize-width span,
|
|
767
|
+
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-toolbar-item.e-ie-resize-height span,
|
|
768
|
+
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-toolbar-item.e-ie-resize-width span {
|
|
769
|
+
font-size: 16px;
|
|
770
|
+
}
|
|
771
|
+
.e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn.e-tbtn-txt .e-icons.e-btn-icon,
|
|
772
|
+
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn.e-tbtn-txt .e-icons.e-btn-icon {
|
|
773
|
+
padding: 0;
|
|
774
|
+
font-size: 18px;
|
|
775
|
+
}
|
|
776
|
+
.e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn .e-icons.e-btn-icon,
|
|
777
|
+
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn .e-icons.e-btn-icon {
|
|
778
|
+
font-size: 18px;
|
|
779
|
+
}
|
|
780
|
+
.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,
|
|
781
|
+
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-fill.e-template .e-dropdown-btn .e-icons.e-caret,
|
|
782
|
+
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-stroke.e-template .e-dropdown-btn .e-icons.e-caret,
|
|
783
|
+
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-frame-stroke.e-template .e-dropdown-btn .e-icons.e-caret,
|
|
784
|
+
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-pen-stroke-color.e-template .e-dropdown-btn .e-icons.e-caret,
|
|
785
|
+
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-text-font-color.e-template .e-dropdown-btn .e-icons.e-caret,
|
|
786
|
+
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-save.e-template .e-dropdown-btn .e-icons.e-caret {
|
|
787
|
+
font-size: 18px;
|
|
788
|
+
}
|
|
789
|
+
.e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-text-font-color.e-template .e-dropdown-btn .e-icons.e-caret,
|
|
790
|
+
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-text-font-color.e-template .e-dropdown-btn .e-icons.e-caret {
|
|
791
|
+
margin-top: -4px;
|
|
792
|
+
}
|
|
793
|
+
.e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-btn-icon.e-dropdownbtn-preview,
|
|
794
|
+
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-btn-icon.e-dropdownbtn-preview {
|
|
795
|
+
margin-top: -1px !important; /* stylelint-disable-line declaration-no-important */
|
|
796
|
+
margin-left: 0;
|
|
797
|
+
}
|
|
798
|
+
.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,
|
|
799
|
+
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-select,
|
|
800
|
+
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-annotation,
|
|
801
|
+
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-transform {
|
|
802
|
+
font-size: 18px;
|
|
803
|
+
}
|
|
804
|
+
.e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-select .e-icons.e-caret, .e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-annotation .e-icons.e-caret, .e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-transform .e-icons.e-caret,
|
|
805
|
+
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-select .e-icons.e-caret,
|
|
806
|
+
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-annotation .e-icons.e-caret,
|
|
807
|
+
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-transform .e-icons.e-caret {
|
|
808
|
+
font-size: 10px;
|
|
809
|
+
}
|
|
810
|
+
.e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn .e-save,
|
|
811
|
+
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-dropdown-btn .e-save {
|
|
812
|
+
font-size: 18px;
|
|
813
|
+
}
|
|
814
|
+
.e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn .e-save .e-icons.e-caret,
|
|
815
|
+
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-dropdown-btn .e-save .e-icons.e-caret {
|
|
816
|
+
font-size: 10px;
|
|
817
|
+
}
|
|
818
|
+
.e-bigger .e-image-editor .e-toolbar .e-toolbar-items.e-tbar-pos .e-toolbar-left,
|
|
819
|
+
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items.e-tbar-pos .e-toolbar-left {
|
|
820
|
+
line-height: 1;
|
|
821
|
+
}
|
|
822
|
+
.e-bigger .e-straighten .e-control-wrapper.e-slider-container .e-slider .e-handle {
|
|
823
|
+
top: calc(50% - 7px) !important; /* stylelint-disable-line declaration-no-important */
|
|
824
|
+
}
|
|
825
|
+
|
|
826
|
+
.e-bigger .e-ie-save-dialog .e-ie-img-save-name {
|
|
827
|
+
width: calc(71% - 30px) !important; /* stylelint-disable-line declaration-no-important */
|
|
828
|
+
}
|
|
829
|
+
|
|
830
|
+
.e-bigger .e-image-editor .e-dlg-container .e-dialog,
|
|
831
|
+
.e-bigger.e-image-editor .e-dlg-container .e-dialog {
|
|
832
|
+
width: 656px;
|
|
833
|
+
}
|
|
834
|
+
|
|
835
|
+
.e-bigger .e-ie-img-save-dlg {
|
|
836
|
+
width: 100px;
|
|
837
|
+
}
|
|
838
|
+
|
|
839
|
+
.e-bigger .e-image-editor .e-control-wrapper.e-slider-container.e-horizontal,
|
|
840
|
+
.e-bigger.e-image-editor .e-control-wrapper.e-slider-container.e-horizontal {
|
|
841
|
+
width: 217px;
|
|
842
|
+
}
|
|
843
|
+
|
|
844
|
+
.e-bigger .e-dialog.e-blr-ie-save-dialog:not(.e-device) {
|
|
845
|
+
width: 620px !important; /* stylelint-disable-line declaration-no-important */
|
|
846
|
+
}
|
|
847
|
+
.e-bigger .e-dialog.e-blr-ie-save-dialog:not(.e-device) .e-ie-img-icon-button {
|
|
848
|
+
padding: 0 10px;
|
|
849
|
+
}
|
|
850
|
+
.e-bigger .e-ie-save-dialog .e-ie-img-save-name {
|
|
851
|
+
width: calc(71% - 30px) !important; /* stylelint-disable-line declaration-no-important */
|
|
807
852
|
}
|