@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
|
@@ -18,10 +18,12 @@ $image-editor-slider-handler: calc(50% - 10px) !default;
|
|
|
18
18
|
$image-editor-bigger-slider-handler: calc(50% - 7px) !default;
|
|
19
19
|
$image-editor-device-slider-handler: calc(50% - 9px) !default;
|
|
20
20
|
$image-editor-finetune-value-span: 28% !default;
|
|
21
|
-
$image-editor-finetune-span:
|
|
21
|
+
$image-editor-finetune-span: 29% !default;
|
|
22
22
|
$image-editor-button-label: 13px !default;
|
|
23
23
|
$image-editor-save-dlg-big-btn-pad: 8px !default;
|
|
24
24
|
$image-editor-save-dlg-grp-btn-padding: 5.2px 10.5px !default;
|
|
25
25
|
$image-editor-save-dlg-dev-grp-btn-padding: 5.2px 10.5px !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: 9px !default;
|
|
29
|
+
$image-editor-button-width-mobile: calc(65% - 30px) !default;
|
|
@@ -22,4 +22,6 @@ $image-editor-save-dlg-big-btn-pad: 8px !default;
|
|
|
22
22
|
$image-editor-save-dlg-grp-btn-padding: 0 !default;
|
|
23
23
|
$image-editor-save-dlg-dev-grp-btn-padding: 4px 13px !default;
|
|
24
24
|
$image-editor-icon-button: 5px !default;
|
|
25
|
-
$image-editor-filter-canvas-focus:
|
|
25
|
+
$image-editor-filter-canvas-focus: $secondary-text-color !default;
|
|
26
|
+
$image-editor-button-label-mobile: 9px !default;
|
|
27
|
+
$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: 3px 9px !default;
|
|
26
26
|
$image-editor-icon-button: 5px !default;
|
|
27
|
-
$image-editor-filter-canvas-focus:
|
|
27
|
+
$image-editor-filter-canvas-focus: $content-font !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: 3px 9px !default;
|
|
26
26
|
$image-editor-icon-button: 5px !default;
|
|
27
|
-
$image-editor-filter-canvas-focus:
|
|
27
|
+
$image-editor-filter-canvas-focus: $content-font !default;
|
|
28
|
+
$image-editor-button-label-mobile: 7px !default;
|
|
29
|
+
$image-editor-button-width-mobile: calc(64% - 30px) !default;
|
|
@@ -64,134 +64,6 @@
|
|
|
64
64
|
height: auto !important; /* stylelint-disable-line declaration-no-important */
|
|
65
65
|
}
|
|
66
66
|
}
|
|
67
|
-
|
|
68
|
-
.e-bigger .e-image-editor,
|
|
69
|
-
.e-image-editor.e-bigger {
|
|
70
|
-
& .e-contextual-toolbar-wrapper {
|
|
71
|
-
& .e-slider-container {
|
|
72
|
-
& .e-slider {
|
|
73
|
-
& .e-handle {
|
|
74
|
-
top: $image-editor-device-slider-handler !important; /* stylelint-disable-line declaration-no-important */
|
|
75
|
-
}
|
|
76
|
-
}
|
|
77
|
-
}
|
|
78
|
-
}
|
|
79
|
-
|
|
80
|
-
& .e-toolbar {
|
|
81
|
-
height: $image-editor-bigger-tbar-height !important; /* stylelint-disable-line declaration-no-important */
|
|
82
|
-
min-height: $image-editor-bigger-tbar-height !important; /* stylelint-disable-line declaration-no-important */
|
|
83
|
-
|
|
84
|
-
& .e-toolbar-items {
|
|
85
|
-
@if $skin-name == 'material' {
|
|
86
|
-
height: $image-editor-bigger-tbar-height !important; /* stylelint-disable-line declaration-no-important */
|
|
87
|
-
min-height: $image-editor-bigger-tbar-height !important; /* stylelint-disable-line declaration-no-important */
|
|
88
|
-
}
|
|
89
|
-
}
|
|
90
|
-
|
|
91
|
-
& .e-toolbar-items {
|
|
92
|
-
& .e-toolbar-item {
|
|
93
|
-
&.e-ie-resize-height span,
|
|
94
|
-
&.e-ie-resize-width span {
|
|
95
|
-
font-size: 16px;
|
|
96
|
-
}
|
|
97
|
-
}
|
|
98
|
-
}
|
|
99
|
-
& .e-toolbar-items {
|
|
100
|
-
& .e-toolbar-item {
|
|
101
|
-
& .e-tbar-btn.e-btn.e-tbtn-txt {
|
|
102
|
-
.e-icons.e-btn-icon {
|
|
103
|
-
@if $skin-name == 'fabric' or $skin-name == 'fabric-dark' or $skin-name == 'bootstrap' or $skin-name == 'bootstrap-dark' or $skin-name == 'boostrap4' {
|
|
104
|
-
padding: 0;
|
|
105
|
-
}
|
|
106
|
-
font-size: $image-editor-bigger-tbar-btn-fontsize;
|
|
107
|
-
}
|
|
108
|
-
}
|
|
109
|
-
|
|
110
|
-
& .e-tbar-btn.e-btn {
|
|
111
|
-
.e-icons.e-btn-icon {
|
|
112
|
-
font-size: $image-editor-bigger-tbar-btn-fontsize;
|
|
113
|
-
@if $skin-name == 'bootstrap5' or $skin-name == 'bootstrap5-dark' {
|
|
114
|
-
padding-top: 4px;
|
|
115
|
-
padding-bottom: 4px;
|
|
116
|
-
}
|
|
117
|
-
}
|
|
118
|
-
}
|
|
119
|
-
}
|
|
120
|
-
|
|
121
|
-
& .e-fill.e-template,
|
|
122
|
-
& .e-stroke.e-template,
|
|
123
|
-
& .e-frame-stroke.e-template,
|
|
124
|
-
& .e-pen-stroke-color.e-template,
|
|
125
|
-
& .e-text-font-color.e-template,
|
|
126
|
-
& .e-save.e-template {
|
|
127
|
-
& .e-dropdown-btn {
|
|
128
|
-
& .e-icons.e-caret {
|
|
129
|
-
font-size: $image-editor-bigger-tbar-btn-fontsize;
|
|
130
|
-
}
|
|
131
|
-
}
|
|
132
|
-
}
|
|
133
|
-
|
|
134
|
-
& .e-text-font-color.e-template {
|
|
135
|
-
& .e-dropdown-btn {
|
|
136
|
-
& .e-icons.e-caret {
|
|
137
|
-
margin-top: -4px;
|
|
138
|
-
}
|
|
139
|
-
}
|
|
140
|
-
}
|
|
141
|
-
|
|
142
|
-
& .e-btn-icon.e-dropdownbtn-preview {
|
|
143
|
-
margin-top: $image-editor-bigger-dropdown-btn-preview-top !important; /* stylelint-disable-line declaration-no-important */
|
|
144
|
-
margin-left: $image-editor-bigger-dropdown-btn-preview-left;
|
|
145
|
-
}
|
|
146
|
-
|
|
147
|
-
& .e-dropdown-btn.e-icon-btn {
|
|
148
|
-
@if $skin-name == 'Material3' {
|
|
149
|
-
padding: 7px 15px;
|
|
150
|
-
}
|
|
151
|
-
}
|
|
152
|
-
|
|
153
|
-
& .e-dropdown-btn.e-image-popup {
|
|
154
|
-
& .e-select,
|
|
155
|
-
& .e-annotation,
|
|
156
|
-
& .e-transform {
|
|
157
|
-
font-size: $image-editor-bigger-tbar-btn-fontsize;
|
|
158
|
-
|
|
159
|
-
& .e-icons.e-caret {
|
|
160
|
-
font-size: 10px;
|
|
161
|
-
}
|
|
162
|
-
}
|
|
163
|
-
}
|
|
164
|
-
|
|
165
|
-
& .e-dropdown-btn {
|
|
166
|
-
& .e-save {
|
|
167
|
-
font-size: $image-editor-bigger-tbar-btn-fontsize;
|
|
168
|
-
|
|
169
|
-
& .e-icons.e-caret {
|
|
170
|
-
font-size: 10px;
|
|
171
|
-
}
|
|
172
|
-
}
|
|
173
|
-
}
|
|
174
|
-
|
|
175
|
-
&.e-tbar-pos {
|
|
176
|
-
.e-toolbar-left {
|
|
177
|
-
line-height: 1;
|
|
178
|
-
}
|
|
179
|
-
}
|
|
180
|
-
}
|
|
181
|
-
}
|
|
182
|
-
|
|
183
|
-
& .e-ie-save-dialog .e-ie-img-save-dlg .e-btn {
|
|
184
|
-
@if $skin-name == 'Material3' {
|
|
185
|
-
margin-top: 5px !important; /* stylelint-disable-line declaration-no-important */
|
|
186
|
-
}
|
|
187
|
-
}
|
|
188
|
-
|
|
189
|
-
@if $skin-name == 'fluent2' {
|
|
190
|
-
& .e-dropdown-btn.e-ie-ddb-popup {
|
|
191
|
-
padding-left: 16px;
|
|
192
|
-
}
|
|
193
|
-
}
|
|
194
|
-
}
|
|
195
67
|
|
|
196
68
|
.e-image-editor {
|
|
197
69
|
border: $image-editor-border;
|
|
@@ -293,7 +165,7 @@
|
|
|
293
165
|
& .e-tbar-btn.e-btn {
|
|
294
166
|
.e-icons.e-btn-icon {
|
|
295
167
|
font-size: $image-editor-tbar-btn-fontsize;
|
|
296
|
-
@if $skin-name == 'bootstrap5' or $skin-name == 'bootstrap5-dark' {
|
|
168
|
+
@if $skin-name == 'bootstrap5' or $skin-name == 'bootstrap5.3' or $skin-name == 'bootstrap5-dark' {
|
|
297
169
|
padding-top: 4px;
|
|
298
170
|
padding-bottom: 4px;
|
|
299
171
|
}
|
|
@@ -320,7 +192,7 @@
|
|
|
320
192
|
}
|
|
321
193
|
|
|
322
194
|
& .e-icons.e-upload-icon {
|
|
323
|
-
@if $skin-name == 'bootstrap5' or $skin-name == 'bootstrap5-dark' {
|
|
195
|
+
@if $skin-name == 'bootstrap5' or $skin-name == 'bootstrap5.3' or $skin-name == 'bootstrap5-dark' {
|
|
324
196
|
padding-top: 6px;
|
|
325
197
|
}
|
|
326
198
|
}
|
|
@@ -331,7 +203,9 @@
|
|
|
331
203
|
& .e-frame-stroke.e-template,
|
|
332
204
|
& .e-pen-stroke-color.e-template,
|
|
333
205
|
& .e-text-font-color.e-template,
|
|
334
|
-
& .e-save.e-template
|
|
206
|
+
& .e-save.e-template,
|
|
207
|
+
& .e-text-background-color.e-template,
|
|
208
|
+
& .e-stroke-text-font-color.e-template {
|
|
335
209
|
& .e-dropdown-btn {
|
|
336
210
|
& .e-icons.e-caret {
|
|
337
211
|
font-size: $image-editor-tbar-btn-fontsize;
|
|
@@ -460,19 +334,19 @@
|
|
|
460
334
|
& .e-toolbar-item {
|
|
461
335
|
height: auto !important; /* stylelint-disable-line declaration-no-important */
|
|
462
336
|
|
|
463
|
-
& .filterwrapper,
|
|
464
|
-
& .filter-wrapper {
|
|
337
|
+
& .filterwrapper canvas,
|
|
338
|
+
& .filter-wrapper canvas {
|
|
465
339
|
border: 2px solid transparent;
|
|
466
340
|
height: 100px;
|
|
467
341
|
}
|
|
468
342
|
}
|
|
469
343
|
|
|
470
|
-
& .e-toolbar-item:hover .filterwrapper,
|
|
471
|
-
& .e-toolbar-item:hover .filter-wrapper,
|
|
472
|
-
& .e-toolbar-item.e-selected .filterwrapper,
|
|
473
|
-
& .e-toolbar-item.e-selected .filter-wrapper {
|
|
474
|
-
|
|
475
|
-
}
|
|
344
|
+
// & .e-toolbar-item:hover .filterwrapper,
|
|
345
|
+
// & .e-toolbar-item:hover .filter-wrapper,
|
|
346
|
+
// & .e-toolbar-item.e-selected .filterwrapper,
|
|
347
|
+
// & .e-toolbar-item.e-selected .filter-wrapper {
|
|
348
|
+
// border-top: 2px solid;
|
|
349
|
+
// }
|
|
476
350
|
|
|
477
351
|
& .e-slider-container {
|
|
478
352
|
margin-left: calc(50% - 137px);
|
|
@@ -555,14 +429,31 @@
|
|
|
555
429
|
top: $image-editor-finetune-value-span !important; /* stylelint-disable-line declaration-no-important */
|
|
556
430
|
}
|
|
557
431
|
|
|
432
|
+
.e-device.e-image-editor .e-ie-finetune-value-span {
|
|
433
|
+
@if $skin-name == 'fluent2' {
|
|
434
|
+
top: 29% !important; /* stylelint-disable-line declaration-no-important */
|
|
435
|
+
}
|
|
436
|
+
}
|
|
437
|
+
|
|
558
438
|
.e-ie-finetune-slider-label {
|
|
559
439
|
top: $image-editor-finetune-span !important; /* stylelint-disable-line declaration-no-important */
|
|
560
440
|
}
|
|
561
441
|
|
|
562
442
|
.e-ie-finetune-slider-wrap {
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
|
|
443
|
+
@if $skin-name == 'Material3' {
|
|
444
|
+
top: calc(50% - 11px) !important; /* stylelint-disable-line declaration-no-important */
|
|
445
|
+
}
|
|
446
|
+
@else if $skin-name == 'tailwind' {
|
|
447
|
+
top: calc(50% - 12px) !important; /* stylelint-disable-line declaration-no-important */
|
|
448
|
+
}
|
|
449
|
+
@else {
|
|
450
|
+
top: calc(50% - 15px) !important; /* stylelint-disable-line declaration-no-important */
|
|
451
|
+
}
|
|
452
|
+
}
|
|
453
|
+
|
|
454
|
+
.e-device.e-image-editor .e-ie-finetune-slider-wrap {
|
|
455
|
+
@if $skin-name == 'Material3' {
|
|
456
|
+
top: calc(50% - 15px) !important; /* stylelint-disable-line declaration-no-important */
|
|
566
457
|
}
|
|
567
458
|
}
|
|
568
459
|
|
|
@@ -571,15 +462,12 @@
|
|
|
571
462
|
}
|
|
572
463
|
|
|
573
464
|
.e-ie-slider-wrap {
|
|
574
|
-
|
|
575
|
-
|
|
576
|
-
|
|
577
|
-
|
|
578
|
-
|
|
579
|
-
height: 22px !important; /* stylelint-disable-line declaration-no-important */
|
|
580
|
-
width: 22px !important; /* stylelint-disable-line declaration-no-important */
|
|
465
|
+
@if $skin-name == 'tailwind' or $skin-name == 'Material3' {
|
|
466
|
+
top: calc(50% - 10px) !important; /* stylelint-disable-line declaration-no-important */
|
|
467
|
+
}
|
|
468
|
+
@else {
|
|
469
|
+
top: calc(50% - 14px) !important; /* stylelint-disable-line declaration-no-important */
|
|
581
470
|
}
|
|
582
|
-
top: $image-editor-bigger-slider-handler !important; /* stylelint-disable-line declaration-no-important */
|
|
583
471
|
}
|
|
584
472
|
|
|
585
473
|
.e-dropdown-popup.e-ie-crop-ddb-popup ul {
|
|
@@ -743,17 +631,13 @@
|
|
|
743
631
|
@if $skin-name == 'tailwind' {
|
|
744
632
|
margin-left: calc(100% - 163px) !important; /* stylelint-disable-line declaration-no-important */
|
|
745
633
|
}
|
|
746
|
-
@if $skin-name == 'bootstrap5' {
|
|
634
|
+
@if $skin-name == 'bootstrap5' or $skin-name == 'bootstrap5.3' {
|
|
747
635
|
margin-left: calc(100% - 156px) !important; /* stylelint-disable-line declaration-no-important */
|
|
748
636
|
}
|
|
749
637
|
@if $skin-name == 'Material3' {
|
|
750
638
|
margin-left: calc(100% - 140px) !important; /* stylelint-disable-line declaration-no-important */
|
|
751
639
|
}
|
|
752
640
|
}
|
|
753
|
-
|
|
754
|
-
.e-bigger .e-ie-save-dialog .e-ie-img-save-name {
|
|
755
|
-
width: calc(71% - 30px) !important; /* stylelint-disable-line declaration-no-important */
|
|
756
|
-
}
|
|
757
641
|
|
|
758
642
|
.e-device.e-ie-save-dialog .e-ie-img-save-name {
|
|
759
643
|
width: calc(71% - 30px) !important; /* stylelint-disable-line declaration-no-important */
|
|
@@ -776,50 +660,11 @@
|
|
|
776
660
|
}
|
|
777
661
|
}
|
|
778
662
|
|
|
779
|
-
.e-bigger .e-image-editor .e-dlg-container .e-dialog,
|
|
780
|
-
.e-bigger.e-image-editor .e-dlg-container .e-dialog {
|
|
781
|
-
width: 656px;
|
|
782
|
-
}
|
|
783
|
-
|
|
784
|
-
.e-bigger .e-ie-img-save-dlg {
|
|
785
|
-
width: 106px;
|
|
786
|
-
}
|
|
787
|
-
|
|
788
|
-
.e-bigger .e-image-editor .e-control-wrapper.e-slider-container.e-horizontal,
|
|
789
|
-
.e-bigger.e-image-editor .e-control-wrapper.e-slider-container.e-horizontal {
|
|
790
|
-
width: 217px;
|
|
791
|
-
}
|
|
792
|
-
|
|
793
663
|
.e-ie-quality-option-container .e-btn-group .e-btn {
|
|
794
664
|
padding-left: $image-editor-button-label;
|
|
795
665
|
padding-right: $image-editor-button-label;
|
|
796
666
|
}
|
|
797
667
|
|
|
798
|
-
.e-bigger .e-dialog.e-blr-ie-save-dialog:not(.e-device) {
|
|
799
|
-
@if $skin-name == 'FluentUI' {
|
|
800
|
-
width: 656px !important; /* stylelint-disable-line declaration-no-important */
|
|
801
|
-
}
|
|
802
|
-
@else if $skin-name == 'highcontrast' or $skin-name == 'tailwind' {
|
|
803
|
-
width: 625px !important; /* stylelint-disable-line declaration-no-important */
|
|
804
|
-
}
|
|
805
|
-
@else if $skin-name == 'fabric' or $skin-name == 'fabric-dark' {
|
|
806
|
-
width: 635px !important; /* stylelint-disable-line declaration-no-important */
|
|
807
|
-
}
|
|
808
|
-
@else {
|
|
809
|
-
width: 620px !important; /* stylelint-disable-line declaration-no-important */
|
|
810
|
-
}
|
|
811
|
-
|
|
812
|
-
& .e-ie-img-icon-button {
|
|
813
|
-
padding: $image-editor-save-dlg-big-btn-pad;
|
|
814
|
-
}
|
|
815
|
-
|
|
816
|
-
& .e-btn-group .e-btn {
|
|
817
|
-
@if $skin-name == 'material' or $skin-name == 'material-dark' {
|
|
818
|
-
padding: 4px 10px 2px;
|
|
819
|
-
}
|
|
820
|
-
}
|
|
821
|
-
}
|
|
822
|
-
|
|
823
668
|
.e-blr-ie-save-dialog {
|
|
824
669
|
& .e-ie-img-save-name {
|
|
825
670
|
width: calc(67% - 13px);
|
|
@@ -908,32 +753,50 @@
|
|
|
908
753
|
}
|
|
909
754
|
}
|
|
910
755
|
|
|
911
|
-
.e-
|
|
756
|
+
.e-ie-save-dialog .e-ie-quality-slider.e-slider-container + .e-ie-img-icon-button,
|
|
757
|
+
.e-ie-save-dialog .e-ie-quality-option-container .e-slider-container.e-horizontal + .e-ie-img-icon-button {
|
|
912
758
|
@if $skin-name == 'Material3' {
|
|
913
|
-
|
|
759
|
+
margin-left: 30px !important; /* stylelint-disable-line declaration-no-important */
|
|
914
760
|
}
|
|
915
761
|
}
|
|
916
|
-
|
|
917
|
-
.e-bigger .e-ie-save-dialog .e-
|
|
918
|
-
|
|
919
|
-
|
|
920
|
-
width: calc(65% - 13px) !important; /* stylelint-disable-line declaration-no-important */
|
|
762
|
+
|
|
763
|
+
.e-bigger .e-blr-ie-save-dialog .e-dialog {
|
|
764
|
+
@if $skin-name == 'fluent2' {
|
|
765
|
+
border: none;
|
|
921
766
|
}
|
|
922
|
-
|
|
923
|
-
|
|
767
|
+
}
|
|
768
|
+
|
|
769
|
+
.e-ie-straighten-value-span {
|
|
770
|
+
margin-left: 7px !important; /* stylelint-disable-line declaration-no-important */
|
|
771
|
+
}
|
|
772
|
+
|
|
773
|
+
.e-device.e-image-editor {
|
|
774
|
+
& .e-ie-straighten-value-span {
|
|
775
|
+
margin-left: 15px !important; /* stylelint-disable-line declaration-no-important */
|
|
924
776
|
}
|
|
925
|
-
|
|
926
|
-
|
|
777
|
+
}
|
|
778
|
+
|
|
779
|
+
@media only screen and (max-width: 390px) {
|
|
780
|
+
.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 {
|
|
781
|
+
padding-left: $image-editor-button-label-mobile;
|
|
782
|
+
padding-right: $image-editor-button-label-mobile;
|
|
927
783
|
}
|
|
928
|
-
|
|
929
|
-
|
|
784
|
+
|
|
785
|
+
.e-device.e-image-editor .e-ie-save-dialog .e-dialog .e-dlg-content .e-ie-dlg-right-content .e-ie-img-save-name {
|
|
786
|
+
width: $image-editor-button-width-mobile !important; /* stylelint-disable-line declaration-no-important */
|
|
930
787
|
}
|
|
931
788
|
}
|
|
789
|
+
|
|
790
|
+
.e-device.e-image-editor .e-contextual-toolbar-wrapper .e-ie-finetune-slider-label {
|
|
791
|
+
left: calc(50% - 145px) !important; /* stylelint-disable-line declaration-no-important */
|
|
792
|
+
}
|
|
932
793
|
|
|
933
|
-
.e-
|
|
934
|
-
|
|
935
|
-
|
|
936
|
-
|
|
937
|
-
|
|
794
|
+
.e-device.e-image-editor .e-contextual-toolbar-wrapper .e-slider-container {
|
|
795
|
+
width: 170px !important; /* stylelint-disable-line declaration-no-important */
|
|
796
|
+
margin-left: calc(50% - 62px) !important; /* stylelint-disable-line declaration-no-important */
|
|
797
|
+
}
|
|
798
|
+
|
|
799
|
+
.e-device.e-image-editor .e-contextual-toolbar-wrapper .e-ie-finetune-value-span {
|
|
800
|
+
margin-left: 10px !important; /* stylelint-disable-line declaration-no-important */
|
|
938
801
|
}
|
|
939
802
|
}
|
|
@@ -24,4 +24,6 @@ $image-editor-save-dlg-big-btn-pad: 4px 11px 2px !default;
|
|
|
24
24
|
$image-editor-save-dlg-grp-btn-padding: 6px 7.5px 4px !default;
|
|
25
25
|
$image-editor-save-dlg-dev-grp-btn-padding: 2px 9.5px !default;
|
|
26
26
|
$image-editor-icon-button: 5px !default;
|
|
27
|
-
$image-editor-filter-canvas-focus:
|
|
27
|
+
$image-editor-filter-canvas-focus: $grey-white !default;
|
|
28
|
+
$image-editor-button-label-mobile: 10px !default;
|
|
29
|
+
$image-editor-button-width-mobile: calc(65% - 30px) !default;
|
|
@@ -24,4 +24,6 @@ $image-editor-save-dlg-big-btn-pad: 4px 11px 2px !default;
|
|
|
24
24
|
$image-editor-save-dlg-grp-btn-padding: 6px 7.5px 4px !default;
|
|
25
25
|
$image-editor-save-dlg-dev-grp-btn-padding: 2px 9.5px !default;
|
|
26
26
|
$image-editor-icon-button: 5px !default;
|
|
27
|
-
$image-editor-filter-canvas-focus:
|
|
27
|
+
$image-editor-filter-canvas-focus: $grey-light-font !default;
|
|
28
|
+
$image-editor-button-label-mobile: 10px !default;
|
|
29
|
+
$image-editor-button-width-mobile: calc(65% - 30px) !default;
|
|
@@ -17,11 +17,13 @@ $image-editor-bigger-dropdown-btn-preview-left: -7px !default;
|
|
|
17
17
|
$image-editor-slider-handler: calc(50% - 8px) !default;
|
|
18
18
|
$image-editor-bigger-slider-handler: calc(50% - 10px) !default;
|
|
19
19
|
$image-editor-device-slider-handler: calc(50% - 8px) !default;
|
|
20
|
-
$image-editor-finetune-value-span:
|
|
21
|
-
$image-editor-finetune-span:
|
|
20
|
+
$image-editor-finetune-value-span: 33% !default;
|
|
21
|
+
$image-editor-finetune-span: 33% !default;
|
|
22
22
|
$image-editor-button-label: 13px !default;
|
|
23
23
|
$image-editor-save-dlg-big-btn-pad: 8px 11px !default;
|
|
24
24
|
$image-editor-save-dlg-grp-btn-padding: 8px 10.5px !default;
|
|
25
25
|
$image-editor-save-dlg-dev-grp-btn-padding: 11px 12px !default;
|
|
26
26
|
$image-editor-icon-button: 3px !default;
|
|
27
|
-
$image-editor-filter-canvas-focus:
|
|
27
|
+
$image-editor-filter-canvas-focus: $icon-color !default;
|
|
28
|
+
$image-editor-button-label-mobile: 12px !default;
|
|
29
|
+
$image-editor-button-width-mobile: calc(65% - 30px) !default;
|
|
@@ -17,11 +17,13 @@ $image-editor-bigger-dropdown-btn-preview-left: -6px !default;
|
|
|
17
17
|
$image-editor-slider-handler: calc(50% - 6px) !default;
|
|
18
18
|
$image-editor-bigger-slider-handler: calc(50% - 7px) !default;
|
|
19
19
|
$image-editor-device-slider-handler: calc(50% - 9px) !default;
|
|
20
|
-
$image-editor-finetune-value-span:
|
|
21
|
-
$image-editor-finetune-span:
|
|
20
|
+
$image-editor-finetune-value-span: 33% !default;
|
|
21
|
+
$image-editor-finetune-span: 33% !default;
|
|
22
22
|
$image-editor-button-label: 13px !default;
|
|
23
23
|
$image-editor-save-dlg-big-btn-pad: 4px 15px !default;
|
|
24
24
|
$image-editor-save-dlg-grp-btn-padding: 4px 10px !default;
|
|
25
25
|
$image-editor-save-dlg-dev-grp-btn-padding: 4px 9px !default;
|
|
26
26
|
$image-editor-icon-button: 2.9px !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(65% - 30px) !default;
|
|
@@ -5,11 +5,16 @@
|
|
|
5
5
|
& .e-contextual-toolbar-wrapper {
|
|
6
6
|
background: $image-editor-contextual-toolbar;
|
|
7
7
|
|
|
8
|
-
& .e-toolbar-item:hover .filterwrapper,
|
|
9
|
-
& .e-toolbar-item.e-selected .filterwrapper,
|
|
10
|
-
& .e-toolbar-item:hover .filter-wrapper,
|
|
11
|
-
& .e-toolbar-item.e-selected .filter-wrapper {
|
|
12
|
-
border-color: $btn-active-bgcolor;
|
|
8
|
+
& .e-toolbar-item:hover .filterwrapper canvas,
|
|
9
|
+
& .e-toolbar-item.e-selected .filterwrapper canvas,
|
|
10
|
+
& .e-toolbar-item:hover .filter-wrapper canvas,
|
|
11
|
+
& .e-toolbar-item.e-selected .filter-wrapper canvas {
|
|
12
|
+
border-color: $btn-active-bgcolor !important; /* stylelint-disable-line declaration-no-important */
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
& .e-toolbar-item.e-selected .filterwrapper:focus canvas,
|
|
16
|
+
& .e-toolbar-item.e-selected .filter-wrapper:focus canvas {
|
|
17
|
+
border-color: $btn-active-bgcolor !important; /* stylelint-disable-line declaration-no-important */
|
|
13
18
|
}
|
|
14
19
|
}
|
|
15
20
|
|
|
@@ -17,7 +22,7 @@
|
|
|
17
22
|
& .e-toolbar-items {
|
|
18
23
|
& .e-tbar-btn.e-btn {
|
|
19
24
|
& .e-icons {
|
|
20
|
-
@if $skin-name != 'bootstrap4' and $skin-name != 'bootstrap5' and $skin-name != 'bootstrap5-dark' {
|
|
25
|
+
@if $skin-name != 'bootstrap4' and $skin-name != 'bootstrap5' and $skin-name != 'bootstrap5.3' and $skin-name != 'bootstrap5-dark' and $skin-name != 'fluent2' {
|
|
21
26
|
color: $image-editor-toolbar-icon-color;
|
|
22
27
|
}
|
|
23
28
|
}
|
|
@@ -25,7 +30,7 @@
|
|
|
25
30
|
&.e-selected-btn {
|
|
26
31
|
background: $image-editor-icon-sel-bg-color !important; /* stylelint-disable-line declaration-no-important */
|
|
27
32
|
& .e-icons {
|
|
28
|
-
@if $skin-name == 'bootstrap5' or $skin-name == 'bootstrap5-dark' {
|
|
33
|
+
@if $skin-name == 'bootstrap5' or $skin-name == 'bootstrap5.3' or $skin-name == 'bootstrap5-dark' {
|
|
29
34
|
color: $secondary-text-color-focus;
|
|
30
35
|
}
|
|
31
36
|
}
|
|
@@ -36,7 +41,7 @@
|
|
|
36
41
|
background: inherit;
|
|
37
42
|
border: none;
|
|
38
43
|
margin-top: $image-editor-ddbtn-margin-top;
|
|
39
|
-
@if $skin-name == 'bootstrap4' or $skin-name == 'bootstrap5' or $skin-name == 'bootstrap5-dark' {
|
|
44
|
+
@if $skin-name == 'bootstrap4' or $skin-name == 'bootstrap5' or $skin-name == 'bootstrap5.3' or $skin-name == 'bootstrap5-dark' {
|
|
40
45
|
background: $tbar-default-bg;
|
|
41
46
|
color: $tbar-default-icon-color;
|
|
42
47
|
}
|
|
@@ -54,7 +59,12 @@
|
|
|
54
59
|
&:hover {
|
|
55
60
|
background: $tbar-hover-bg;
|
|
56
61
|
box-shadow: none;
|
|
57
|
-
|
|
62
|
+
@if $skin-name == 'bootstrap5' or $skin-name == 'bootstrap5.3' {
|
|
63
|
+
color: $secondary-text-color;
|
|
64
|
+
}
|
|
65
|
+
@else {
|
|
66
|
+
color: $tbar-hover-font;
|
|
67
|
+
}
|
|
58
68
|
}
|
|
59
69
|
|
|
60
70
|
&:focus {
|
|
@@ -126,6 +136,17 @@
|
|
|
126
136
|
background: transparent url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iNnB4IiBoZWlnaHQ9IjZweCIgdmlld0JveD0iMCAwIDYgNiIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4KICAgIDwhLS0gR2VuZXJhdG9yOiBTa2V0Y2ggNTAgKDU0OTgzKSAtIGh0dHA6Ly93d3cuYm9oZW1pYW5jb2RpbmcuY29tL3NrZXRjaCAtLT4KICAgIDx0aXRsZT5Hcm91cCA5PC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGRlZnM+PC9kZWZzPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9Ikdyb3VwLTkiPgogICAgICAgICAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlLTExIiBmaWxsPSIjRTBFMEUwIiB4PSIwIiB5PSIwIiB3aWR0aD0iMyIgaGVpZ2h0PSIzIj48L3JlY3Q+CiAgICAgICAgICAgIDxyZWN0IGlkPSJSZWN0YW5nbGUtMTEtQ29weS0yIiBmaWxsPSIjRkZGRkZGIiB4PSIwIiB5PSIzIiB3aWR0aD0iMyIgaGVpZ2h0PSIzIj48L3JlY3Q+CiAgICAgICAgICAgIDxyZWN0IGlkPSJSZWN0YW5nbGUtMTEtQ29weSIgZmlsbD0iI0ZGRkZGRiIgeD0iMyIgeT0iMCIgd2lkdGg9IjMiIGhlaWdodD0iMyI+PC9yZWN0PgogICAgICAgICAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlLTExLUNvcHktMyIgZmlsbD0iI0UwRTBFMCIgeD0iMyIgeT0iMyIgd2lkdGg9IjMiIGhlaWdodD0iMyI+PC9yZWN0PgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+') !important; /* stylelint-disable-line declaration-no-important */
|
|
127
137
|
background-size: 8px !important; /* stylelint-disable-line declaration-no-important */
|
|
128
138
|
}
|
|
139
|
+
|
|
140
|
+
& .e-toolbar-item.e-overlay .e-btn {
|
|
141
|
+
box-shadow: none !important; /* stylelint-disable-line declaration-no-important */
|
|
142
|
+
@if $skin-name == 'fluent2' {
|
|
143
|
+
background: $content-bg-color-alt1 !important; /* stylelint-disable-line declaration-no-important */
|
|
144
|
+
|
|
145
|
+
&:focus .e-icons {
|
|
146
|
+
color: $icon-color-disabled !important; /* stylelint-disable-line declaration-no-important */
|
|
147
|
+
}
|
|
148
|
+
}
|
|
149
|
+
}
|
|
129
150
|
}
|
|
130
151
|
}
|
|
131
152
|
}
|
|
@@ -133,7 +154,7 @@
|
|
|
133
154
|
|
|
134
155
|
.e-dropdown-popup {
|
|
135
156
|
& .e-selected-btn {
|
|
136
|
-
@if $skin-name != 'highcontrast' {
|
|
157
|
+
@if $skin-name != 'highcontrast' and $theme-name != 'bootstrap5.3' and $theme-name != 'bootstrap5.3-dark' {
|
|
137
158
|
background: $image-editor-icon-sel-bg-color !important; /* stylelint-disable-line declaration-no-important */
|
|
138
159
|
}
|
|
139
160
|
@if $skin-name == 'bootstrap5' or $skin-name == 'bootstrap5-dark' {
|
|
@@ -143,11 +164,27 @@
|
|
|
143
164
|
color: $drop-down-btn-selected-color !important; /* stylelint-disable-line declaration-no-important */
|
|
144
165
|
}
|
|
145
166
|
}
|
|
167
|
+
|
|
168
|
+
& .e-item.e-selected-btn {
|
|
169
|
+
@if $skin-name == 'fluent2' {
|
|
170
|
+
color: $flyout-text-color-selected;
|
|
171
|
+
}
|
|
172
|
+
@if $theme-name == 'bootstrap5.3' or $theme-name == 'bootstrap5.3-dark' {
|
|
173
|
+
background-color: $content-bg-color-selected !important; /* stylelint-disable-line declaration-no-important */
|
|
174
|
+
color: $content-text-color-selected !important; /* stylelint-disable-line declaration-no-important */
|
|
175
|
+
}
|
|
176
|
+
}
|
|
146
177
|
}
|
|
147
178
|
|
|
148
179
|
.e-ie-filter-canvas:focus,
|
|
149
180
|
.filter-wrapper:focus .e-ie-filter-canvas,
|
|
150
181
|
.filter-wrapper:focus canvas,
|
|
151
182
|
.filter-wrapper canvas:focus {
|
|
152
|
-
border: $image-editor-filter-canvas-focus;
|
|
183
|
+
border-color: $image-editor-filter-canvas-focus !important; /* stylelint-disable-line declaration-no-important */
|
|
184
|
+
}
|
|
185
|
+
|
|
186
|
+
@if $skin-name == 'fluent2' {
|
|
187
|
+
.e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn.e-active {
|
|
188
|
+
background-color: $secondary-bg-color-pressed !important; /* stylelint-disable-line declaration-no-important */
|
|
189
|
+
}
|
|
153
190
|
}
|