@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
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
@import 'ej2-base/styles/definition/highcontrast.scss';
|
|
2
|
+
@import 'ej2-buttons/styles/button/highcontrast-definition.scss';
|
|
3
|
+
@import 'ej2-splitbuttons/styles/drop-down-button/highcontrast-definition.scss';
|
|
4
|
+
@import 'ej2-inputs/styles/numerictextbox/highcontrast-definition.scss';
|
|
5
|
+
@import 'ej2-inputs/styles/textbox/highcontrast-definition.scss';
|
|
6
|
+
@import 'ej2-inputs/styles/uploader/highcontrast-definition.scss';
|
|
7
|
+
@import 'ej2-popups/styles/tooltip/highcontrast-definition.scss';
|
|
8
|
+
@import 'ej2-inputs/styles/color-picker/highcontrast-definition.scss';
|
|
9
|
+
@import 'ej2-navigations/styles/toolbar/highcontrast-definition.scss';
|
|
10
|
+
@import 'ej2-popups/styles/spinner/highcontrast-definition.scss';
|
|
11
|
+
@import 'image-editor/highcontrast-definition.scss';
|
|
12
|
+
@import 'image-editor/icons/highcontrast.scss';
|
|
13
|
+
@import 'image-editor/all.scss';
|
package/styles/highcontrast.css
CHANGED
|
@@ -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: "\eb6e";
|
|
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: "\e9da";
|
|
93
|
+
}
|
|
91
94
|
|
|
92
95
|
.e-image-editor .e-custom::before,
|
|
93
96
|
.e-dropdown-popup.e-image-popup .e-custom::before {
|
|
@@ -236,70 +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% - 8px) !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: 48px !important; /* stylelint-disable-line declaration-no-important */
|
|
246
|
-
min-height: 48px !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
|
-
font-size: 18px;
|
|
256
|
-
}
|
|
257
|
-
.e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn .e-icons.e-btn-icon,
|
|
258
|
-
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn .e-icons.e-btn-icon {
|
|
259
|
-
font-size: 18px;
|
|
260
|
-
}
|
|
261
|
-
.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,
|
|
262
|
-
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-fill.e-template .e-dropdown-btn .e-icons.e-caret,
|
|
263
|
-
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-stroke.e-template .e-dropdown-btn .e-icons.e-caret,
|
|
264
|
-
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-frame-stroke.e-template .e-dropdown-btn .e-icons.e-caret,
|
|
265
|
-
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-pen-stroke-color.e-template .e-dropdown-btn .e-icons.e-caret,
|
|
266
|
-
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-text-font-color.e-template .e-dropdown-btn .e-icons.e-caret,
|
|
267
|
-
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-save.e-template .e-dropdown-btn .e-icons.e-caret {
|
|
268
|
-
font-size: 18px;
|
|
269
|
-
}
|
|
270
|
-
.e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-text-font-color.e-template .e-dropdown-btn .e-icons.e-caret,
|
|
271
|
-
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-text-font-color.e-template .e-dropdown-btn .e-icons.e-caret {
|
|
272
|
-
margin-top: -4px;
|
|
273
|
-
}
|
|
274
|
-
.e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-btn-icon.e-dropdownbtn-preview,
|
|
275
|
-
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-btn-icon.e-dropdownbtn-preview {
|
|
276
|
-
margin-top: -4px !important; /* stylelint-disable-line declaration-no-important */
|
|
277
|
-
margin-left: -1px;
|
|
278
|
-
}
|
|
279
|
-
.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,
|
|
280
|
-
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-select,
|
|
281
|
-
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-annotation,
|
|
282
|
-
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-transform {
|
|
283
|
-
font-size: 18px;
|
|
284
|
-
}
|
|
285
|
-
.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,
|
|
286
|
-
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-select .e-icons.e-caret,
|
|
287
|
-
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-annotation .e-icons.e-caret,
|
|
288
|
-
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-transform .e-icons.e-caret {
|
|
289
|
-
font-size: 10px;
|
|
290
|
-
}
|
|
291
|
-
.e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn .e-save,
|
|
292
|
-
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-dropdown-btn .e-save {
|
|
293
|
-
font-size: 18px;
|
|
294
|
-
}
|
|
295
|
-
.e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn .e-save .e-icons.e-caret,
|
|
296
|
-
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-dropdown-btn .e-save .e-icons.e-caret {
|
|
297
|
-
font-size: 10px;
|
|
298
|
-
}
|
|
299
|
-
.e-bigger .e-image-editor .e-toolbar .e-toolbar-items.e-tbar-pos .e-toolbar-left,
|
|
300
|
-
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items.e-tbar-pos .e-toolbar-left {
|
|
301
|
-
line-height: 1;
|
|
302
|
-
}
|
|
303
242
|
.e-image-editor {
|
|
304
243
|
border: 1px solid #fff;
|
|
305
244
|
position: relative;
|
|
@@ -378,7 +317,7 @@
|
|
|
378
317
|
.e-image-editor .e-toolbar .e-toolbar-items .e-image-upload .e-image-upload .e-upload {
|
|
379
318
|
border: none;
|
|
380
319
|
}
|
|
381
|
-
.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 {
|
|
320
|
+
.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 {
|
|
382
321
|
font-size: 16px;
|
|
383
322
|
}
|
|
384
323
|
.e-image-editor .e-toolbar .e-toolbar-items .e-text-font-color.e-template .e-dropdown-btn .e-icons.e-caret {
|
|
@@ -460,13 +399,10 @@
|
|
|
460
399
|
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item {
|
|
461
400
|
height: auto !important; /* stylelint-disable-line declaration-no-important */
|
|
462
401
|
}
|
|
463
|
-
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item .filterwrapper, .e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item .filter-wrapper {
|
|
402
|
+
.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 {
|
|
464
403
|
border: 2px solid transparent;
|
|
465
404
|
height: 100px;
|
|
466
405
|
}
|
|
467
|
-
.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 {
|
|
468
|
-
border-top: 2px solid;
|
|
469
|
-
}
|
|
470
406
|
.e-image-editor .e-contextual-toolbar-wrapper .e-slider-container {
|
|
471
407
|
margin-left: calc(50% - 137px);
|
|
472
408
|
height: 54px !important; /* stylelint-disable-line declaration-no-important */
|
|
@@ -518,10 +454,6 @@
|
|
|
518
454
|
top: calc(50% - 14px) !important; /* stylelint-disable-line declaration-no-important */
|
|
519
455
|
}
|
|
520
456
|
|
|
521
|
-
.e-bigger .e-straighten .e-control-wrapper.e-slider-container .e-slider .e-handle {
|
|
522
|
-
top: calc(50% - 8px) !important; /* stylelint-disable-line declaration-no-important */
|
|
523
|
-
}
|
|
524
|
-
|
|
525
457
|
.e-dropdown-popup.e-ie-crop-ddb-popup ul {
|
|
526
458
|
max-height: 250px;
|
|
527
459
|
overflow-y: auto;
|
|
@@ -663,10 +595,6 @@
|
|
|
663
595
|
margin-left: calc(100% - 135px) !important; /* stylelint-disable-line declaration-no-important */
|
|
664
596
|
}
|
|
665
597
|
|
|
666
|
-
.e-bigger .e-ie-save-dialog .e-ie-img-save-name {
|
|
667
|
-
width: calc(71% - 30px) !important; /* stylelint-disable-line declaration-no-important */
|
|
668
|
-
}
|
|
669
|
-
|
|
670
598
|
.e-device.e-ie-save-dialog .e-ie-img-save-name {
|
|
671
599
|
width: calc(71% - 30px) !important; /* stylelint-disable-line declaration-no-important */
|
|
672
600
|
width: calc(71% - 33px) !important; /* stylelint-disable-line declaration-no-important */
|
|
@@ -680,31 +608,11 @@
|
|
|
680
608
|
margin-bottom: 5px;
|
|
681
609
|
}
|
|
682
610
|
|
|
683
|
-
.e-bigger .e-image-editor .e-dlg-container .e-dialog,
|
|
684
|
-
.e-bigger.e-image-editor .e-dlg-container .e-dialog {
|
|
685
|
-
width: 656px;
|
|
686
|
-
}
|
|
687
|
-
|
|
688
|
-
.e-bigger .e-ie-img-save-dlg {
|
|
689
|
-
width: 106px;
|
|
690
|
-
}
|
|
691
|
-
|
|
692
|
-
.e-bigger .e-image-editor .e-control-wrapper.e-slider-container.e-horizontal,
|
|
693
|
-
.e-bigger.e-image-editor .e-control-wrapper.e-slider-container.e-horizontal {
|
|
694
|
-
width: 217px;
|
|
695
|
-
}
|
|
696
|
-
|
|
697
611
|
.e-ie-quality-option-container .e-btn-group .e-btn {
|
|
698
612
|
padding-left: 13px;
|
|
699
613
|
padding-right: 13px;
|
|
700
614
|
}
|
|
701
615
|
|
|
702
|
-
.e-bigger .e-dialog.e-blr-ie-save-dialog:not(.e-device) {
|
|
703
|
-
width: 625px !important; /* stylelint-disable-line declaration-no-important */
|
|
704
|
-
}
|
|
705
|
-
.e-bigger .e-dialog.e-blr-ie-save-dialog:not(.e-device) .e-ie-img-icon-button {
|
|
706
|
-
padding: 2px 11px;
|
|
707
|
-
}
|
|
708
616
|
.e-blr-ie-save-dialog .e-ie-img-save-name {
|
|
709
617
|
width: calc(67% - 13px);
|
|
710
618
|
}
|
|
@@ -740,9 +648,34 @@
|
|
|
740
648
|
.e-blr-ie-save-dialog.e-device .e-btn-group .e-btn {
|
|
741
649
|
padding: 3px 9px;
|
|
742
650
|
}
|
|
743
|
-
.e-
|
|
744
|
-
|
|
745
|
-
|
|
651
|
+
.e-ie-straighten-value-span {
|
|
652
|
+
margin-left: 7px !important; /* stylelint-disable-line declaration-no-important */
|
|
653
|
+
}
|
|
654
|
+
|
|
655
|
+
.e-device.e-image-editor .e-ie-straighten-value-span {
|
|
656
|
+
margin-left: 15px !important; /* stylelint-disable-line declaration-no-important */
|
|
657
|
+
}
|
|
658
|
+
|
|
659
|
+
@media only screen and (max-width: 390px) {
|
|
660
|
+
.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 {
|
|
661
|
+
padding-left: 7px;
|
|
662
|
+
padding-right: 7px;
|
|
663
|
+
}
|
|
664
|
+
.e-device.e-image-editor .e-ie-save-dialog .e-dialog .e-dlg-content .e-ie-dlg-right-content .e-ie-img-save-name {
|
|
665
|
+
width: calc(64% - 30px) !important; /* stylelint-disable-line declaration-no-important */
|
|
666
|
+
}
|
|
667
|
+
}
|
|
668
|
+
.e-device.e-image-editor .e-contextual-toolbar-wrapper .e-ie-finetune-slider-label {
|
|
669
|
+
left: calc(50% - 145px) !important; /* stylelint-disable-line declaration-no-important */
|
|
670
|
+
}
|
|
671
|
+
|
|
672
|
+
.e-device.e-image-editor .e-contextual-toolbar-wrapper .e-slider-container {
|
|
673
|
+
width: 170px !important; /* stylelint-disable-line declaration-no-important */
|
|
674
|
+
margin-left: calc(50% - 62px) !important; /* stylelint-disable-line declaration-no-important */
|
|
675
|
+
}
|
|
676
|
+
|
|
677
|
+
.e-device.e-image-editor .e-contextual-toolbar-wrapper .e-ie-finetune-value-span {
|
|
678
|
+
margin-left: 10px !important; /* stylelint-disable-line declaration-no-important */
|
|
746
679
|
}
|
|
747
680
|
|
|
748
681
|
.e-image-editor {
|
|
@@ -751,8 +684,11 @@
|
|
|
751
684
|
.e-image-editor .e-contextual-toolbar-wrapper {
|
|
752
685
|
background: #000;
|
|
753
686
|
}
|
|
754
|
-
.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 {
|
|
755
|
-
border-color: #ffd939;
|
|
687
|
+
.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 {
|
|
688
|
+
border-color: #ffd939 !important; /* stylelint-disable-line declaration-no-important */
|
|
689
|
+
}
|
|
690
|
+
.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 {
|
|
691
|
+
border-color: #ffd939 !important; /* stylelint-disable-line declaration-no-important */
|
|
756
692
|
}
|
|
757
693
|
.e-image-editor .e-toolbar .e-toolbar-items .e-tbar-btn.e-btn .e-icons {
|
|
758
694
|
color: #fff;
|
|
@@ -804,10 +740,120 @@
|
|
|
804
740
|
background: transparent url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iNnB4IiBoZWlnaHQ9IjZweCIgdmlld0JveD0iMCAwIDYgNiIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4KICAgIDwhLS0gR2VuZXJhdG9yOiBTa2V0Y2ggNTAgKDU0OTgzKSAtIGh0dHA6Ly93d3cuYm9oZW1pYW5jb2RpbmcuY29tL3NrZXRjaCAtLT4KICAgIDx0aXRsZT5Hcm91cCA5PC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGRlZnM+PC9kZWZzPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9Ikdyb3VwLTkiPgogICAgICAgICAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlLTExIiBmaWxsPSIjRTBFMEUwIiB4PSIwIiB5PSIwIiB3aWR0aD0iMyIgaGVpZ2h0PSIzIj48L3JlY3Q+CiAgICAgICAgICAgIDxyZWN0IGlkPSJSZWN0YW5nbGUtMTEtQ29weS0yIiBmaWxsPSIjRkZGRkZGIiB4PSIwIiB5PSIzIiB3aWR0aD0iMyIgaGVpZ2h0PSIzIj48L3JlY3Q+CiAgICAgICAgICAgIDxyZWN0IGlkPSJSZWN0YW5nbGUtMTEtQ29weSIgZmlsbD0iI0ZGRkZGRiIgeD0iMyIgeT0iMCIgd2lkdGg9IjMiIGhlaWdodD0iMyI+PC9yZWN0PgogICAgICAgICAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlLTExLUNvcHktMyIgZmlsbD0iI0UwRTBFMCIgeD0iMyIgeT0iMyIgd2lkdGg9IjMiIGhlaWdodD0iMyI+PC9yZWN0PgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+") !important; /* stylelint-disable-line declaration-no-important */
|
|
805
741
|
background-size: 8px !important; /* stylelint-disable-line declaration-no-important */
|
|
806
742
|
}
|
|
743
|
+
.e-image-editor .e-toolbar .e-toolbar-items .e-toolbar-item.e-overlay .e-btn {
|
|
744
|
+
-webkit-box-shadow: none !important;
|
|
745
|
+
box-shadow: none !important; /* stylelint-disable-line declaration-no-important */
|
|
746
|
+
}
|
|
807
747
|
|
|
808
748
|
.e-ie-filter-canvas:focus,
|
|
809
749
|
.filter-wrapper:focus .e-ie-filter-canvas,
|
|
810
750
|
.filter-wrapper:focus canvas,
|
|
811
751
|
.filter-wrapper canvas:focus {
|
|
812
|
-
border:
|
|
752
|
+
border-color: #fff !important; /* stylelint-disable-line declaration-no-important */
|
|
753
|
+
}
|
|
754
|
+
|
|
755
|
+
.e-bigger .e-image-editor .e-contextual-toolbar-wrapper .e-slider-container .e-slider .e-handle,
|
|
756
|
+
.e-image-editor.e-bigger .e-contextual-toolbar-wrapper .e-slider-container .e-slider .e-handle {
|
|
757
|
+
top: calc(50% - 8px) !important; /* stylelint-disable-line declaration-no-important */
|
|
758
|
+
}
|
|
759
|
+
.e-bigger .e-image-editor .e-contextual-toolbar-wrapper .e-toolbar,
|
|
760
|
+
.e-image-editor.e-bigger .e-contextual-toolbar-wrapper .e-toolbar {
|
|
761
|
+
height: 130px !important; /* stylelint-disable-line declaration-no-important */
|
|
762
|
+
}
|
|
763
|
+
.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,
|
|
764
|
+
.e-image-editor.e-bigger .e-contextual-toolbar-wrapper .e-frame-wrapper .e-toolbar,
|
|
765
|
+
.e-image-editor.e-bigger .e-contextual-toolbar-wrapper.e-frame-wrapper .e-toolbar {
|
|
766
|
+
height: inherit !important; /* stylelint-disable-line declaration-no-important */
|
|
767
|
+
}
|
|
768
|
+
.e-bigger .e-image-editor .e-toolbar,
|
|
769
|
+
.e-image-editor.e-bigger .e-toolbar {
|
|
770
|
+
height: 48px !important; /* stylelint-disable-line declaration-no-important */
|
|
771
|
+
min-height: 48px !important; /* stylelint-disable-line declaration-no-important */
|
|
772
|
+
}
|
|
773
|
+
.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,
|
|
774
|
+
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-toolbar-item.e-ie-resize-height span,
|
|
775
|
+
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-toolbar-item.e-ie-resize-width span {
|
|
776
|
+
font-size: 16px;
|
|
777
|
+
}
|
|
778
|
+
.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,
|
|
779
|
+
.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 {
|
|
780
|
+
font-size: 18px;
|
|
781
|
+
}
|
|
782
|
+
.e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn .e-icons.e-btn-icon,
|
|
783
|
+
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn .e-icons.e-btn-icon {
|
|
784
|
+
font-size: 18px;
|
|
785
|
+
}
|
|
786
|
+
.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,
|
|
787
|
+
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-fill.e-template .e-dropdown-btn .e-icons.e-caret,
|
|
788
|
+
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-stroke.e-template .e-dropdown-btn .e-icons.e-caret,
|
|
789
|
+
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-frame-stroke.e-template .e-dropdown-btn .e-icons.e-caret,
|
|
790
|
+
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-pen-stroke-color.e-template .e-dropdown-btn .e-icons.e-caret,
|
|
791
|
+
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-text-font-color.e-template .e-dropdown-btn .e-icons.e-caret,
|
|
792
|
+
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-save.e-template .e-dropdown-btn .e-icons.e-caret {
|
|
793
|
+
font-size: 18px;
|
|
794
|
+
}
|
|
795
|
+
.e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-text-font-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
|
+
margin-top: -4px;
|
|
798
|
+
}
|
|
799
|
+
.e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-btn-icon.e-dropdownbtn-preview,
|
|
800
|
+
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-btn-icon.e-dropdownbtn-preview {
|
|
801
|
+
margin-top: -4px !important; /* stylelint-disable-line declaration-no-important */
|
|
802
|
+
margin-left: -1px;
|
|
803
|
+
}
|
|
804
|
+
.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,
|
|
805
|
+
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-select,
|
|
806
|
+
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-annotation,
|
|
807
|
+
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-transform {
|
|
808
|
+
font-size: 18px;
|
|
809
|
+
}
|
|
810
|
+
.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,
|
|
811
|
+
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-select .e-icons.e-caret,
|
|
812
|
+
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-annotation .e-icons.e-caret,
|
|
813
|
+
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-transform .e-icons.e-caret {
|
|
814
|
+
font-size: 10px;
|
|
815
|
+
}
|
|
816
|
+
.e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn .e-save,
|
|
817
|
+
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-dropdown-btn .e-save {
|
|
818
|
+
font-size: 18px;
|
|
819
|
+
}
|
|
820
|
+
.e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn .e-save .e-icons.e-caret,
|
|
821
|
+
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-dropdown-btn .e-save .e-icons.e-caret {
|
|
822
|
+
font-size: 10px;
|
|
823
|
+
}
|
|
824
|
+
.e-bigger .e-image-editor .e-toolbar .e-toolbar-items.e-tbar-pos .e-toolbar-left,
|
|
825
|
+
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items.e-tbar-pos .e-toolbar-left {
|
|
826
|
+
line-height: 1;
|
|
827
|
+
}
|
|
828
|
+
.e-bigger .e-straighten .e-control-wrapper.e-slider-container .e-slider .e-handle {
|
|
829
|
+
top: calc(50% - 8px) !important; /* stylelint-disable-line declaration-no-important */
|
|
830
|
+
}
|
|
831
|
+
|
|
832
|
+
.e-bigger .e-ie-save-dialog .e-ie-img-save-name {
|
|
833
|
+
width: calc(71% - 30px) !important; /* stylelint-disable-line declaration-no-important */
|
|
834
|
+
}
|
|
835
|
+
|
|
836
|
+
.e-bigger .e-image-editor .e-dlg-container .e-dialog,
|
|
837
|
+
.e-bigger.e-image-editor .e-dlg-container .e-dialog {
|
|
838
|
+
width: 656px;
|
|
839
|
+
}
|
|
840
|
+
|
|
841
|
+
.e-bigger .e-ie-img-save-dlg {
|
|
842
|
+
width: 100px;
|
|
843
|
+
}
|
|
844
|
+
|
|
845
|
+
.e-bigger .e-image-editor .e-control-wrapper.e-slider-container.e-horizontal,
|
|
846
|
+
.e-bigger.e-image-editor .e-control-wrapper.e-slider-container.e-horizontal {
|
|
847
|
+
width: 217px;
|
|
848
|
+
}
|
|
849
|
+
|
|
850
|
+
.e-bigger .e-dialog.e-blr-ie-save-dialog:not(.e-device) {
|
|
851
|
+
width: 625px !important; /* stylelint-disable-line declaration-no-important */
|
|
852
|
+
}
|
|
853
|
+
.e-bigger .e-dialog.e-blr-ie-save-dialog:not(.e-device) .e-ie-img-icon-button {
|
|
854
|
+
padding: 2px 11px;
|
|
855
|
+
}
|
|
856
|
+
.e-bigger .e-ie-save-dialog .e-ie-img-save-name {
|
|
857
|
+
width: calc(71% - 30px) !important; /* stylelint-disable-line declaration-no-important */
|
|
858
|
+
width: calc(62% - 13px) !important; /* stylelint-disable-line declaration-no-important */
|
|
813
859
|
}
|
package/styles/highcontrast.scss
CHANGED
|
@@ -24,4 +24,6 @@ $image-editor-save-dlg-big-btn-pad: 0 10px !default;
|
|
|
24
24
|
$image-editor-save-dlg-grp-btn-padding: 0 12px !default;
|
|
25
25
|
$image-editor-save-dlg-dev-grp-btn-padding: 0 15px !default;
|
|
26
26
|
$image-editor-icon-button: 3px !default;
|
|
27
|
-
$image-editor-filter-canvas-focus:
|
|
27
|
+
$image-editor-filter-canvas-focus: $gray-25 !default;
|
|
28
|
+
$image-editor-button-label-mobile: 9px !default;
|
|
29
|
+
$image-editor-button-width-mobile: calc(65% - 30px) !default;
|
|
@@ -0,0 +1,216 @@
|
|
|
1
|
+
@include export-module('image-editor-bigger') {
|
|
2
|
+
.e-bigger .e-image-editor,
|
|
3
|
+
.e-image-editor.e-bigger {
|
|
4
|
+
& .e-contextual-toolbar-wrapper {
|
|
5
|
+
& .e-slider-container {
|
|
6
|
+
& .e-slider {
|
|
7
|
+
& .e-handle {
|
|
8
|
+
top: $image-editor-device-slider-handler !important; /* stylelint-disable-line declaration-no-important */
|
|
9
|
+
}
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
& .e-toolbar {
|
|
14
|
+
@if $skin-name == 'Material3' {
|
|
15
|
+
height: 140px !important; /* stylelint-disable-line declaration-no-important */
|
|
16
|
+
}
|
|
17
|
+
@else {
|
|
18
|
+
height: 130px !important; /* stylelint-disable-line declaration-no-important */
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
& .e-frame-wrapper .e-toolbar,
|
|
23
|
+
&.e-frame-wrapper .e-toolbar {
|
|
24
|
+
height: inherit !important; /* stylelint-disable-line declaration-no-important */
|
|
25
|
+
}
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
& .e-toolbar {
|
|
29
|
+
height: $image-editor-bigger-tbar-height !important; /* stylelint-disable-line declaration-no-important */
|
|
30
|
+
min-height: $image-editor-bigger-tbar-height !important; /* stylelint-disable-line declaration-no-important */
|
|
31
|
+
|
|
32
|
+
& .e-toolbar-items {
|
|
33
|
+
@if $skin-name == 'material' {
|
|
34
|
+
height: $image-editor-bigger-tbar-height !important; /* stylelint-disable-line declaration-no-important */
|
|
35
|
+
min-height: $image-editor-bigger-tbar-height !important; /* stylelint-disable-line declaration-no-important */
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
& .e-toolbar-items {
|
|
40
|
+
& .e-toolbar-item {
|
|
41
|
+
&.e-ie-resize-height span,
|
|
42
|
+
&.e-ie-resize-width span {
|
|
43
|
+
font-size: 16px;
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
& .e-toolbar-items {
|
|
48
|
+
& .e-toolbar-item {
|
|
49
|
+
& .e-tbar-btn.e-btn.e-tbtn-txt {
|
|
50
|
+
.e-icons.e-btn-icon {
|
|
51
|
+
@if $skin-name == 'fabric' or $skin-name == 'fabric-dark' or $skin-name == 'bootstrap' or $skin-name == 'bootstrap-dark' or $skin-name == 'boostrap4' {
|
|
52
|
+
padding: 0;
|
|
53
|
+
}
|
|
54
|
+
font-size: $image-editor-bigger-tbar-btn-fontsize;
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
& .e-tbar-btn.e-btn {
|
|
59
|
+
.e-icons.e-btn-icon {
|
|
60
|
+
font-size: $image-editor-bigger-tbar-btn-fontsize;
|
|
61
|
+
@if $skin-name == 'bootstrap5' or $skin-name == 'bootstrap5.3' or $skin-name == 'bootstrap5-dark' {
|
|
62
|
+
padding-top: 4px;
|
|
63
|
+
padding-bottom: 4px;
|
|
64
|
+
}
|
|
65
|
+
}
|
|
66
|
+
}
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
& .e-fill.e-template,
|
|
70
|
+
& .e-stroke.e-template,
|
|
71
|
+
& .e-frame-stroke.e-template,
|
|
72
|
+
& .e-pen-stroke-color.e-template,
|
|
73
|
+
& .e-text-font-color.e-template,
|
|
74
|
+
& .e-save.e-template {
|
|
75
|
+
& .e-dropdown-btn {
|
|
76
|
+
& .e-icons.e-caret {
|
|
77
|
+
font-size: $image-editor-bigger-tbar-btn-fontsize;
|
|
78
|
+
}
|
|
79
|
+
}
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
& .e-text-font-color.e-template {
|
|
83
|
+
& .e-dropdown-btn {
|
|
84
|
+
& .e-icons.e-caret {
|
|
85
|
+
margin-top: -4px;
|
|
86
|
+
}
|
|
87
|
+
}
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
& .e-btn-icon.e-dropdownbtn-preview {
|
|
91
|
+
margin-top: $image-editor-bigger-dropdown-btn-preview-top !important; /* stylelint-disable-line declaration-no-important */
|
|
92
|
+
margin-left: $image-editor-bigger-dropdown-btn-preview-left;
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
& .e-dropdown-btn.e-icon-btn {
|
|
96
|
+
@if $skin-name == 'Material3' {
|
|
97
|
+
padding: 7px 15px;
|
|
98
|
+
}
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
& .e-dropdown-btn.e-image-popup {
|
|
102
|
+
& .e-select,
|
|
103
|
+
& .e-annotation,
|
|
104
|
+
& .e-transform {
|
|
105
|
+
font-size: $image-editor-bigger-tbar-btn-fontsize;
|
|
106
|
+
|
|
107
|
+
& .e-icons.e-caret {
|
|
108
|
+
font-size: 10px;
|
|
109
|
+
}
|
|
110
|
+
}
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
& .e-dropdown-btn {
|
|
114
|
+
& .e-save {
|
|
115
|
+
font-size: $image-editor-bigger-tbar-btn-fontsize;
|
|
116
|
+
|
|
117
|
+
& .e-icons.e-caret {
|
|
118
|
+
font-size: 10px;
|
|
119
|
+
}
|
|
120
|
+
}
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
&.e-tbar-pos {
|
|
124
|
+
.e-toolbar-left {
|
|
125
|
+
line-height: 1;
|
|
126
|
+
}
|
|
127
|
+
}
|
|
128
|
+
}
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
& .e-ie-save-dialog .e-ie-img-save-dlg .e-btn {
|
|
132
|
+
@if $skin-name == 'Material3' {
|
|
133
|
+
margin-top: 5px !important; /* stylelint-disable-line declaration-no-important */
|
|
134
|
+
}
|
|
135
|
+
}
|
|
136
|
+
|
|
137
|
+
@if $skin-name == 'fluent2' {
|
|
138
|
+
& .e-dropdown-btn.e-ie-ddb-popup {
|
|
139
|
+
padding-left: 16px;
|
|
140
|
+
}
|
|
141
|
+
}
|
|
142
|
+
}
|
|
143
|
+
|
|
144
|
+
.e-bigger .e-straighten .e-control-wrapper.e-slider-container .e-slider .e-handle {
|
|
145
|
+
@if $skin-name == 'Material3' {
|
|
146
|
+
height: 22px !important; /* stylelint-disable-line declaration-no-important */
|
|
147
|
+
width: 22px !important; /* stylelint-disable-line declaration-no-important */
|
|
148
|
+
}
|
|
149
|
+
top: $image-editor-bigger-slider-handler !important; /* stylelint-disable-line declaration-no-important */
|
|
150
|
+
}
|
|
151
|
+
|
|
152
|
+
.e-bigger .e-ie-save-dialog .e-ie-img-save-name {
|
|
153
|
+
width: calc(71% - 30px) !important; /* stylelint-disable-line declaration-no-important */
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
.e-bigger .e-image-editor .e-dlg-container .e-dialog,
|
|
157
|
+
.e-bigger.e-image-editor .e-dlg-container .e-dialog {
|
|
158
|
+
width: 656px;
|
|
159
|
+
}
|
|
160
|
+
|
|
161
|
+
.e-bigger .e-ie-img-save-dlg {
|
|
162
|
+
width: 100px;
|
|
163
|
+
}
|
|
164
|
+
|
|
165
|
+
.e-bigger .e-image-editor .e-control-wrapper.e-slider-container.e-horizontal,
|
|
166
|
+
.e-bigger.e-image-editor .e-control-wrapper.e-slider-container.e-horizontal {
|
|
167
|
+
width: 217px;
|
|
168
|
+
}
|
|
169
|
+
|
|
170
|
+
.e-bigger .e-dialog.e-blr-ie-save-dialog:not(.e-device) {
|
|
171
|
+
@if $skin-name == 'FluentUI' {
|
|
172
|
+
width: 656px !important; /* stylelint-disable-line declaration-no-important */
|
|
173
|
+
}
|
|
174
|
+
@else if $skin-name == 'highcontrast' or $skin-name == 'tailwind' {
|
|
175
|
+
width: 625px !important; /* stylelint-disable-line declaration-no-important */
|
|
176
|
+
}
|
|
177
|
+
@else if $skin-name == 'fabric' or $skin-name == 'fabric-dark' {
|
|
178
|
+
width: 635px !important; /* stylelint-disable-line declaration-no-important */
|
|
179
|
+
}
|
|
180
|
+
@else {
|
|
181
|
+
width: 620px !important; /* stylelint-disable-line declaration-no-important */
|
|
182
|
+
}
|
|
183
|
+
|
|
184
|
+
& .e-ie-img-icon-button {
|
|
185
|
+
padding: $image-editor-save-dlg-big-btn-pad;
|
|
186
|
+
}
|
|
187
|
+
|
|
188
|
+
& .e-btn-group .e-btn {
|
|
189
|
+
@if $skin-name == 'material' or $skin-name == 'material-dark' {
|
|
190
|
+
padding: 4px 10px 2px;
|
|
191
|
+
}
|
|
192
|
+
}
|
|
193
|
+
}
|
|
194
|
+
|
|
195
|
+
.e-bigger .e-blr-ie-save-dialog .e-slider-container .e-slider .e-handle {
|
|
196
|
+
@if $skin-name == 'Material3' {
|
|
197
|
+
top: calc(50% - 8px) !important; /* stylelint-disable-line declaration-no-important */
|
|
198
|
+
}
|
|
199
|
+
}
|
|
200
|
+
|
|
201
|
+
.e-bigger .e-ie-save-dialog .e-ie-img-save-name {
|
|
202
|
+
width: calc(71% - 30px) !important; /* stylelint-disable-line declaration-no-important */
|
|
203
|
+
@if $skin-name == 'tailwind' or $skin-name == 'material' or $skin-name == 'bootstrap4' {
|
|
204
|
+
width: calc(65% - 13px) !important; /* stylelint-disable-line declaration-no-important */
|
|
205
|
+
}
|
|
206
|
+
@if $skin-name == 'highcontrast' {
|
|
207
|
+
width: calc(62% - 13px) !important; /* stylelint-disable-line declaration-no-important */
|
|
208
|
+
}
|
|
209
|
+
@if $skin-name == 'FluentUI' {
|
|
210
|
+
width: calc(68% - 30px) !important; /* stylelint-disable-line declaration-no-important */
|
|
211
|
+
}
|
|
212
|
+
@if $skin-name == 'fabric' or $skin-name == 'bootstrap' {
|
|
213
|
+
width: calc(64% - 13px) !important; /* stylelint-disable-line declaration-no-important */
|
|
214
|
+
}
|
|
215
|
+
}
|
|
216
|
+
}
|
|
@@ -24,4 +24,6 @@ $image-editor-save-dlg-grp-btn-padding: 0 12px !default;
|
|
|
24
24
|
$image-editor-save-dlg-dev-grp-btn-padding: 0 12px !default;
|
|
25
25
|
$image-editor-button-label: 14.2px !default;
|
|
26
26
|
$image-editor-icon-button: 3px !default;
|
|
27
|
-
$image-editor-filter-canvas-focus:
|
|
27
|
+
$image-editor-filter-canvas-focus: $grey-dark-font !default;
|
|
28
|
+
$image-editor-button-label-mobile: 12px !default;
|
|
29
|
+
$image-editor-button-width-mobile: calc(66% - 30px) !default;
|
|
@@ -24,4 +24,6 @@ $image-editor-save-dlg-big-btn-pad: 0 10px !default;
|
|
|
24
24
|
$image-editor-save-dlg-grp-btn-padding: 0 12px !default;
|
|
25
25
|
$image-editor-save-dlg-dev-grp-btn-padding: 0 12px !default;
|
|
26
26
|
$image-editor-icon-button: 2px !default;
|
|
27
|
-
$image-editor-filter-canvas-focus:
|
|
27
|
+
$image-editor-filter-canvas-focus: $grey-light-font !default;
|
|
28
|
+
$image-editor-button-label-mobile: 12px !default;
|
|
29
|
+
$image-editor-button-width-mobile: calc(66% - 30px) !default;
|
|
@@ -24,4 +24,6 @@ $image-editor-save-dlg-big-btn-pad: 4px 9px !default;
|
|
|
24
24
|
$image-editor-save-dlg-grp-btn-padding: 4px 12px !default;
|
|
25
25
|
$image-editor-save-dlg-dev-grp-btn-padding: 4px 12px !default;
|
|
26
26
|
$image-editor-icon-button: 2px !default;
|
|
27
|
-
$image-editor-filter-canvas-focus:
|
|
27
|
+
$image-editor-filter-canvas-focus: $black !default;
|
|
28
|
+
$image-editor-button-label-mobile: 12px !default;
|
|
29
|
+
$image-editor-button-width-mobile: calc(66% - 30px) !default;
|
|
@@ -24,4 +24,6 @@ $image-editor-save-dlg-grp-btn-padding: 4px 12px !default;
|
|
|
24
24
|
$image-editor-save-dlg-dev-grp-btn-padding: 6px 13px !default;
|
|
25
25
|
$image-editor-button-label: 15px !default;
|
|
26
26
|
$image-editor-icon-button: 4px !default;
|
|
27
|
-
$image-editor-filter-canvas-focus:
|
|
27
|
+
$image-editor-filter-canvas-focus: $icon-color !default;
|
|
28
|
+
$image-editor-button-label-mobile: 11px !default;
|
|
29
|
+
$image-editor-button-width-mobile: calc(67% - 30px) !default;
|
|
@@ -24,4 +24,6 @@ $image-editor-save-dlg-big-btn-pad: 4px 15px !default;
|
|
|
24
24
|
$image-editor-save-dlg-grp-btn-padding: 4px 12px !default;
|
|
25
25
|
$image-editor-save-dlg-dev-grp-btn-padding: 6px 13px !default;
|
|
26
26
|
$image-editor-icon-button: 4px !default;
|
|
27
|
-
$image-editor-filter-canvas-focus:
|
|
27
|
+
$image-editor-filter-canvas-focus: $icon-color !default;
|
|
28
|
+
$image-editor-button-label-mobile: 9px !default;
|
|
29
|
+
$image-editor-button-width-mobile: calc(65% - 30px) !default;
|
|
@@ -24,4 +24,6 @@ $image-editor-save-dlg-big-btn-pad: 2px 11px !default;
|
|
|
24
24
|
$image-editor-save-dlg-grp-btn-padding: 2px 10px !default;
|
|
25
25
|
$image-editor-save-dlg-dev-grp-btn-padding: 2px 8px !default;
|
|
26
26
|
$image-editor-icon-button: 4px !default;
|
|
27
|
-
$image-editor-filter-canvas-focus:
|
|
27
|
+
$image-editor-filter-canvas-focus: $neutral-light-fontalt !default;
|
|
28
|
+
$image-editor-button-label-mobile: 7px !default;
|
|
29
|
+
$image-editor-button-width-mobile: calc(64% - 30px) !default;
|
|
@@ -24,4 +24,6 @@ $image-editor-save-dlg-big-btn-pad: 2px 11px !default;
|
|
|
24
24
|
$image-editor-save-dlg-grp-btn-padding: 2px 10px !default;
|
|
25
25
|
$image-editor-save-dlg-dev-grp-btn-padding: 2px 8px !default;
|
|
26
26
|
$image-editor-icon-button: 4px !default;
|
|
27
|
-
$image-editor-filter-canvas-focus:
|
|
27
|
+
$image-editor-filter-canvas-focus: $neutral-light-fontalt !default;
|
|
28
|
+
$image-editor-button-label-mobile: 7px !default;
|
|
29
|
+
$image-editor-button-width-mobile: calc(64% - 30px) !default;
|
|
@@ -24,4 +24,6 @@ $image-editor-save-dlg-big-btn-pad: 4px 15px !default;
|
|
|
24
24
|
$image-editor-save-dlg-grp-btn-padding: 4px 11px !default;
|
|
25
25
|
$image-editor-save-dlg-dev-grp-btn-padding: 7px 10px !default;
|
|
26
26
|
$image-editor-icon-button: 5px !default;
|
|
27
|
-
$image-editor-filter-canvas-focus:
|
|
27
|
+
$image-editor-filter-canvas-focus: $secondary-text-color !default;
|
|
28
|
+
$image-editor-button-label-mobile: 6px !default;
|
|
29
|
+
$image-editor-button-width-mobile: calc(64% - 30px) !default;
|