@syncfusion/ej2-image-editor 26.2.10 → 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 +3207 -732
- package/dist/es6/ej2-image-editor.es2015.js.map +1 -1
- package/dist/es6/ej2-image-editor.es5.js +3286 -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 +816 -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
- package/hotfix/26.1.35_Vol2.txt +0 -1
|
@@ -1,10 +1,4 @@
|
|
|
1
1
|
/* stylelint-disable-line no-empty-source */
|
|
2
|
-
.e-upload .e-upload-actions,
|
|
3
|
-
.e-bigger.e-small .e-upload .e-upload-actions {
|
|
4
|
-
background-color: transparent;
|
|
5
|
-
border-radius: 0 0 6px 6px;
|
|
6
|
-
}
|
|
7
|
-
|
|
8
2
|
/* stylelint-disable property-no-vendor-prefix */
|
|
9
3
|
@-webkit-keyframes material-spinner-rotate {
|
|
10
4
|
0% {
|
|
@@ -91,9 +85,12 @@
|
|
|
91
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 {
|
|
92
86
|
content: "\e739";
|
|
93
87
|
}
|
|
94
|
-
.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 {
|
|
95
89
|
content: "\e783";
|
|
96
90
|
}
|
|
91
|
+
.e-image-editor .e-stroke-text-font-color.e-template .e-caret::before {
|
|
92
|
+
content: "\e908";
|
|
93
|
+
}
|
|
97
94
|
|
|
98
95
|
.e-image-editor .e-custom::before,
|
|
99
96
|
.e-dropdown-popup.e-image-popup .e-custom::before {
|
|
@@ -246,70 +243,6 @@
|
|
|
246
243
|
height: auto !important; /* stylelint-disable-line declaration-no-important */
|
|
247
244
|
}
|
|
248
245
|
|
|
249
|
-
.e-bigger .e-image-editor .e-contextual-toolbar-wrapper .e-slider-container .e-slider .e-handle,
|
|
250
|
-
.e-image-editor.e-bigger .e-contextual-toolbar-wrapper .e-slider-container .e-slider .e-handle {
|
|
251
|
-
top: calc(50% - 8px) !important; /* stylelint-disable-line declaration-no-important */
|
|
252
|
-
}
|
|
253
|
-
.e-bigger .e-image-editor .e-toolbar,
|
|
254
|
-
.e-image-editor.e-bigger .e-toolbar {
|
|
255
|
-
height: 48px !important; /* stylelint-disable-line declaration-no-important */
|
|
256
|
-
min-height: 48px !important; /* stylelint-disable-line declaration-no-important */
|
|
257
|
-
}
|
|
258
|
-
.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,
|
|
259
|
-
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-toolbar-item.e-ie-resize-height span,
|
|
260
|
-
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-toolbar-item.e-ie-resize-width span {
|
|
261
|
-
font-size: 16px;
|
|
262
|
-
}
|
|
263
|
-
.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,
|
|
264
|
-
.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 {
|
|
265
|
-
font-size: 20px;
|
|
266
|
-
}
|
|
267
|
-
.e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn .e-icons.e-btn-icon,
|
|
268
|
-
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn .e-icons.e-btn-icon {
|
|
269
|
-
font-size: 20px;
|
|
270
|
-
}
|
|
271
|
-
.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,
|
|
272
|
-
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-fill.e-template .e-dropdown-btn .e-icons.e-caret,
|
|
273
|
-
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-stroke.e-template .e-dropdown-btn .e-icons.e-caret,
|
|
274
|
-
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-frame-stroke.e-template .e-dropdown-btn .e-icons.e-caret,
|
|
275
|
-
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-pen-stroke-color.e-template .e-dropdown-btn .e-icons.e-caret,
|
|
276
|
-
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-text-font-color.e-template .e-dropdown-btn .e-icons.e-caret,
|
|
277
|
-
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-save.e-template .e-dropdown-btn .e-icons.e-caret {
|
|
278
|
-
font-size: 20px;
|
|
279
|
-
}
|
|
280
|
-
.e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-text-font-color.e-template .e-dropdown-btn .e-icons.e-caret,
|
|
281
|
-
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-text-font-color.e-template .e-dropdown-btn .e-icons.e-caret {
|
|
282
|
-
margin-top: -4px;
|
|
283
|
-
}
|
|
284
|
-
.e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-btn-icon.e-dropdownbtn-preview,
|
|
285
|
-
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-btn-icon.e-dropdownbtn-preview {
|
|
286
|
-
margin-top: -4px !important; /* stylelint-disable-line declaration-no-important */
|
|
287
|
-
margin-left: -4px;
|
|
288
|
-
}
|
|
289
|
-
.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,
|
|
290
|
-
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-select,
|
|
291
|
-
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-annotation,
|
|
292
|
-
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-transform {
|
|
293
|
-
font-size: 20px;
|
|
294
|
-
}
|
|
295
|
-
.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,
|
|
296
|
-
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-select .e-icons.e-caret,
|
|
297
|
-
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-annotation .e-icons.e-caret,
|
|
298
|
-
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-transform .e-icons.e-caret {
|
|
299
|
-
font-size: 10px;
|
|
300
|
-
}
|
|
301
|
-
.e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn .e-save,
|
|
302
|
-
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-dropdown-btn .e-save {
|
|
303
|
-
font-size: 20px;
|
|
304
|
-
}
|
|
305
|
-
.e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn .e-save .e-icons.e-caret,
|
|
306
|
-
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-dropdown-btn .e-save .e-icons.e-caret {
|
|
307
|
-
font-size: 10px;
|
|
308
|
-
}
|
|
309
|
-
.e-bigger .e-image-editor .e-toolbar .e-toolbar-items.e-tbar-pos .e-toolbar-left,
|
|
310
|
-
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items.e-tbar-pos .e-toolbar-left {
|
|
311
|
-
line-height: 1;
|
|
312
|
-
}
|
|
313
246
|
.e-image-editor {
|
|
314
247
|
border: 1px solid #292827;
|
|
315
248
|
position: relative;
|
|
@@ -386,7 +319,7 @@
|
|
|
386
319
|
.e-image-editor .e-toolbar .e-toolbar-items .e-image-upload .e-image-upload .e-upload {
|
|
387
320
|
border: none;
|
|
388
321
|
}
|
|
389
|
-
.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 {
|
|
322
|
+
.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 {
|
|
390
323
|
font-size: 18px;
|
|
391
324
|
}
|
|
392
325
|
.e-image-editor .e-toolbar .e-toolbar-items .e-text-font-color.e-template .e-dropdown-btn .e-icons.e-caret {
|
|
@@ -468,13 +401,10 @@
|
|
|
468
401
|
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item {
|
|
469
402
|
height: auto !important; /* stylelint-disable-line declaration-no-important */
|
|
470
403
|
}
|
|
471
|
-
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item .filterwrapper, .e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item .filter-wrapper {
|
|
404
|
+
.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 {
|
|
472
405
|
border: 2px solid transparent;
|
|
473
406
|
height: 100px;
|
|
474
407
|
}
|
|
475
|
-
.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 {
|
|
476
|
-
border-top: 2px solid;
|
|
477
|
-
}
|
|
478
408
|
.e-image-editor .e-contextual-toolbar-wrapper .e-slider-container {
|
|
479
409
|
margin-left: calc(50% - 137px);
|
|
480
410
|
height: 54px !important; /* stylelint-disable-line declaration-no-important */
|
|
@@ -526,10 +456,6 @@
|
|
|
526
456
|
top: calc(50% - 14px) !important; /* stylelint-disable-line declaration-no-important */
|
|
527
457
|
}
|
|
528
458
|
|
|
529
|
-
.e-bigger .e-straighten .e-control-wrapper.e-slider-container .e-slider .e-handle {
|
|
530
|
-
top: calc(50% - 8px) !important; /* stylelint-disable-line declaration-no-important */
|
|
531
|
-
}
|
|
532
|
-
|
|
533
459
|
.e-dropdown-popup.e-ie-crop-ddb-popup ul {
|
|
534
460
|
max-height: 250px;
|
|
535
461
|
overflow-y: auto;
|
|
@@ -671,10 +597,6 @@
|
|
|
671
597
|
margin-left: calc(100% - 155px) !important; /* stylelint-disable-line declaration-no-important */
|
|
672
598
|
}
|
|
673
599
|
|
|
674
|
-
.e-bigger .e-ie-save-dialog .e-ie-img-save-name {
|
|
675
|
-
width: calc(71% - 30px) !important; /* stylelint-disable-line declaration-no-important */
|
|
676
|
-
}
|
|
677
|
-
|
|
678
600
|
.e-device.e-ie-save-dialog .e-ie-img-save-name {
|
|
679
601
|
width: calc(71% - 30px) !important; /* stylelint-disable-line declaration-no-important */
|
|
680
602
|
width: calc(71% - 33px) !important; /* stylelint-disable-line declaration-no-important */
|
|
@@ -688,31 +610,11 @@
|
|
|
688
610
|
margin-bottom: 5px;
|
|
689
611
|
}
|
|
690
612
|
|
|
691
|
-
.e-bigger .e-image-editor .e-dlg-container .e-dialog,
|
|
692
|
-
.e-bigger.e-image-editor .e-dlg-container .e-dialog {
|
|
693
|
-
width: 656px;
|
|
694
|
-
}
|
|
695
|
-
|
|
696
|
-
.e-bigger .e-ie-img-save-dlg {
|
|
697
|
-
width: 106px;
|
|
698
|
-
}
|
|
699
|
-
|
|
700
|
-
.e-bigger .e-image-editor .e-control-wrapper.e-slider-container.e-horizontal,
|
|
701
|
-
.e-bigger.e-image-editor .e-control-wrapper.e-slider-container.e-horizontal {
|
|
702
|
-
width: 217px;
|
|
703
|
-
}
|
|
704
|
-
|
|
705
613
|
.e-ie-quality-option-container .e-btn-group .e-btn {
|
|
706
614
|
padding-left: 11.9px;
|
|
707
615
|
padding-right: 11.9px;
|
|
708
616
|
}
|
|
709
617
|
|
|
710
|
-
.e-bigger .e-dialog.e-blr-ie-save-dialog:not(.e-device) {
|
|
711
|
-
width: 656px !important; /* stylelint-disable-line declaration-no-important */
|
|
712
|
-
}
|
|
713
|
-
.e-bigger .e-dialog.e-blr-ie-save-dialog:not(.e-device) .e-ie-img-icon-button {
|
|
714
|
-
padding: 4px 15px;
|
|
715
|
-
}
|
|
716
618
|
.e-blr-ie-save-dialog .e-ie-img-save-name {
|
|
717
619
|
width: calc(67% - 13px);
|
|
718
620
|
}
|
|
@@ -748,9 +650,34 @@
|
|
|
748
650
|
.e-blr-ie-save-dialog.e-device .e-btn-group .e-btn {
|
|
749
651
|
padding: 7px 10px;
|
|
750
652
|
}
|
|
751
|
-
.e-
|
|
752
|
-
|
|
753
|
-
|
|
653
|
+
.e-ie-straighten-value-span {
|
|
654
|
+
margin-left: 7px !important; /* stylelint-disable-line declaration-no-important */
|
|
655
|
+
}
|
|
656
|
+
|
|
657
|
+
.e-device.e-image-editor .e-ie-straighten-value-span {
|
|
658
|
+
margin-left: 15px !important; /* stylelint-disable-line declaration-no-important */
|
|
659
|
+
}
|
|
660
|
+
|
|
661
|
+
@media only screen and (max-width: 390px) {
|
|
662
|
+
.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 {
|
|
663
|
+
padding-left: 6px;
|
|
664
|
+
padding-right: 6px;
|
|
665
|
+
}
|
|
666
|
+
.e-device.e-image-editor .e-ie-save-dialog .e-dialog .e-dlg-content .e-ie-dlg-right-content .e-ie-img-save-name {
|
|
667
|
+
width: calc(64% - 30px) !important; /* stylelint-disable-line declaration-no-important */
|
|
668
|
+
}
|
|
669
|
+
}
|
|
670
|
+
.e-device.e-image-editor .e-contextual-toolbar-wrapper .e-ie-finetune-slider-label {
|
|
671
|
+
left: calc(50% - 145px) !important; /* stylelint-disable-line declaration-no-important */
|
|
672
|
+
}
|
|
673
|
+
|
|
674
|
+
.e-device.e-image-editor .e-contextual-toolbar-wrapper .e-slider-container {
|
|
675
|
+
width: 170px !important; /* stylelint-disable-line declaration-no-important */
|
|
676
|
+
margin-left: calc(50% - 62px) !important; /* stylelint-disable-line declaration-no-important */
|
|
677
|
+
}
|
|
678
|
+
|
|
679
|
+
.e-device.e-image-editor .e-contextual-toolbar-wrapper .e-ie-finetune-value-span {
|
|
680
|
+
margin-left: 10px !important; /* stylelint-disable-line declaration-no-important */
|
|
754
681
|
}
|
|
755
682
|
|
|
756
683
|
.e-image-editor {
|
|
@@ -759,8 +686,11 @@
|
|
|
759
686
|
.e-image-editor .e-contextual-toolbar-wrapper {
|
|
760
687
|
background: #252423;
|
|
761
688
|
}
|
|
762
|
-
.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 {
|
|
763
|
-
border-color: #292827;
|
|
689
|
+
.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 {
|
|
690
|
+
border-color: #292827 !important; /* stylelint-disable-line declaration-no-important */
|
|
691
|
+
}
|
|
692
|
+
.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 {
|
|
693
|
+
border-color: #292827 !important; /* stylelint-disable-line declaration-no-important */
|
|
764
694
|
}
|
|
765
695
|
.e-image-editor .e-toolbar .e-toolbar-items .e-tbar-btn.e-btn .e-icons {
|
|
766
696
|
color: #a19f9d;
|
|
@@ -812,14 +742,123 @@
|
|
|
812
742
|
background: transparent url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iNnB4IiBoZWlnaHQ9IjZweCIgdmlld0JveD0iMCAwIDYgNiIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4KICAgIDwhLS0gR2VuZXJhdG9yOiBTa2V0Y2ggNTAgKDU0OTgzKSAtIGh0dHA6Ly93d3cuYm9oZW1pYW5jb2RpbmcuY29tL3NrZXRjaCAtLT4KICAgIDx0aXRsZT5Hcm91cCA5PC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGRlZnM+PC9kZWZzPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9Ikdyb3VwLTkiPgogICAgICAgICAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlLTExIiBmaWxsPSIjRTBFMEUwIiB4PSIwIiB5PSIwIiB3aWR0aD0iMyIgaGVpZ2h0PSIzIj48L3JlY3Q+CiAgICAgICAgICAgIDxyZWN0IGlkPSJSZWN0YW5nbGUtMTEtQ29weS0yIiBmaWxsPSIjRkZGRkZGIiB4PSIwIiB5PSIzIiB3aWR0aD0iMyIgaGVpZ2h0PSIzIj48L3JlY3Q+CiAgICAgICAgICAgIDxyZWN0IGlkPSJSZWN0YW5nbGUtMTEtQ29weSIgZmlsbD0iI0ZGRkZGRiIgeD0iMyIgeT0iMCIgd2lkdGg9IjMiIGhlaWdodD0iMyI+PC9yZWN0PgogICAgICAgICAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlLTExLUNvcHktMyIgZmlsbD0iI0UwRTBFMCIgeD0iMyIgeT0iMyIgd2lkdGg9IjMiIGhlaWdodD0iMyI+PC9yZWN0PgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+") !important; /* stylelint-disable-line declaration-no-important */
|
|
813
743
|
background-size: 8px !important; /* stylelint-disable-line declaration-no-important */
|
|
814
744
|
}
|
|
745
|
+
.e-image-editor .e-toolbar .e-toolbar-items .e-toolbar-item.e-overlay .e-btn {
|
|
746
|
+
-webkit-box-shadow: none !important;
|
|
747
|
+
box-shadow: none !important; /* stylelint-disable-line declaration-no-important */
|
|
748
|
+
}
|
|
815
749
|
|
|
816
750
|
.e-dropdown-popup .e-selected-btn {
|
|
817
751
|
background: #323130 !important; /* stylelint-disable-line declaration-no-important */
|
|
818
752
|
}
|
|
819
|
-
|
|
820
753
|
.e-ie-filter-canvas:focus,
|
|
821
754
|
.filter-wrapper:focus .e-ie-filter-canvas,
|
|
822
755
|
.filter-wrapper:focus canvas,
|
|
823
756
|
.filter-wrapper canvas:focus {
|
|
824
|
-
border:
|
|
757
|
+
border-color: #fff !important; /* stylelint-disable-line declaration-no-important */
|
|
758
|
+
}
|
|
759
|
+
|
|
760
|
+
.e-bigger .e-image-editor .e-contextual-toolbar-wrapper .e-slider-container .e-slider .e-handle,
|
|
761
|
+
.e-image-editor.e-bigger .e-contextual-toolbar-wrapper .e-slider-container .e-slider .e-handle {
|
|
762
|
+
top: calc(50% - 8px) !important; /* stylelint-disable-line declaration-no-important */
|
|
763
|
+
}
|
|
764
|
+
.e-bigger .e-image-editor .e-contextual-toolbar-wrapper .e-toolbar,
|
|
765
|
+
.e-image-editor.e-bigger .e-contextual-toolbar-wrapper .e-toolbar {
|
|
766
|
+
height: 130px !important; /* stylelint-disable-line declaration-no-important */
|
|
767
|
+
}
|
|
768
|
+
.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,
|
|
769
|
+
.e-image-editor.e-bigger .e-contextual-toolbar-wrapper .e-frame-wrapper .e-toolbar,
|
|
770
|
+
.e-image-editor.e-bigger .e-contextual-toolbar-wrapper.e-frame-wrapper .e-toolbar {
|
|
771
|
+
height: inherit !important; /* stylelint-disable-line declaration-no-important */
|
|
772
|
+
}
|
|
773
|
+
.e-bigger .e-image-editor .e-toolbar,
|
|
774
|
+
.e-image-editor.e-bigger .e-toolbar {
|
|
775
|
+
height: 48px !important; /* stylelint-disable-line declaration-no-important */
|
|
776
|
+
min-height: 48px !important; /* stylelint-disable-line declaration-no-important */
|
|
777
|
+
}
|
|
778
|
+
.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,
|
|
779
|
+
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-toolbar-item.e-ie-resize-height span,
|
|
780
|
+
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-toolbar-item.e-ie-resize-width span {
|
|
781
|
+
font-size: 16px;
|
|
782
|
+
}
|
|
783
|
+
.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,
|
|
784
|
+
.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 {
|
|
785
|
+
font-size: 20px;
|
|
786
|
+
}
|
|
787
|
+
.e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn .e-icons.e-btn-icon,
|
|
788
|
+
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn .e-icons.e-btn-icon {
|
|
789
|
+
font-size: 20px;
|
|
790
|
+
}
|
|
791
|
+
.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,
|
|
792
|
+
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-fill.e-template .e-dropdown-btn .e-icons.e-caret,
|
|
793
|
+
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-stroke.e-template .e-dropdown-btn .e-icons.e-caret,
|
|
794
|
+
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-frame-stroke.e-template .e-dropdown-btn .e-icons.e-caret,
|
|
795
|
+
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-pen-stroke-color.e-template .e-dropdown-btn .e-icons.e-caret,
|
|
796
|
+
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-text-font-color.e-template .e-dropdown-btn .e-icons.e-caret,
|
|
797
|
+
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-save.e-template .e-dropdown-btn .e-icons.e-caret {
|
|
798
|
+
font-size: 20px;
|
|
799
|
+
}
|
|
800
|
+
.e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-text-font-color.e-template .e-dropdown-btn .e-icons.e-caret,
|
|
801
|
+
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-text-font-color.e-template .e-dropdown-btn .e-icons.e-caret {
|
|
802
|
+
margin-top: -4px;
|
|
803
|
+
}
|
|
804
|
+
.e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-btn-icon.e-dropdownbtn-preview,
|
|
805
|
+
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-btn-icon.e-dropdownbtn-preview {
|
|
806
|
+
margin-top: -4px !important; /* stylelint-disable-line declaration-no-important */
|
|
807
|
+
margin-left: -4px;
|
|
808
|
+
}
|
|
809
|
+
.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,
|
|
810
|
+
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-select,
|
|
811
|
+
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-annotation,
|
|
812
|
+
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-transform {
|
|
813
|
+
font-size: 20px;
|
|
814
|
+
}
|
|
815
|
+
.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,
|
|
816
|
+
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-select .e-icons.e-caret,
|
|
817
|
+
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-annotation .e-icons.e-caret,
|
|
818
|
+
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-transform .e-icons.e-caret {
|
|
819
|
+
font-size: 10px;
|
|
820
|
+
}
|
|
821
|
+
.e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn .e-save,
|
|
822
|
+
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-dropdown-btn .e-save {
|
|
823
|
+
font-size: 20px;
|
|
824
|
+
}
|
|
825
|
+
.e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn .e-save .e-icons.e-caret,
|
|
826
|
+
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-dropdown-btn .e-save .e-icons.e-caret {
|
|
827
|
+
font-size: 10px;
|
|
828
|
+
}
|
|
829
|
+
.e-bigger .e-image-editor .e-toolbar .e-toolbar-items.e-tbar-pos .e-toolbar-left,
|
|
830
|
+
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items.e-tbar-pos .e-toolbar-left {
|
|
831
|
+
line-height: 1;
|
|
832
|
+
}
|
|
833
|
+
.e-bigger .e-straighten .e-control-wrapper.e-slider-container .e-slider .e-handle {
|
|
834
|
+
top: calc(50% - 8px) !important; /* stylelint-disable-line declaration-no-important */
|
|
835
|
+
}
|
|
836
|
+
|
|
837
|
+
.e-bigger .e-ie-save-dialog .e-ie-img-save-name {
|
|
838
|
+
width: calc(71% - 30px) !important; /* stylelint-disable-line declaration-no-important */
|
|
839
|
+
}
|
|
840
|
+
|
|
841
|
+
.e-bigger .e-image-editor .e-dlg-container .e-dialog,
|
|
842
|
+
.e-bigger.e-image-editor .e-dlg-container .e-dialog {
|
|
843
|
+
width: 656px;
|
|
844
|
+
}
|
|
845
|
+
|
|
846
|
+
.e-bigger .e-ie-img-save-dlg {
|
|
847
|
+
width: 100px;
|
|
848
|
+
}
|
|
849
|
+
|
|
850
|
+
.e-bigger .e-image-editor .e-control-wrapper.e-slider-container.e-horizontal,
|
|
851
|
+
.e-bigger.e-image-editor .e-control-wrapper.e-slider-container.e-horizontal {
|
|
852
|
+
width: 217px;
|
|
853
|
+
}
|
|
854
|
+
|
|
855
|
+
.e-bigger .e-dialog.e-blr-ie-save-dialog:not(.e-device) {
|
|
856
|
+
width: 656px !important; /* stylelint-disable-line declaration-no-important */
|
|
857
|
+
}
|
|
858
|
+
.e-bigger .e-dialog.e-blr-ie-save-dialog:not(.e-device) .e-ie-img-icon-button {
|
|
859
|
+
padding: 4px 15px;
|
|
860
|
+
}
|
|
861
|
+
.e-bigger .e-ie-save-dialog .e-ie-img-save-name {
|
|
862
|
+
width: calc(71% - 30px) !important; /* stylelint-disable-line declaration-no-important */
|
|
863
|
+
width: calc(68% - 30px) !important; /* stylelint-disable-line declaration-no-important */
|
|
825
864
|
}
|