@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
|
@@ -107,9 +107,12 @@
|
|
|
107
107
|
.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 {
|
|
108
108
|
content: "\ec15";
|
|
109
109
|
}
|
|
110
|
-
.e-image-editor .e-fill.e-template .e-caret::before {
|
|
110
|
+
.e-image-editor .e-fill.e-template .e-caret::before, .e-image-editor .e-text-background-color.e-template .e-caret::before {
|
|
111
111
|
content: "\e35c";
|
|
112
112
|
}
|
|
113
|
+
.e-image-editor .e-stroke-text-font-color.e-template .e-caret::before {
|
|
114
|
+
content: "\e9cc";
|
|
115
|
+
}
|
|
113
116
|
|
|
114
117
|
.e-image-editor .e-custom::before,
|
|
115
118
|
.e-dropdown-popup.e-image-popup .e-custom::before {
|
|
@@ -258,75 +261,6 @@
|
|
|
258
261
|
height: auto !important; /* stylelint-disable-line declaration-no-important */
|
|
259
262
|
}
|
|
260
263
|
|
|
261
|
-
.e-bigger .e-image-editor .e-contextual-toolbar-wrapper .e-slider-container .e-slider .e-handle,
|
|
262
|
-
.e-image-editor.e-bigger .e-contextual-toolbar-wrapper .e-slider-container .e-slider .e-handle {
|
|
263
|
-
top: calc(50% - 5px) !important; /* stylelint-disable-line declaration-no-important */
|
|
264
|
-
}
|
|
265
|
-
.e-bigger .e-image-editor .e-toolbar,
|
|
266
|
-
.e-image-editor.e-bigger .e-toolbar {
|
|
267
|
-
height: 48px !important; /* stylelint-disable-line declaration-no-important */
|
|
268
|
-
min-height: 48px !important; /* stylelint-disable-line declaration-no-important */
|
|
269
|
-
}
|
|
270
|
-
.e-bigger .e-image-editor .e-toolbar .e-toolbar-items,
|
|
271
|
-
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items {
|
|
272
|
-
height: 48px !important; /* stylelint-disable-line declaration-no-important */
|
|
273
|
-
min-height: 48px !important; /* stylelint-disable-line declaration-no-important */
|
|
274
|
-
}
|
|
275
|
-
.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,
|
|
276
|
-
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-toolbar-item.e-ie-resize-height span,
|
|
277
|
-
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-toolbar-item.e-ie-resize-width span {
|
|
278
|
-
font-size: 16px;
|
|
279
|
-
}
|
|
280
|
-
.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,
|
|
281
|
-
.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 {
|
|
282
|
-
font-size: 18px;
|
|
283
|
-
}
|
|
284
|
-
.e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn .e-icons.e-btn-icon,
|
|
285
|
-
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn .e-icons.e-btn-icon {
|
|
286
|
-
font-size: 18px;
|
|
287
|
-
}
|
|
288
|
-
.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,
|
|
289
|
-
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-fill.e-template .e-dropdown-btn .e-icons.e-caret,
|
|
290
|
-
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-stroke.e-template .e-dropdown-btn .e-icons.e-caret,
|
|
291
|
-
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-frame-stroke.e-template .e-dropdown-btn .e-icons.e-caret,
|
|
292
|
-
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-pen-stroke-color.e-template .e-dropdown-btn .e-icons.e-caret,
|
|
293
|
-
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-text-font-color.e-template .e-dropdown-btn .e-icons.e-caret,
|
|
294
|
-
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-save.e-template .e-dropdown-btn .e-icons.e-caret {
|
|
295
|
-
font-size: 18px;
|
|
296
|
-
}
|
|
297
|
-
.e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-text-font-color.e-template .e-dropdown-btn .e-icons.e-caret,
|
|
298
|
-
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-text-font-color.e-template .e-dropdown-btn .e-icons.e-caret {
|
|
299
|
-
margin-top: -4px;
|
|
300
|
-
}
|
|
301
|
-
.e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-btn-icon.e-dropdownbtn-preview,
|
|
302
|
-
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-btn-icon.e-dropdownbtn-preview {
|
|
303
|
-
margin-top: -3px !important; /* stylelint-disable-line declaration-no-important */
|
|
304
|
-
margin-left: -1px;
|
|
305
|
-
}
|
|
306
|
-
.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,
|
|
307
|
-
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-select,
|
|
308
|
-
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-annotation,
|
|
309
|
-
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-transform {
|
|
310
|
-
font-size: 18px;
|
|
311
|
-
}
|
|
312
|
-
.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,
|
|
313
|
-
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-select .e-icons.e-caret,
|
|
314
|
-
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-annotation .e-icons.e-caret,
|
|
315
|
-
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-transform .e-icons.e-caret {
|
|
316
|
-
font-size: 10px;
|
|
317
|
-
}
|
|
318
|
-
.e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn .e-save,
|
|
319
|
-
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-dropdown-btn .e-save {
|
|
320
|
-
font-size: 18px;
|
|
321
|
-
}
|
|
322
|
-
.e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn .e-save .e-icons.e-caret,
|
|
323
|
-
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-dropdown-btn .e-save .e-icons.e-caret {
|
|
324
|
-
font-size: 10px;
|
|
325
|
-
}
|
|
326
|
-
.e-bigger .e-image-editor .e-toolbar .e-toolbar-items.e-tbar-pos .e-toolbar-left,
|
|
327
|
-
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items.e-tbar-pos .e-toolbar-left {
|
|
328
|
-
line-height: 1;
|
|
329
|
-
}
|
|
330
264
|
.e-image-editor {
|
|
331
265
|
border: 1px solid #bdbdbd;
|
|
332
266
|
position: relative;
|
|
@@ -401,7 +335,7 @@
|
|
|
401
335
|
.e-image-editor .e-toolbar .e-toolbar-items .e-image-upload .e-image-upload .e-upload {
|
|
402
336
|
border: none;
|
|
403
337
|
}
|
|
404
|
-
.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 {
|
|
338
|
+
.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 {
|
|
405
339
|
font-size: 16px;
|
|
406
340
|
}
|
|
407
341
|
.e-image-editor .e-toolbar .e-toolbar-items .e-text-font-color.e-template .e-dropdown-btn .e-icons.e-caret {
|
|
@@ -483,13 +417,10 @@
|
|
|
483
417
|
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item {
|
|
484
418
|
height: auto !important; /* stylelint-disable-line declaration-no-important */
|
|
485
419
|
}
|
|
486
|
-
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item .filterwrapper, .e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item .filter-wrapper {
|
|
420
|
+
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item .filterwrapper canvas, .e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item .filter-wrapper canvas {
|
|
487
421
|
border: 2px solid transparent;
|
|
488
422
|
height: 100px;
|
|
489
423
|
}
|
|
490
|
-
.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 {
|
|
491
|
-
border-top: 2px solid;
|
|
492
|
-
}
|
|
493
424
|
.e-image-editor .e-contextual-toolbar-wrapper .e-slider-container {
|
|
494
425
|
margin-left: calc(50% - 137px);
|
|
495
426
|
height: 54px !important; /* stylelint-disable-line declaration-no-important */
|
|
@@ -541,10 +472,6 @@
|
|
|
541
472
|
top: calc(50% - 14px) !important; /* stylelint-disable-line declaration-no-important */
|
|
542
473
|
}
|
|
543
474
|
|
|
544
|
-
.e-bigger .e-straighten .e-control-wrapper.e-slider-container .e-slider .e-handle {
|
|
545
|
-
top: calc(50% - 7px) !important; /* stylelint-disable-line declaration-no-important */
|
|
546
|
-
}
|
|
547
|
-
|
|
548
475
|
.e-dropdown-popup.e-ie-crop-ddb-popup ul {
|
|
549
476
|
max-height: 250px;
|
|
550
477
|
overflow-y: auto;
|
|
@@ -685,10 +612,6 @@
|
|
|
685
612
|
margin-left: calc(100% - 130px) !important; /* stylelint-disable-line declaration-no-important */
|
|
686
613
|
}
|
|
687
614
|
|
|
688
|
-
.e-bigger .e-ie-save-dialog .e-ie-img-save-name {
|
|
689
|
-
width: calc(71% - 30px) !important; /* stylelint-disable-line declaration-no-important */
|
|
690
|
-
}
|
|
691
|
-
|
|
692
615
|
.e-device.e-ie-save-dialog .e-ie-img-save-name {
|
|
693
616
|
width: calc(71% - 30px) !important; /* stylelint-disable-line declaration-no-important */
|
|
694
617
|
}
|
|
@@ -701,35 +624,11 @@
|
|
|
701
624
|
margin-bottom: 5px;
|
|
702
625
|
}
|
|
703
626
|
|
|
704
|
-
.e-bigger .e-image-editor .e-dlg-container .e-dialog,
|
|
705
|
-
.e-bigger.e-image-editor .e-dlg-container .e-dialog {
|
|
706
|
-
width: 656px;
|
|
707
|
-
}
|
|
708
|
-
|
|
709
|
-
.e-bigger .e-ie-img-save-dlg {
|
|
710
|
-
width: 106px;
|
|
711
|
-
}
|
|
712
|
-
|
|
713
|
-
.e-bigger .e-image-editor .e-control-wrapper.e-slider-container.e-horizontal,
|
|
714
|
-
.e-bigger.e-image-editor .e-control-wrapper.e-slider-container.e-horizontal {
|
|
715
|
-
width: 217px;
|
|
716
|
-
}
|
|
717
|
-
|
|
718
627
|
.e-ie-quality-option-container .e-btn-group .e-btn {
|
|
719
628
|
padding-left: 10px;
|
|
720
629
|
padding-right: 10px;
|
|
721
630
|
}
|
|
722
631
|
|
|
723
|
-
.e-bigger .e-dialog.e-blr-ie-save-dialog:not(.e-device) {
|
|
724
|
-
width: 620px !important; /* stylelint-disable-line declaration-no-important */
|
|
725
|
-
}
|
|
726
|
-
.e-bigger .e-dialog.e-blr-ie-save-dialog:not(.e-device) .e-ie-img-icon-button {
|
|
727
|
-
padding: 4px 11px 2px;
|
|
728
|
-
}
|
|
729
|
-
.e-bigger .e-dialog.e-blr-ie-save-dialog:not(.e-device) .e-btn-group .e-btn {
|
|
730
|
-
padding: 4px 10px 2px;
|
|
731
|
-
}
|
|
732
|
-
|
|
733
632
|
.e-blr-ie-save-dialog .e-ie-img-save-name {
|
|
734
633
|
width: calc(67% - 13px);
|
|
735
634
|
}
|
|
@@ -765,9 +664,34 @@
|
|
|
765
664
|
.e-blr-ie-save-dialog.e-device .e-btn-group .e-btn {
|
|
766
665
|
padding: 2px 9.5px;
|
|
767
666
|
}
|
|
768
|
-
.e-
|
|
769
|
-
|
|
770
|
-
|
|
667
|
+
.e-ie-straighten-value-span {
|
|
668
|
+
margin-left: 7px !important; /* stylelint-disable-line declaration-no-important */
|
|
669
|
+
}
|
|
670
|
+
|
|
671
|
+
.e-device.e-image-editor .e-ie-straighten-value-span {
|
|
672
|
+
margin-left: 15px !important; /* stylelint-disable-line declaration-no-important */
|
|
673
|
+
}
|
|
674
|
+
|
|
675
|
+
@media only screen and (max-width: 390px) {
|
|
676
|
+
.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 {
|
|
677
|
+
padding-left: 10px;
|
|
678
|
+
padding-right: 10px;
|
|
679
|
+
}
|
|
680
|
+
.e-device.e-image-editor .e-ie-save-dialog .e-dialog .e-dlg-content .e-ie-dlg-right-content .e-ie-img-save-name {
|
|
681
|
+
width: calc(65% - 30px) !important; /* stylelint-disable-line declaration-no-important */
|
|
682
|
+
}
|
|
683
|
+
}
|
|
684
|
+
.e-device.e-image-editor .e-contextual-toolbar-wrapper .e-ie-finetune-slider-label {
|
|
685
|
+
left: calc(50% - 145px) !important; /* stylelint-disable-line declaration-no-important */
|
|
686
|
+
}
|
|
687
|
+
|
|
688
|
+
.e-device.e-image-editor .e-contextual-toolbar-wrapper .e-slider-container {
|
|
689
|
+
width: 170px !important; /* stylelint-disable-line declaration-no-important */
|
|
690
|
+
margin-left: calc(50% - 62px) !important; /* stylelint-disable-line declaration-no-important */
|
|
691
|
+
}
|
|
692
|
+
|
|
693
|
+
.e-device.e-image-editor .e-contextual-toolbar-wrapper .e-ie-finetune-value-span {
|
|
694
|
+
margin-left: 10px !important; /* stylelint-disable-line declaration-no-important */
|
|
771
695
|
}
|
|
772
696
|
|
|
773
697
|
.e-image-editor {
|
|
@@ -776,8 +700,11 @@
|
|
|
776
700
|
.e-image-editor .e-contextual-toolbar-wrapper {
|
|
777
701
|
background: #fafafa;
|
|
778
702
|
}
|
|
779
|
-
.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 {
|
|
780
|
-
border-color: rgba(184, 184, 184, 0.9584);
|
|
703
|
+
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item:hover .filterwrapper canvas, .e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item.e-selected .filterwrapper canvas, .e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item:hover .filter-wrapper canvas, .e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item.e-selected .filter-wrapper canvas {
|
|
704
|
+
border-color: rgba(184, 184, 184, 0.9584) !important; /* stylelint-disable-line declaration-no-important */
|
|
705
|
+
}
|
|
706
|
+
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item.e-selected .filterwrapper:focus canvas, .e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item.e-selected .filter-wrapper:focus canvas {
|
|
707
|
+
border-color: rgba(184, 184, 184, 0.9584) !important; /* stylelint-disable-line declaration-no-important */
|
|
781
708
|
}
|
|
782
709
|
.e-image-editor .e-toolbar .e-toolbar-items .e-tbar-btn.e-btn .e-icons {
|
|
783
710
|
color: #757575;
|
|
@@ -826,14 +753,132 @@
|
|
|
826
753
|
background: transparent url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iNnB4IiBoZWlnaHQ9IjZweCIgdmlld0JveD0iMCAwIDYgNiIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4KICAgIDwhLS0gR2VuZXJhdG9yOiBTa2V0Y2ggNTAgKDU0OTgzKSAtIGh0dHA6Ly93d3cuYm9oZW1pYW5jb2RpbmcuY29tL3NrZXRjaCAtLT4KICAgIDx0aXRsZT5Hcm91cCA5PC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGRlZnM+PC9kZWZzPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9Ikdyb3VwLTkiPgogICAgICAgICAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlLTExIiBmaWxsPSIjRTBFMEUwIiB4PSIwIiB5PSIwIiB3aWR0aD0iMyIgaGVpZ2h0PSIzIj48L3JlY3Q+CiAgICAgICAgICAgIDxyZWN0IGlkPSJSZWN0YW5nbGUtMTEtQ29weS0yIiBmaWxsPSIjRkZGRkZGIiB4PSIwIiB5PSIzIiB3aWR0aD0iMyIgaGVpZ2h0PSIzIj48L3JlY3Q+CiAgICAgICAgICAgIDxyZWN0IGlkPSJSZWN0YW5nbGUtMTEtQ29weSIgZmlsbD0iI0ZGRkZGRiIgeD0iMyIgeT0iMCIgd2lkdGg9IjMiIGhlaWdodD0iMyI+PC9yZWN0PgogICAgICAgICAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlLTExLUNvcHktMyIgZmlsbD0iI0UwRTBFMCIgeD0iMyIgeT0iMyIgd2lkdGg9IjMiIGhlaWdodD0iMyI+PC9yZWN0PgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+") !important; /* stylelint-disable-line declaration-no-important */
|
|
827
754
|
background-size: 8px !important; /* stylelint-disable-line declaration-no-important */
|
|
828
755
|
}
|
|
756
|
+
.e-image-editor .e-toolbar .e-toolbar-items .e-toolbar-item.e-overlay .e-btn {
|
|
757
|
+
-webkit-box-shadow: none !important;
|
|
758
|
+
box-shadow: none !important; /* stylelint-disable-line declaration-no-important */
|
|
759
|
+
}
|
|
829
760
|
|
|
830
761
|
.e-dropdown-popup .e-selected-btn {
|
|
831
762
|
background: #bdbdbd !important; /* stylelint-disable-line declaration-no-important */
|
|
832
763
|
}
|
|
833
|
-
|
|
834
764
|
.e-ie-filter-canvas:focus,
|
|
835
765
|
.filter-wrapper:focus .e-ie-filter-canvas,
|
|
836
766
|
.filter-wrapper:focus canvas,
|
|
837
767
|
.filter-wrapper canvas:focus {
|
|
838
|
-
border:
|
|
768
|
+
border-color: #000 !important; /* stylelint-disable-line declaration-no-important */
|
|
769
|
+
}
|
|
770
|
+
|
|
771
|
+
.e-bigger .e-image-editor .e-contextual-toolbar-wrapper .e-slider-container .e-slider .e-handle,
|
|
772
|
+
.e-image-editor.e-bigger .e-contextual-toolbar-wrapper .e-slider-container .e-slider .e-handle {
|
|
773
|
+
top: calc(50% - 5px) !important; /* stylelint-disable-line declaration-no-important */
|
|
774
|
+
}
|
|
775
|
+
.e-bigger .e-image-editor .e-contextual-toolbar-wrapper .e-toolbar,
|
|
776
|
+
.e-image-editor.e-bigger .e-contextual-toolbar-wrapper .e-toolbar {
|
|
777
|
+
height: 130px !important; /* stylelint-disable-line declaration-no-important */
|
|
778
|
+
}
|
|
779
|
+
.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,
|
|
780
|
+
.e-image-editor.e-bigger .e-contextual-toolbar-wrapper .e-frame-wrapper .e-toolbar,
|
|
781
|
+
.e-image-editor.e-bigger .e-contextual-toolbar-wrapper.e-frame-wrapper .e-toolbar {
|
|
782
|
+
height: inherit !important; /* stylelint-disable-line declaration-no-important */
|
|
783
|
+
}
|
|
784
|
+
.e-bigger .e-image-editor .e-toolbar,
|
|
785
|
+
.e-image-editor.e-bigger .e-toolbar {
|
|
786
|
+
height: 48px !important; /* stylelint-disable-line declaration-no-important */
|
|
787
|
+
min-height: 48px !important; /* stylelint-disable-line declaration-no-important */
|
|
788
|
+
}
|
|
789
|
+
.e-bigger .e-image-editor .e-toolbar .e-toolbar-items,
|
|
790
|
+
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items {
|
|
791
|
+
height: 48px !important; /* stylelint-disable-line declaration-no-important */
|
|
792
|
+
min-height: 48px !important; /* stylelint-disable-line declaration-no-important */
|
|
793
|
+
}
|
|
794
|
+
.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,
|
|
795
|
+
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-toolbar-item.e-ie-resize-height span,
|
|
796
|
+
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-toolbar-item.e-ie-resize-width span {
|
|
797
|
+
font-size: 16px;
|
|
798
|
+
}
|
|
799
|
+
.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,
|
|
800
|
+
.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 {
|
|
801
|
+
font-size: 18px;
|
|
802
|
+
}
|
|
803
|
+
.e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn .e-icons.e-btn-icon,
|
|
804
|
+
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn .e-icons.e-btn-icon {
|
|
805
|
+
font-size: 18px;
|
|
806
|
+
}
|
|
807
|
+
.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,
|
|
808
|
+
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-fill.e-template .e-dropdown-btn .e-icons.e-caret,
|
|
809
|
+
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-stroke.e-template .e-dropdown-btn .e-icons.e-caret,
|
|
810
|
+
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-frame-stroke.e-template .e-dropdown-btn .e-icons.e-caret,
|
|
811
|
+
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-pen-stroke-color.e-template .e-dropdown-btn .e-icons.e-caret,
|
|
812
|
+
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-text-font-color.e-template .e-dropdown-btn .e-icons.e-caret,
|
|
813
|
+
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-save.e-template .e-dropdown-btn .e-icons.e-caret {
|
|
814
|
+
font-size: 18px;
|
|
815
|
+
}
|
|
816
|
+
.e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-text-font-color.e-template .e-dropdown-btn .e-icons.e-caret,
|
|
817
|
+
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-text-font-color.e-template .e-dropdown-btn .e-icons.e-caret {
|
|
818
|
+
margin-top: -4px;
|
|
819
|
+
}
|
|
820
|
+
.e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-btn-icon.e-dropdownbtn-preview,
|
|
821
|
+
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-btn-icon.e-dropdownbtn-preview {
|
|
822
|
+
margin-top: -3px !important; /* stylelint-disable-line declaration-no-important */
|
|
823
|
+
margin-left: -1px;
|
|
824
|
+
}
|
|
825
|
+
.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,
|
|
826
|
+
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-select,
|
|
827
|
+
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-annotation,
|
|
828
|
+
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-transform {
|
|
829
|
+
font-size: 18px;
|
|
830
|
+
}
|
|
831
|
+
.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,
|
|
832
|
+
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-select .e-icons.e-caret,
|
|
833
|
+
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-annotation .e-icons.e-caret,
|
|
834
|
+
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-transform .e-icons.e-caret {
|
|
835
|
+
font-size: 10px;
|
|
836
|
+
}
|
|
837
|
+
.e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn .e-save,
|
|
838
|
+
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-dropdown-btn .e-save {
|
|
839
|
+
font-size: 18px;
|
|
840
|
+
}
|
|
841
|
+
.e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn .e-save .e-icons.e-caret,
|
|
842
|
+
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-dropdown-btn .e-save .e-icons.e-caret {
|
|
843
|
+
font-size: 10px;
|
|
844
|
+
}
|
|
845
|
+
.e-bigger .e-image-editor .e-toolbar .e-toolbar-items.e-tbar-pos .e-toolbar-left,
|
|
846
|
+
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items.e-tbar-pos .e-toolbar-left {
|
|
847
|
+
line-height: 1;
|
|
848
|
+
}
|
|
849
|
+
.e-bigger .e-straighten .e-control-wrapper.e-slider-container .e-slider .e-handle {
|
|
850
|
+
top: calc(50% - 7px) !important; /* stylelint-disable-line declaration-no-important */
|
|
851
|
+
}
|
|
852
|
+
|
|
853
|
+
.e-bigger .e-ie-save-dialog .e-ie-img-save-name {
|
|
854
|
+
width: calc(71% - 30px) !important; /* stylelint-disable-line declaration-no-important */
|
|
855
|
+
}
|
|
856
|
+
|
|
857
|
+
.e-bigger .e-image-editor .e-dlg-container .e-dialog,
|
|
858
|
+
.e-bigger.e-image-editor .e-dlg-container .e-dialog {
|
|
859
|
+
width: 656px;
|
|
860
|
+
}
|
|
861
|
+
|
|
862
|
+
.e-bigger .e-ie-img-save-dlg {
|
|
863
|
+
width: 100px;
|
|
864
|
+
}
|
|
865
|
+
|
|
866
|
+
.e-bigger .e-image-editor .e-control-wrapper.e-slider-container.e-horizontal,
|
|
867
|
+
.e-bigger.e-image-editor .e-control-wrapper.e-slider-container.e-horizontal {
|
|
868
|
+
width: 217px;
|
|
869
|
+
}
|
|
870
|
+
|
|
871
|
+
.e-bigger .e-dialog.e-blr-ie-save-dialog:not(.e-device) {
|
|
872
|
+
width: 620px !important; /* stylelint-disable-line declaration-no-important */
|
|
873
|
+
}
|
|
874
|
+
.e-bigger .e-dialog.e-blr-ie-save-dialog:not(.e-device) .e-ie-img-icon-button {
|
|
875
|
+
padding: 4px 11px 2px;
|
|
876
|
+
}
|
|
877
|
+
.e-bigger .e-dialog.e-blr-ie-save-dialog:not(.e-device) .e-btn-group .e-btn {
|
|
878
|
+
padding: 4px 10px 2px;
|
|
879
|
+
}
|
|
880
|
+
|
|
881
|
+
.e-bigger .e-ie-save-dialog .e-ie-img-save-name {
|
|
882
|
+
width: calc(71% - 30px) !important; /* stylelint-disable-line declaration-no-important */
|
|
883
|
+
width: calc(65% - 13px) !important; /* stylelint-disable-line declaration-no-important */
|
|
839
884
|
}
|