@syncfusion/ej2-filemanager 20.1.52-10460 → 20.1.52-10461
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/CHANGELOG.md +412 -410
- package/README.md +69 -69
- package/dist/ej2-filemanager.min.js +1 -0
- package/dist/ej2-filemanager.umd.min.js +1 -10
- package/dist/ej2-filemanager.umd.min.js.map +1 -1
- package/dist/es6/ej2-filemanager.es2015.js +57 -54
- package/dist/es6/ej2-filemanager.es2015.js.map +1 -1
- package/dist/es6/ej2-filemanager.es5.js +174 -171
- package/dist/es6/ej2-filemanager.es5.js.map +1 -1
- package/dist/global/ej2-filemanager.min.js +1 -10
- package/dist/global/ej2-filemanager.min.js.map +1 -1
- package/dist/global/index.d.ts +0 -9
- package/dist/ts/file-manager/actions/breadcrumb-bar.ts +427 -0
- package/dist/ts/file-manager/actions/toolbar.ts +498 -0
- package/dist/ts/file-manager/base/classes.ts +225 -0
- package/dist/ts/file-manager/base/constant.ts +137 -0
- package/dist/ts/file-manager/base/file-manager.ts +1659 -0
- package/dist/ts/file-manager/base/interface.ts +652 -0
- package/dist/ts/file-manager/common/operations.ts +614 -0
- package/dist/ts/file-manager/common/utility.ts +1503 -0
- package/dist/ts/file-manager/layout/details-view.ts +1837 -0
- package/dist/ts/file-manager/layout/large-icons-view.ts +1587 -0
- package/dist/ts/file-manager/layout/navigation-pane.ts +879 -0
- package/dist/ts/file-manager/models/ajax-settings.ts +39 -0
- package/dist/ts/file-manager/models/column.ts +197 -0
- package/dist/ts/file-manager/models/contextMenu-settings.ts +44 -0
- package/dist/ts/file-manager/models/default-locale.ts +102 -0
- package/dist/ts/file-manager/models/details-view-settings.ts +48 -0
- package/dist/ts/file-manager/models/navigation-pane-settings.ts +42 -0
- package/dist/ts/file-manager/models/search-settings.ts +48 -0
- package/dist/ts/file-manager/models/toolbar-settings.ts +25 -0
- package/dist/ts/file-manager/models/upload-settings.ts +51 -0
- package/dist/ts/file-manager/pop-up/context-menu.ts +614 -0
- package/dist/ts/file-manager/pop-up/dialog.ts +996 -0
- package/helpers/e2e/filemanagerHelper.js +183 -166
- package/license +9 -9
- package/package.json +72 -72
- package/src/file-manager/base/file-manager-model.d.ts +329 -329
- package/src/file-manager/base/file-manager.js +19 -19
- package/src/file-manager/models/ajax-settings-model.d.ts +21 -21
- package/src/file-manager/models/ajax-settings.js +19 -19
- package/src/file-manager/models/column-model.d.ts +98 -98
- package/src/file-manager/models/column.js +19 -19
- package/src/file-manager/models/contextMenu-settings-model.d.ts +21 -21
- package/src/file-manager/models/contextMenu-settings.js +19 -19
- package/src/file-manager/models/details-view-settings-model.d.ts +19 -19
- package/src/file-manager/models/details-view-settings.js +19 -19
- package/src/file-manager/models/navigation-pane-settings-model.d.ts +25 -25
- package/src/file-manager/models/navigation-pane-settings.js +19 -19
- package/src/file-manager/models/search-settings-model.d.ts +26 -26
- package/src/file-manager/models/search-settings.js +19 -19
- package/src/file-manager/models/toolbar-settings-model.d.ts +11 -11
- package/src/file-manager/models/toolbar-settings.js +19 -19
- package/src/file-manager/models/upload-settings-model.d.ts +31 -31
- package/src/file-manager/models/upload-settings.js +19 -19
- package/src/file-manager/pop-up/context-menu.js +3 -0
- package/styles/compatibility/bootstrap.css +1 -0
- package/styles/compatibility/bootstrap.scss +12 -0
- package/styles/compatibility/bootstrap4.css +1 -0
- package/styles/compatibility/bootstrap4.scss +12 -0
- package/styles/compatibility/fabric.css +1 -0
- package/styles/compatibility/fabric.scss +12 -0
- package/styles/compatibility/highcontrast.css +1 -0
- package/styles/compatibility/highcontrast.scss +12 -0
- package/styles/compatibility/material.css +1 -0
- package/styles/compatibility/material.scss +12 -0
- package/styles/file-manager/_all.scss +2 -2
- package/styles/file-manager/_bds-definition.scss +236 -0
- package/styles/file-manager/_bigger.scss +759 -0
- package/styles/file-manager/_bootstrap-dark-definition.scss +244 -240
- package/styles/file-manager/_bootstrap-definition.scss +245 -241
- package/styles/file-manager/_bootstrap4-definition.scss +246 -242
- package/styles/file-manager/_bootstrap5-definition.scss +242 -237
- package/styles/file-manager/_bootstrap5.3-definition.scss +242 -0
- package/styles/file-manager/_fabric-dark-definition.scss +242 -238
- package/styles/file-manager/_fabric-definition.scss +244 -240
- package/styles/file-manager/_fluent-definition.scss +249 -246
- package/styles/file-manager/_fluent2-definition.scss +255 -0
- package/styles/file-manager/_fusionnew-definition.scss +241 -0
- package/styles/file-manager/_highcontrast-definition.scss +244 -240
- package/styles/file-manager/_highcontrast-light-definition.scss +244 -240
- package/styles/file-manager/_layout.scss +1252 -1815
- package/styles/file-manager/_material-dark-definition.scss +245 -240
- package/styles/file-manager/_material-definition.scss +245 -240
- package/styles/file-manager/_material3-definition.scss +235 -0
- package/styles/file-manager/_tailwind-definition.scss +236 -232
- package/styles/file-manager/_theme.scss +418 -397
- package/styles/file-manager/icons/_bds.scss +235 -0
- package/styles/file-manager/icons/_bootstrap-dark.scss +235 -235
- package/styles/file-manager/icons/_bootstrap.scss +235 -236
- package/styles/file-manager/icons/_bootstrap4.scss +235 -236
- package/styles/file-manager/icons/_bootstrap5.3.scss +235 -0
- package/styles/file-manager/icons/_bootstrap5.scss +235 -235
- package/styles/file-manager/icons/_fabric-dark.scss +229 -230
- package/styles/file-manager/icons/_fabric.scss +229 -230
- package/styles/file-manager/icons/_fluent.scss +235 -235
- package/styles/file-manager/icons/_fluent2.scss +235 -0
- package/styles/file-manager/icons/_fusionnew.scss +235 -0
- package/styles/file-manager/icons/_highcontrast-light.scss +235 -235
- package/styles/file-manager/icons/_highcontrast.scss +229 -229
- package/styles/file-manager/icons/_material-dark.scss +235 -235
- package/styles/file-manager/icons/_material.scss +235 -235
- package/styles/file-manager/icons/_material3.scss +235 -0
- package/styles/file-manager/icons/_tailwind.scss +235 -235
- package/.eslintrc.json +0 -244
- package/styles/bootstrap-dark.css +0 -1920
- package/styles/bootstrap-dark.scss +0 -1
- package/styles/bootstrap.css +0 -1899
- package/styles/bootstrap.scss +0 -1
- package/styles/bootstrap4.css +0 -1935
- package/styles/bootstrap4.scss +0 -1
- package/styles/bootstrap5-dark.css +0 -1982
- package/styles/bootstrap5-dark.scss +0 -1
- package/styles/bootstrap5.css +0 -1982
- package/styles/bootstrap5.scss +0 -1
- package/styles/fabric-dark.css +0 -1891
- package/styles/fabric-dark.scss +0 -1
- package/styles/fabric.css +0 -1891
- package/styles/fabric.scss +0 -1
- package/styles/file-manager/_bootstrap5-dark-definition.scss +0 -1
- package/styles/file-manager/_fluent-dark-definition.scss +0 -1
- package/styles/file-manager/_tailwind-dark-definition.scss +0 -1
- package/styles/file-manager/bootstrap-dark.css +0 -1920
- package/styles/file-manager/bootstrap-dark.scss +0 -16
- package/styles/file-manager/bootstrap.css +0 -1899
- package/styles/file-manager/bootstrap.scss +0 -16
- package/styles/file-manager/bootstrap4.css +0 -1935
- package/styles/file-manager/bootstrap4.scss +0 -16
- package/styles/file-manager/bootstrap5-dark.css +0 -1982
- package/styles/file-manager/bootstrap5-dark.scss +0 -16
- package/styles/file-manager/bootstrap5.css +0 -1982
- package/styles/file-manager/bootstrap5.scss +0 -16
- package/styles/file-manager/fabric-dark.css +0 -1891
- package/styles/file-manager/fabric-dark.scss +0 -16
- package/styles/file-manager/fabric.css +0 -1891
- package/styles/file-manager/fabric.scss +0 -16
- package/styles/file-manager/fluent-dark.css +0 -1901
- package/styles/file-manager/fluent-dark.scss +0 -16
- package/styles/file-manager/fluent.css +0 -1900
- package/styles/file-manager/fluent.scss +0 -16
- package/styles/file-manager/highcontrast-light.css +0 -1897
- package/styles/file-manager/highcontrast-light.scss +0 -16
- package/styles/file-manager/highcontrast.css +0 -1897
- package/styles/file-manager/highcontrast.scss +0 -16
- package/styles/file-manager/icons/_bootstrap5-dark.scss +0 -1
- package/styles/file-manager/icons/_fluent-dark.scss +0 -1
- package/styles/file-manager/icons/_tailwind-dark.scss +0 -1
- package/styles/file-manager/material-dark.css +0 -1945
- package/styles/file-manager/material-dark.scss +0 -16
- package/styles/file-manager/material.css +0 -1932
- package/styles/file-manager/material.scss +0 -16
- package/styles/file-manager/tailwind-dark.css +0 -1969
- package/styles/file-manager/tailwind-dark.scss +0 -16
- package/styles/file-manager/tailwind.css +0 -1969
- package/styles/file-manager/tailwind.scss +0 -16
- package/styles/fluent-dark.css +0 -1901
- package/styles/fluent-dark.scss +0 -1
- package/styles/fluent.css +0 -1900
- package/styles/fluent.scss +0 -1
- package/styles/highcontrast-light.css +0 -1897
- package/styles/highcontrast-light.scss +0 -1
- package/styles/highcontrast.css +0 -1897
- package/styles/highcontrast.scss +0 -1
- package/styles/material-dark.css +0 -1945
- package/styles/material-dark.scss +0 -1
- package/styles/material.css +0 -1932
- package/styles/material.scss +0 -1
- package/styles/tailwind-dark.css +0 -1969
- package/styles/tailwind-dark.scss +0 -1
- package/styles/tailwind.css +0 -1969
- package/styles/tailwind.scss +0 -1
- package/tslint.json +0 -111
@@ -1,397 +1,418 @@
|
|
1
|
-
|
2
|
-
.e-fe-dot,
|
3
|
-
.e-fe-tick {
|
4
|
-
color: $fe-ddl-icon-color;
|
5
|
-
}
|
6
|
-
}
|
7
|
-
|
8
|
-
|
9
|
-
.e-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
@
|
16
|
-
|
17
|
-
|
18
|
-
}
|
19
|
-
}
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
|
113
|
-
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
background: $
|
118
|
-
|
119
|
-
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
|
124
|
-
|
125
|
-
}
|
126
|
-
|
127
|
-
|
128
|
-
|
129
|
-
|
130
|
-
|
131
|
-
|
132
|
-
|
133
|
-
|
134
|
-
|
135
|
-
|
136
|
-
|
137
|
-
|
138
|
-
|
139
|
-
|
140
|
-
|
141
|
-
|
142
|
-
|
143
|
-
|
144
|
-
|
145
|
-
|
146
|
-
|
147
|
-
|
148
|
-
|
149
|
-
|
150
|
-
|
151
|
-
|
152
|
-
|
153
|
-
|
154
|
-
|
155
|
-
|
156
|
-
|
157
|
-
|
158
|
-
|
159
|
-
|
160
|
-
|
161
|
-
|
162
|
-
|
163
|
-
|
164
|
-
|
165
|
-
|
166
|
-
|
167
|
-
|
168
|
-
|
169
|
-
|
170
|
-
|
171
|
-
|
172
|
-
|
173
|
-
|
174
|
-
|
175
|
-
|
176
|
-
|
177
|
-
|
178
|
-
|
179
|
-
}
|
180
|
-
|
181
|
-
|
182
|
-
|
183
|
-
|
184
|
-
|
185
|
-
|
186
|
-
|
187
|
-
|
188
|
-
|
189
|
-
|
190
|
-
}
|
191
|
-
|
192
|
-
|
193
|
-
|
194
|
-
|
195
|
-
|
196
|
-
|
197
|
-
|
198
|
-
|
199
|
-
|
200
|
-
|
201
|
-
|
202
|
-
|
203
|
-
|
204
|
-
|
205
|
-
|
206
|
-
|
207
|
-
|
208
|
-
|
209
|
-
|
210
|
-
|
211
|
-
|
212
|
-
|
213
|
-
|
214
|
-
|
215
|
-
|
216
|
-
|
217
|
-
|
218
|
-
|
219
|
-
|
220
|
-
|
221
|
-
|
222
|
-
|
223
|
-
|
224
|
-
|
225
|
-
|
226
|
-
|
227
|
-
|
228
|
-
|
229
|
-
|
230
|
-
|
231
|
-
|
232
|
-
|
233
|
-
|
234
|
-
|
235
|
-
|
236
|
-
|
237
|
-
|
238
|
-
|
239
|
-
|
240
|
-
|
241
|
-
|
242
|
-
|
243
|
-
|
244
|
-
|
245
|
-
|
246
|
-
|
247
|
-
|
248
|
-
|
249
|
-
|
250
|
-
|
251
|
-
|
252
|
-
|
253
|
-
|
254
|
-
|
255
|
-
|
256
|
-
|
257
|
-
|
258
|
-
|
259
|
-
|
260
|
-
|
261
|
-
|
262
|
-
|
263
|
-
|
264
|
-
|
265
|
-
|
266
|
-
|
267
|
-
|
268
|
-
|
269
|
-
|
270
|
-
|
271
|
-
|
272
|
-
|
273
|
-
|
274
|
-
|
275
|
-
|
276
|
-
|
277
|
-
|
278
|
-
|
279
|
-
|
280
|
-
|
281
|
-
|
282
|
-
|
283
|
-
|
284
|
-
|
285
|
-
|
286
|
-
|
287
|
-
|
288
|
-
|
289
|
-
|
290
|
-
|
291
|
-
|
292
|
-
|
293
|
-
|
294
|
-
|
295
|
-
}
|
296
|
-
}
|
297
|
-
|
298
|
-
.e-
|
299
|
-
|
300
|
-
|
301
|
-
|
302
|
-
|
303
|
-
|
304
|
-
|
305
|
-
|
306
|
-
|
307
|
-
|
308
|
-
|
309
|
-
|
310
|
-
|
311
|
-
|
312
|
-
|
313
|
-
|
314
|
-
|
315
|
-
|
316
|
-
|
317
|
-
|
318
|
-
|
319
|
-
|
320
|
-
|
321
|
-
|
322
|
-
|
323
|
-
|
324
|
-
|
325
|
-
|
326
|
-
|
327
|
-
|
328
|
-
|
329
|
-
|
330
|
-
|
331
|
-
|
332
|
-
.e-
|
333
|
-
|
334
|
-
|
335
|
-
|
336
|
-
|
337
|
-
|
338
|
-
|
339
|
-
|
340
|
-
|
341
|
-
|
342
|
-
|
343
|
-
|
344
|
-
|
345
|
-
}
|
346
|
-
|
347
|
-
|
348
|
-
|
349
|
-
|
350
|
-
|
351
|
-
|
352
|
-
|
353
|
-
|
354
|
-
|
355
|
-
|
356
|
-
|
357
|
-
}
|
358
|
-
}
|
359
|
-
|
360
|
-
|
361
|
-
|
362
|
-
|
363
|
-
|
364
|
-
|
365
|
-
|
366
|
-
|
367
|
-
|
368
|
-
|
369
|
-
|
370
|
-
|
371
|
-
|
372
|
-
|
373
|
-
|
374
|
-
|
375
|
-
|
376
|
-
|
377
|
-
|
378
|
-
|
379
|
-
|
380
|
-
|
381
|
-
|
382
|
-
}
|
383
|
-
}
|
384
|
-
}
|
385
|
-
|
386
|
-
|
387
|
-
|
388
|
-
|
389
|
-
|
390
|
-
.e-
|
391
|
-
|
392
|
-
|
393
|
-
|
394
|
-
|
395
|
-
|
396
|
-
|
397
|
-
}
|
1
|
+
@mixin active-icon {
|
2
|
+
.e-fe-dot,
|
3
|
+
.e-fe-tick {
|
4
|
+
color: $fe-ddl-icon-color;
|
5
|
+
}
|
6
|
+
}
|
7
|
+
|
8
|
+
@mixin active-icon-color {
|
9
|
+
.e-btn-icon,
|
10
|
+
.e-tbar-btn-text {
|
11
|
+
@if $fm-skin-name == 'bootstrap4' or $fm-skin-name == 'bootstrap5' {
|
12
|
+
color: $fe-tb-active-color;
|
13
|
+
}
|
14
|
+
|
15
|
+
@if $fm-skin-name == 'highcontrast' {
|
16
|
+
color: $fe-active-font-color;
|
17
|
+
}
|
18
|
+
}
|
19
|
+
}
|
20
|
+
|
21
|
+
@mixin hover-icon-border-color {
|
22
|
+
@if $fm-skin-name == 'bootstrap-dark' {
|
23
|
+
border: 1px solid $fe-tb-hover-border-color;
|
24
|
+
}
|
25
|
+
}
|
26
|
+
|
27
|
+
@mixin bg-border($bg-color, $border-color) {
|
28
|
+
background: $bg-color;
|
29
|
+
border-color: $border-color;
|
30
|
+
}
|
31
|
+
|
32
|
+
@include export-module('FileManager-theme') {
|
33
|
+
.e-filemanager {
|
34
|
+
@include bg-border($fe-background, $fe-border-color);
|
35
|
+
|
36
|
+
.e-toolbar {
|
37
|
+
border-bottom-color: $fe-border-color;
|
38
|
+
@if $fm-skin-name != 'Material3' {
|
39
|
+
.e-toolbar-items .e-toolbar-item .e-dropdown-btn.e-btn.e-tbar-btn {
|
40
|
+
&.e-active {
|
41
|
+
@include hover-icon-border-color;
|
42
|
+
@include active-icon-color;
|
43
|
+
@include bg-border($fe-tb-focus-bg, $fe-tb-focus-border-color);
|
44
|
+
@if $fm-skin-name == 'highcontrast' {
|
45
|
+
background: $fe-active-bg-color;
|
46
|
+
}
|
47
|
+
|
48
|
+
&:hover {
|
49
|
+
@if $fm-skin-name == 'highcontrast' {
|
50
|
+
background: $fe-active-bg-color;
|
51
|
+
}
|
52
|
+
}
|
53
|
+
}
|
54
|
+
|
55
|
+
&:hover {
|
56
|
+
@include hover-icon-border-color;
|
57
|
+
@include bg-border($fe-tb-focus-bg, $fe-tb-hover-border-color);
|
58
|
+
}
|
59
|
+
|
60
|
+
&:focus {
|
61
|
+
@include hover-icon-border-color;
|
62
|
+
@include active-icon-color;
|
63
|
+
@include bg-border($fe-tb-focus-bg, $fe-tb-hover-border-color);
|
64
|
+
@if $fm-skin-name == 'highcontrast' {
|
65
|
+
background: $fe-active-bg-color;
|
66
|
+
}
|
67
|
+
}
|
68
|
+
}
|
69
|
+
}
|
70
|
+
}
|
71
|
+
|
72
|
+
@if $fm-skin-name == 'tailwind' {
|
73
|
+
.e-navigation.e-pane {
|
74
|
+
background-color: $content-bg-color-alt1;
|
75
|
+
}
|
76
|
+
}
|
77
|
+
|
78
|
+
.e-address {
|
79
|
+
border-bottom-color: $fe-border-color;
|
80
|
+
|
81
|
+
.e-breadcrumb-menu .e-breadcrumb-submenu {
|
82
|
+
&:active,
|
83
|
+
&:focus,
|
84
|
+
&:hover {
|
85
|
+
@include active-icon-color;
|
86
|
+
}
|
87
|
+
}
|
88
|
+
|
89
|
+
.e-icons {
|
90
|
+
color: $fe-icon-color;
|
91
|
+
}
|
92
|
+
|
93
|
+
.e-list-text {
|
94
|
+
color: $fe-bc-link-color;
|
95
|
+
}
|
96
|
+
|
97
|
+
.e-address-list-item {
|
98
|
+
color: $fe-bc-link-color;
|
99
|
+
|
100
|
+
&:focus .e-list-text {
|
101
|
+
@if $fm-skin-name != 'tailwind' and $fm-skin-name != 'bootstrap5' and $fm-skin-name != 'bootstrap5.3' {
|
102
|
+
background: $fe-bc-hover-bg-color;
|
103
|
+
}
|
104
|
+
color: $fe-bc-hover-font-color;
|
105
|
+
}
|
106
|
+
|
107
|
+
&:last-child {
|
108
|
+
.e-list-text {
|
109
|
+
color: $fe-bc-color;
|
110
|
+
}
|
111
|
+
}
|
112
|
+
|
113
|
+
&:not(:last-child) {
|
114
|
+
.e-list-text {
|
115
|
+
@if ($fm-skin-name == 'bootstrap5.3') {
|
116
|
+
&:hover {
|
117
|
+
background-color: $content-bg-color-hover;
|
118
|
+
color: $primary-bg-color-hover;
|
119
|
+
text-decoration: underline $primary-bg-color-hover;
|
120
|
+
}
|
121
|
+
&:active {
|
122
|
+
color: $primary-bg-color-hover;
|
123
|
+
border: 1px solid $primary-bg-color-hover;
|
124
|
+
text-decoration: underline $primary-bg-color-hover;
|
125
|
+
}
|
126
|
+
}
|
127
|
+
@else {
|
128
|
+
&:hover,
|
129
|
+
&:active,
|
130
|
+
&:focus {
|
131
|
+
@if $fm-skin-name != 'tailwind' and $fm-skin-name != 'bootstrap5' {
|
132
|
+
background: $fe-bc-hover-bg-color;
|
133
|
+
}
|
134
|
+
color: $fe-bc-hover-font-color;
|
135
|
+
}
|
136
|
+
}
|
137
|
+
@if $fm-skin-name == 'fluent2' {
|
138
|
+
&:active {
|
139
|
+
background: $fe-bc-active-bg-color;
|
140
|
+
}
|
141
|
+
}
|
142
|
+
}
|
143
|
+
}
|
144
|
+
}
|
145
|
+
|
146
|
+
.e-address-list-item:focus .e-list-text {
|
147
|
+
@if ($fm-skin-name == 'bootstrap5.3') {
|
148
|
+
color: $primary-bg-color-hover;
|
149
|
+
border: 1px solid $primary-bg-color-hover;
|
150
|
+
text-decoration: underline $primary-bg-color-hover;
|
151
|
+
}
|
152
|
+
@else {
|
153
|
+
color: $fe-bc-hover-font-color;
|
154
|
+
}
|
155
|
+
}
|
156
|
+
|
157
|
+
.e-search-wrap {
|
158
|
+
.e-input-group.e-control-wrapper:not(.e-success) {
|
159
|
+
@if $fm-skin-name != 'fluent2' {
|
160
|
+
@include bg-border($fe-search-bg-color, $fe-border-color);
|
161
|
+
}
|
162
|
+
|
163
|
+
@if $theme-name == 'fluentui-dark' {
|
164
|
+
border-color: $fe-search-border-color;
|
165
|
+
}
|
166
|
+
@if ($fm-skin-name == 'Material3') {
|
167
|
+
border: none;
|
168
|
+
border-bottom: 1px solid $outline;
|
169
|
+
border-radius: 0;
|
170
|
+
}
|
171
|
+
}
|
172
|
+
}
|
173
|
+
}
|
174
|
+
|
175
|
+
.e-treeview {
|
176
|
+
.e-list-item.e-active {
|
177
|
+
& > .e-fullrow {
|
178
|
+
border: $fe-ah-border-color;
|
179
|
+
}
|
180
|
+
|
181
|
+
&.e-hover > .e-fullrow {
|
182
|
+
@if $fm-skin-name == 'material-dark' {
|
183
|
+
background-color: $fe-ah-bg-color;
|
184
|
+
}
|
185
|
+
}
|
186
|
+
}
|
187
|
+
|
188
|
+
.e-list-parent .e-list-item.e-fe-drop-folder.e-hover > .e-fullrow {
|
189
|
+
border-color: $fe-drop-folder-bg-color;
|
190
|
+
}
|
191
|
+
}
|
192
|
+
|
193
|
+
.e-grid {
|
194
|
+
|
195
|
+
.e-gridheader {
|
196
|
+
@if $fm-skin-name != 'FluentUI' {
|
197
|
+
tr:first-child th {
|
198
|
+
background: $fe-grid-header-bg-color;
|
199
|
+
}
|
200
|
+
}
|
201
|
+
|
202
|
+
.e-headercell {
|
203
|
+
|
204
|
+
&:not(.e-fe-grid-icon):hover,
|
205
|
+
&.e-fe-grid-icon .e-headercelldiv:hover {
|
206
|
+
background: $fe-hover-bg-color;
|
207
|
+
}
|
208
|
+
&.e-fe-checkbox:hover {
|
209
|
+
@if $fm-skin-name == 'FluentUI' {
|
210
|
+
background: $content-bg-color;
|
211
|
+
}
|
212
|
+
@else {
|
213
|
+
background: $fe-grid-header-bg-color;
|
214
|
+
}
|
215
|
+
}
|
216
|
+
}
|
217
|
+
}
|
218
|
+
|
219
|
+
.e-empty-inner-content {
|
220
|
+
@if $fm-skin-name == 'tailwind' or $fm-skin-name == 'bootstrap5' or $fm-skin-name =='Material3' {
|
221
|
+
color: $fe-grid-empty-inner-content-color;
|
222
|
+
}
|
223
|
+
}
|
224
|
+
|
225
|
+
.e-rowcell {
|
226
|
+
@if $fm-skin-name == 'material-dark' or $fm-skin-name == 'bootstrap-dark' {
|
227
|
+
color: $fe-grid-type-color;
|
228
|
+
|
229
|
+
.e-fe-text {
|
230
|
+
color: $fe-grid-text-color;
|
231
|
+
}
|
232
|
+
}
|
233
|
+
}
|
234
|
+
|
235
|
+
@if $skin-name == 'bootstrap5' or $skin-name == 'bootstrap4' {
|
236
|
+
td.e-active.e-rowcell:not(.e-editedbatchcell):not(.e-updatedtd) {
|
237
|
+
color: $fe-active-font-color;
|
238
|
+
}
|
239
|
+
}
|
240
|
+
|
241
|
+
td.e-active {
|
242
|
+
background-color: $fe-active-bg-color;
|
243
|
+
@if $fm-skin-name != 'material-dark' {
|
244
|
+
color: $fe-active-font-color;
|
245
|
+
}
|
246
|
+
}
|
247
|
+
|
248
|
+
tr:hover td.e-active {
|
249
|
+
@if $fm-skin-name == 'material-dark' {
|
250
|
+
background-color: $fe-ah-bg-color;
|
251
|
+
}
|
252
|
+
}
|
253
|
+
|
254
|
+
.e-checkbox-wrapper {
|
255
|
+
.e-icons.e-check {
|
256
|
+
@if $fm-skin-name == 'highcontrast' or $fm-skin-name == 'bootstrap4' or $fm-skin-name == 'bootstrap-dark' or $fm-skin-name == 'bootstrap5' {
|
257
|
+
background-color: $fe-checkbox-bg-color;
|
258
|
+
color: $fe-checkbox-color;
|
259
|
+
}
|
260
|
+
}
|
261
|
+
|
262
|
+
.e-icons.e-stop {
|
263
|
+
@if $fm-skin-name == 'bootstrap4' or $fm-skin-name == 'bootstrap5' {
|
264
|
+
background-color: $fe-checkbox-bg-color;
|
265
|
+
color: $fe-checkbox-color;
|
266
|
+
}
|
267
|
+
}
|
268
|
+
}
|
269
|
+
|
270
|
+
&.e-gridhover .e-row:not(.e-editedrow):hover .e-rowcell:not(.e-cellselectionbackground):not(.e-active):not(.e-updatedtd):not(.e-indentcell) {
|
271
|
+
@if $fm-skin-name == 'material-dark' or $fm-skin-name == 'bootstrap-dark' {
|
272
|
+
background-color: $fe-hover-bg-color;
|
273
|
+
color: $fe-grid-type-color;
|
274
|
+
}
|
275
|
+
}
|
276
|
+
|
277
|
+
&.e-gridhover .e-row.e-fe-drop-file:not(.e-editedrow):hover .e-rowcell:not(.e-cellselectionbackground):not(.e-active):not(.e-updatedtd):not(.e-indentcell) {
|
278
|
+
background-color: transparent;
|
279
|
+
}
|
280
|
+
}
|
281
|
+
|
282
|
+
.e-large-icons {
|
283
|
+
|
284
|
+
.e-list-img {
|
285
|
+
border-color: $fe-img-border-color;
|
286
|
+
}
|
287
|
+
|
288
|
+
.e-active {
|
289
|
+
color: $fe-active-font-color;
|
290
|
+
}
|
291
|
+
|
292
|
+
.e-empty-inner-content {
|
293
|
+
@if $fm-skin-name == 'tailwind' or $fm-skin-name == 'bootstrap5' or $fm-skin-name == 'Material3' {
|
294
|
+
color: $fe-grid-empty-inner-content-color;
|
295
|
+
}
|
296
|
+
}
|
297
|
+
|
298
|
+
.e-large-icon {
|
299
|
+
border-color: transparent;
|
300
|
+
|
301
|
+
&.e-active {
|
302
|
+
@include bg-border($fe-active-bg-color, $fe-active-border-color);
|
303
|
+
}
|
304
|
+
|
305
|
+
&.e-hover,
|
306
|
+
&:hover {
|
307
|
+
@include bg-border($fe-hover-bg-color, $fe-hover-border-color);
|
308
|
+
@if ($fm-skin-name == 'fluent2') {
|
309
|
+
color: $fe-lg-hover-font-color;
|
310
|
+
}
|
311
|
+
}
|
312
|
+
|
313
|
+
&.e-active.e-hover,
|
314
|
+
&.e-active:hover {
|
315
|
+
@include bg-border($fe-ah-bg-color, $fe-ah-border-color);
|
316
|
+
@if ($fm-skin-name == 'fluent2') {
|
317
|
+
color: $fe-lg-active-font-color;
|
318
|
+
}
|
319
|
+
}
|
320
|
+
|
321
|
+
&.e-focus {
|
322
|
+
border-color: $fe-focus-border-color;
|
323
|
+
}
|
324
|
+
|
325
|
+
&.e-hover.e-fe-drop-folder,
|
326
|
+
&:hover.e-fe-drop-folder {
|
327
|
+
border-color: $fe-drop-folder-bg-color;
|
328
|
+
}
|
329
|
+
}
|
330
|
+
|
331
|
+
.e-checkbox-wrapper {
|
332
|
+
.e-icons.e-check {
|
333
|
+
background-color: $fe-checkbox-bg-color;
|
334
|
+
color: $fe-checkbox-color;
|
335
|
+
}
|
336
|
+
}
|
337
|
+
}
|
338
|
+
|
339
|
+
.e-fe-clone {
|
340
|
+
|
341
|
+
.e-fe-content {
|
342
|
+
background-color: $fe-clone-bg-color;
|
343
|
+
@if $fm-skin-name == 'highcontrast-light' or $fm-skin-name == 'fabric-dark' or $fm-skin-name == 'bootstrap-dark' {
|
344
|
+
border-color: $fe-clone-border-color;
|
345
|
+
}
|
346
|
+
color: $fe-bc-color;
|
347
|
+
|
348
|
+
@if $fm-skin-name == 'highcontrast' {
|
349
|
+
color: $fe-active-font-color;
|
350
|
+
}
|
351
|
+
}
|
352
|
+
|
353
|
+
.e-fe-count {
|
354
|
+
background-color: $fe-clone-count-bg-color;
|
355
|
+
border-color: $fe-clone-count-border-color;
|
356
|
+
color: $fe-clone-count-font-color;
|
357
|
+
}
|
358
|
+
}
|
359
|
+
|
360
|
+
&.e-fe-mobile {
|
361
|
+
.e-large-icons {
|
362
|
+
.e-large-icon {
|
363
|
+
|
364
|
+
&.e-hover,
|
365
|
+
&:hover {
|
366
|
+
@include bg-border(transparent, transparent);
|
367
|
+
}
|
368
|
+
&.e-focus {
|
369
|
+
border-color: transparent;
|
370
|
+
}
|
371
|
+
&.e-active {
|
372
|
+
@include bg-border($fe-active-bg-color, $fe-active-border-color);
|
373
|
+
}
|
374
|
+
}
|
375
|
+
}
|
376
|
+
@if $fm-skin-name == 'tailwind' or $fm-skin-name == 'bootstrap5' {
|
377
|
+
.e-address .e-icons {
|
378
|
+
color: $icon-color;
|
379
|
+
&:hover {
|
380
|
+
color: $icon-color-hover;
|
381
|
+
}
|
382
|
+
}
|
383
|
+
}
|
384
|
+
}
|
385
|
+
}
|
386
|
+
|
387
|
+
.e-fe-popup {
|
388
|
+
|
389
|
+
&.e-dropdown-popup ul .e-item,
|
390
|
+
&.e-contextmenu-wrapper ul .e-menu-item,
|
391
|
+
&.e-contextmenu-container ul .e-menu-item {
|
392
|
+
@include active-icon;
|
393
|
+
|
394
|
+
&.e-separator {
|
395
|
+
@if $fm-skin-name == 'bootstrap4' {
|
396
|
+
border-bottom-color: $fe-tb-db-sep-color;
|
397
|
+
}
|
398
|
+
}
|
399
|
+
}
|
400
|
+
|
401
|
+
&.e-dialog {
|
402
|
+
td {
|
403
|
+
color: $fe-text-color;
|
404
|
+
&:first-child {
|
405
|
+
color: $fe-label-color;
|
406
|
+
}
|
407
|
+
}
|
408
|
+
}
|
409
|
+
|
410
|
+
.e-fe-error {
|
411
|
+
color: $fe-error-color;
|
412
|
+
}
|
413
|
+
|
414
|
+
.e-upload .e-upload-actions {
|
415
|
+
border-bottom-color: $fe-up-list-border-color;
|
416
|
+
}
|
417
|
+
}
|
418
|
+
}
|