@syncfusion/ej2-filemanager 25.2.3 → 26.1.35
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/.eslintrc.json +3 -2
- package/dist/ej2-filemanager.min.js +2 -2
- package/dist/ej2-filemanager.umd.min.js +2 -2
- package/dist/ej2-filemanager.umd.min.js.map +1 -1
- package/dist/es6/ej2-filemanager.es2015.js +931 -464
- package/dist/es6/ej2-filemanager.es2015.js.map +1 -1
- package/dist/es6/ej2-filemanager.es5.js +975 -517
- package/dist/es6/ej2-filemanager.es5.js.map +1 -1
- package/dist/global/ej2-filemanager.min.js +2 -2
- package/dist/global/ej2-filemanager.min.js.map +1 -1
- package/dist/global/index.d.ts +1 -1
- package/package.json +16 -16
- package/src/file-manager/actions/breadcrumb-bar.js +0 -4
- package/src/file-manager/actions/toolbar.js +1 -13
- package/src/file-manager/actions/virtualization.d.ts +28 -8
- package/src/file-manager/actions/virtualization.js +36 -12
- package/src/file-manager/base/file-manager-model.d.ts +107 -36
- package/src/file-manager/base/file-manager.d.ts +100 -25
- package/src/file-manager/base/file-manager.js +46 -20
- package/src/file-manager/base/interface.d.ts +224 -2
- package/src/file-manager/base/interface.js +0 -1
- package/src/file-manager/common/operations.d.ts +7 -0
- package/src/file-manager/common/operations.js +596 -94
- package/src/file-manager/common/utility.d.ts +22 -0
- package/src/file-manager/common/utility.js +117 -65
- package/src/file-manager/layout/details-view.d.ts +1 -1
- package/src/file-manager/layout/details-view.js +23 -68
- package/src/file-manager/layout/large-icons-view.js +24 -46
- package/src/file-manager/layout/navigation-pane.js +18 -41
- package/src/file-manager/models/column-model.d.ts +1 -3
- package/src/file-manager/models/default-locale.js +0 -1
- package/src/file-manager/models/details-view-settings.js +2 -1
- package/src/file-manager/pop-up/context-menu.js +26 -27
- package/src/file-manager/pop-up/dialog.d.ts +1 -2
- package/src/file-manager/pop-up/dialog.js +12 -35
- package/styles/bootstrap-dark.css +116 -105
- package/styles/bootstrap-dark.scss +16 -1
- package/styles/bootstrap.css +117 -106
- package/styles/bootstrap.scss +16 -1
- package/styles/bootstrap4.css +116 -105
- package/styles/bootstrap4.scss +16 -1
- package/styles/bootstrap5-dark.css +98 -98
- package/styles/bootstrap5-dark.scss +16 -1
- package/styles/bootstrap5.css +98 -98
- package/styles/bootstrap5.scss +16 -1
- package/styles/fabric-dark.css +116 -105
- package/styles/fabric-dark.scss +16 -1
- package/styles/fabric.css +116 -105
- package/styles/fabric.scss +16 -1
- package/styles/file-manager/_bds-definition.scss +1 -1
- package/styles/file-manager/_bootstrap5-definition.scss +2 -1
- package/styles/file-manager/_bootstrap5.3-definition.scss +240 -0
- package/styles/file-manager/_fluent-definition.scss +1 -1
- package/styles/file-manager/_fluent2-definition.scss +249 -0
- package/styles/file-manager/_layout.scss +255 -396
- package/styles/file-manager/_material-dark-definition.scss +1 -0
- package/styles/file-manager/_material-definition.scss +1 -0
- package/styles/file-manager/_material3-definition.scss +1 -27
- package/styles/file-manager/_tailwind-definition.scss +1 -1
- package/styles/file-manager/_theme.scss +37 -85
- package/styles/file-manager/bootstrap-dark.css +116 -105
- package/styles/file-manager/bootstrap.css +117 -106
- package/styles/file-manager/bootstrap4.css +116 -105
- package/styles/file-manager/bootstrap5-dark.css +98 -98
- package/styles/file-manager/bootstrap5.css +98 -98
- package/styles/file-manager/fabric-dark.css +116 -105
- package/styles/file-manager/fabric.css +116 -105
- package/styles/file-manager/fluent-dark.css +107 -102
- package/styles/file-manager/fluent.css +107 -102
- package/styles/file-manager/fluent2.css +2872 -0
- package/styles/file-manager/fluent2.scss +16 -0
- package/styles/file-manager/highcontrast-light.css +116 -105
- package/styles/file-manager/highcontrast.css +116 -105
- package/styles/file-manager/icons/_bootstrap5.3.scss +235 -0
- package/styles/file-manager/icons/_fluent2.scss +235 -0
- package/styles/file-manager/material-dark.css +140 -108
- package/styles/file-manager/material.css +156 -112
- package/styles/file-manager/material3-dark.css +134 -109
- package/styles/file-manager/material3.css +134 -109
- package/styles/file-manager/tailwind-dark.css +93 -95
- package/styles/file-manager/tailwind.css +93 -95
- package/styles/fluent-dark.css +107 -102
- package/styles/fluent-dark.scss +16 -1
- package/styles/fluent.css +107 -102
- package/styles/fluent.scss +16 -1
- package/styles/fluent2.css +2872 -0
- package/styles/fluent2.scss +16 -0
- package/styles/highcontrast-light.css +116 -105
- package/styles/highcontrast-light.scss +16 -1
- package/styles/highcontrast.css +116 -105
- package/styles/highcontrast.scss +16 -1
- package/styles/material-dark.css +140 -108
- package/styles/material-dark.scss +16 -1
- package/styles/material.css +156 -112
- package/styles/material.scss +16 -1
- package/styles/material3-dark.css +134 -109
- package/styles/material3-dark.scss +16 -1
- package/styles/material3.css +134 -109
- package/styles/material3.scss +16 -1
- package/styles/tailwind-dark.css +93 -95
- package/styles/tailwind-dark.scss +16 -1
- package/styles/tailwind.css +93 -95
- package/styles/tailwind.scss +16 -1
- package/CHANGELOG.md +0 -467
@@ -9,6 +9,9 @@
|
|
9
9
|
@mixin visibility($value) {
|
10
10
|
.e-checkbox-wrapper {
|
11
11
|
visibility: $value;
|
12
|
+
@if $fm-skin-name == 'fluent2' {
|
13
|
+
padding: 0;
|
14
|
+
}
|
12
15
|
}
|
13
16
|
}
|
14
17
|
|
@@ -31,16 +34,64 @@
|
|
31
34
|
white-space: nowrap;
|
32
35
|
}
|
33
36
|
|
34
|
-
@mixin
|
35
|
-
|
37
|
+
@mixin size($height, $width) {
|
38
|
+
height: $height;
|
39
|
+
width: $width;
|
40
|
+
}
|
36
41
|
|
37
|
-
|
38
|
-
|
39
|
-
|
42
|
+
@mixin checkbox($value) {
|
43
|
+
.e-checkbox-wrapper .e-frame {
|
44
|
+
border-width: 1px;
|
45
|
+
line-height: $value;
|
46
|
+
@if $fm-skin-name == 'fluent2' {
|
47
|
+
@include size(16px, 16px);
|
48
|
+
font-size: 10px;
|
49
|
+
margin: 0;
|
40
50
|
}
|
41
51
|
}
|
42
52
|
}
|
43
53
|
|
54
|
+
@mixin icon-style($height, $width, $margin) {
|
55
|
+
height: $height;
|
56
|
+
margin: $margin;
|
57
|
+
width: $width;
|
58
|
+
}
|
59
|
+
|
60
|
+
@mixin empty-content($font-size, $margin, $padding, $text-align) {
|
61
|
+
font-size: $font-size;
|
62
|
+
margin: $margin;
|
63
|
+
padding: $padding;
|
64
|
+
text-align: $text-align;
|
65
|
+
}
|
66
|
+
|
67
|
+
@mixin toolbar-height($height, $min-height) {
|
68
|
+
height: $height;
|
69
|
+
min-height: $min-height;
|
70
|
+
}
|
71
|
+
|
72
|
+
@mixin margin-padding($margin, $padding) {
|
73
|
+
margin: $margin;
|
74
|
+
padding: $padding;
|
75
|
+
}
|
76
|
+
|
77
|
+
@mixin empty-style($empty-min-width, $empty-content-font-size, $empty-content-margin, $empty-content-padding, $empty-content-text-align, $empty-icon-height, $empty-icon-width, $empty-icon-margin, $empty-inner-content-font-size, $empty-inner-content-margin, $empty-inner-content-padding, $empty-inner-content-text-align) {
|
78
|
+
.e-empty {
|
79
|
+
min-width: $empty-min-width;
|
80
|
+
}
|
81
|
+
|
82
|
+
.e-empty-content {
|
83
|
+
@include empty-content($empty-content-font-size, $empty-content-margin, $empty-content-padding, $empty-content-text-align);
|
84
|
+
}
|
85
|
+
|
86
|
+
.e-empty-icon {
|
87
|
+
@include icon-style($empty-icon-height, $empty-icon-width, $empty-icon-margin);
|
88
|
+
}
|
89
|
+
|
90
|
+
.e-empty-inner-content {
|
91
|
+
@include empty-content($empty-inner-content-font-size, $empty-inner-content-margin, $empty-inner-content-padding, $empty-inner-content-text-align);
|
92
|
+
}
|
93
|
+
}
|
94
|
+
|
44
95
|
@include export-module('FileManager-layout') {
|
45
96
|
ejs-filemanager {
|
46
97
|
display: block;
|
@@ -50,15 +101,14 @@
|
|
50
101
|
@include user-select;
|
51
102
|
border: 1px solid;
|
52
103
|
position: relative;
|
104
|
+
@if $fm-skin-name == 'fluent2' {
|
105
|
+
border-radius: $fm-border-radius;
|
106
|
+
}
|
53
107
|
|
54
108
|
.e-blur {
|
55
109
|
opacity: .5;
|
56
110
|
}
|
57
111
|
|
58
|
-
.e-display-none {
|
59
|
-
display: none;
|
60
|
-
}
|
61
|
-
|
62
112
|
&.e-fe-drop,
|
63
113
|
&.e-fe-drop .e-treeview .e-text-content,
|
64
114
|
&.e-fe-drop .e-treeview .e-fullrow,
|
@@ -72,7 +122,9 @@
|
|
72
122
|
}
|
73
123
|
|
74
124
|
.e-toolbar {
|
75
|
-
|
125
|
+
@if $fm-skin-name != 'fluent2' {
|
126
|
+
border-bottom-style: solid;
|
127
|
+
}
|
76
128
|
@if $fm-skin-name == 'bootstrap-dark' {
|
77
129
|
border-width: 1px;
|
78
130
|
}
|
@@ -80,22 +132,23 @@
|
|
80
132
|
border-width: 0 0 1px;
|
81
133
|
}
|
82
134
|
|
83
|
-
@if ($fm-skin-name == 'Material3') {
|
84
|
-
height
|
85
|
-
|
135
|
+
@if ($fm-skin-name == 'Material3' or $fm-skin-name == 'fluent2') {
|
136
|
+
@include toolbar-height($fe-tb-height, $fe-tb-height);
|
137
|
+
}
|
138
|
+
|
139
|
+
@if ($fm-skin-name == 'fluent2') {
|
140
|
+
box-shadow: none;
|
86
141
|
}
|
87
142
|
|
88
143
|
@if ($fm-skin-name == 'Material3') {
|
89
|
-
.e-toolbar-item {
|
90
|
-
.e-tbar-btn {
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
}
|
144
|
+
.e-toolbar-item .e-tbar-btn {
|
145
|
+
.e-tbar-btn-text {
|
146
|
+
line-height: 18px;
|
147
|
+
padding: 7px 8px 7px 0;
|
148
|
+
}
|
95
149
|
|
96
|
-
|
97
|
-
|
98
|
-
}
|
150
|
+
.e-icons.e-btn-icon {
|
151
|
+
padding: 7px 8px;
|
99
152
|
}
|
100
153
|
}
|
101
154
|
|
@@ -118,10 +171,8 @@
|
|
118
171
|
.e-btn-icon.e-icons.e-caret {
|
119
172
|
font-size: $fe-tb-ddb-caret-size;
|
120
173
|
@if $fm-skin-name == 'tailwind' or $fm-skin-name == 'bootstrap5' {
|
121
|
-
|
122
|
-
margin: 2px 4px 0;
|
174
|
+
@include icon-style(18px, 18px, 2px 4px 0);
|
123
175
|
padding: 1px;
|
124
|
-
width: 18px;
|
125
176
|
}
|
126
177
|
@else {
|
127
178
|
padding: 0 8px;
|
@@ -132,16 +183,8 @@
|
|
132
183
|
padding-right: 0;
|
133
184
|
}
|
134
185
|
|
135
|
-
&.e-active
|
136
|
-
|
137
|
-
padding: $fe-tb-ddb-btn-hvr-padding;
|
138
|
-
}
|
139
|
-
|
140
|
-
&:hover {
|
141
|
-
border: $fe-tb-ddb-border;
|
142
|
-
padding: $fe-tb-ddb-btn-hvr-padding;
|
143
|
-
}
|
144
|
-
|
186
|
+
&.e-active,
|
187
|
+
&:hover,
|
145
188
|
&:focus {
|
146
189
|
border: $fe-tb-ddb-border;
|
147
190
|
padding: $fe-tb-ddb-btn-hvr-padding;
|
@@ -174,20 +217,18 @@
|
|
174
217
|
}
|
175
218
|
}
|
176
219
|
|
177
|
-
.e-icons .e-treeview-spinner {
|
178
|
-
display: none;
|
179
|
-
}
|
180
|
-
|
181
220
|
.e-list-parent {
|
182
221
|
margin-bottom: 0;
|
183
222
|
margin-top: 0;
|
184
223
|
|
185
224
|
.e-list-item {
|
186
|
-
|
187
|
-
|
225
|
+
@if $fm-skin-name != 'fluent2' {
|
226
|
+
padding-bottom: 0;
|
227
|
+
padding-top: 0;
|
188
228
|
|
189
|
-
|
190
|
-
|
229
|
+
.e-fullrow {
|
230
|
+
height: $fe-tv-fullrow-height;
|
231
|
+
}
|
191
232
|
}
|
192
233
|
|
193
234
|
.e-list-text {
|
@@ -196,7 +237,7 @@
|
|
196
237
|
}
|
197
238
|
|
198
239
|
&.e-fe-drop-folder > .e-fullrow {
|
199
|
-
@if $fm-skin-name == 'tailwind' or $fm-skin-name == 'bootstrap5' {
|
240
|
+
@if $fm-skin-name == 'tailwind' or $fm-skin-name == 'bootstrap5' or $fm-skin-name == 'fluent2' {
|
200
241
|
border: 1px dashed;
|
201
242
|
}
|
202
243
|
@else {
|
@@ -216,21 +257,14 @@
|
|
216
257
|
.e-list-text {
|
217
258
|
display: initial;
|
218
259
|
}
|
260
|
+
|
261
|
+
@if $fm-skin-name == 'fluent2' {
|
262
|
+
border: none;
|
263
|
+
}
|
219
264
|
}
|
220
265
|
|
221
266
|
.e-splitter {
|
222
267
|
border-width: 0;
|
223
|
-
|
224
|
-
.e-split-bar {
|
225
|
-
|
226
|
-
.e-resize-handler {
|
227
|
-
display: none;
|
228
|
-
}
|
229
|
-
}
|
230
|
-
|
231
|
-
.e-display-none {
|
232
|
-
display: none;
|
233
|
-
}
|
234
268
|
}
|
235
269
|
|
236
270
|
.e-address {
|
@@ -254,28 +288,21 @@
|
|
254
288
|
width: 200px;
|
255
289
|
|
256
290
|
.e-input-group {
|
257
|
-
|
291
|
+
@if $fm-skin-name != 'fluent2' {
|
292
|
+
border-bottom-width: $fe-bc-search-border-bottom;
|
293
|
+
}
|
258
294
|
height: $fe-search-height;
|
259
295
|
margin: 0;
|
260
296
|
|
261
297
|
@if $skin-name == 'bootstrap5' or $skin-name == 'tailwind' {
|
262
|
-
&.e-input-focus {
|
263
|
-
|
264
|
-
padding: 0;
|
265
|
-
}
|
298
|
+
&.e-input-focus .e-input {
|
299
|
+
padding: 0;
|
266
300
|
}
|
267
301
|
}
|
268
302
|
|
269
303
|
.e-input {
|
270
|
-
margin
|
271
|
-
|
272
|
-
@if $skin-name == 'bootstrap5' {
|
273
|
-
height: 26px;
|
274
|
-
}
|
275
|
-
@if $skin-name == 'material' {
|
276
|
-
height: 30px;
|
277
|
-
}
|
278
|
-
@if $fm-skin-name == 'Material3' {
|
304
|
+
@include margin-padding($fe-search-input-margin, 0);
|
305
|
+
@if $fm-skin-name == 'Material3' or $skin-name == 'bootstrap5' or $skin-name == 'material' {
|
279
306
|
height: $fe-search-input-height;
|
280
307
|
}
|
281
308
|
}
|
@@ -302,9 +329,6 @@
|
|
302
329
|
@else {
|
303
330
|
padding: 5px;
|
304
331
|
}
|
305
|
-
@if $fm-skin-name == 'FluentUI' {
|
306
|
-
font-size: 16px;
|
307
|
-
}
|
308
332
|
position: absolute;
|
309
333
|
z-index: 1;
|
310
334
|
|
@@ -316,8 +340,7 @@
|
|
316
340
|
.e-addressbar-ul {
|
317
341
|
@include ellipsis;
|
318
342
|
list-style: none;
|
319
|
-
margin
|
320
|
-
padding: $fe-bc-padding;
|
343
|
+
@include margin-padding($fe-bc-margin, $fe-bc-padding);
|
321
344
|
|
322
345
|
.e-breadcrumb-menu {
|
323
346
|
display: inline;
|
@@ -343,6 +366,9 @@
|
|
343
366
|
padding: $fe-bc-text-padding;
|
344
367
|
}
|
345
368
|
text-decoration: none;
|
369
|
+
@if $fm-skin-name == 'fluent2' {
|
370
|
+
border-radius: 4px;
|
371
|
+
}
|
346
372
|
|
347
373
|
&:hover {
|
348
374
|
text-decoration: $fe-bc-li-text-decoration;
|
@@ -356,10 +382,11 @@
|
|
356
382
|
}
|
357
383
|
|
358
384
|
&:last-child {
|
359
|
-
|
360
385
|
.e-list-text {
|
361
386
|
cursor: default;
|
362
|
-
|
387
|
+
@if $fm-skin-name == 'fluent2' {
|
388
|
+
font-weight: 600;
|
389
|
+
}
|
363
390
|
&:hover {
|
364
391
|
text-decoration: none;
|
365
392
|
}
|
@@ -369,12 +396,12 @@
|
|
369
396
|
.e-icons {
|
370
397
|
font-size: $fe-bc-icon-font-size;
|
371
398
|
margin: $fe-bc-icon-margin;
|
372
|
-
@if $fm-skin-name == 'tailwind' or $fm-skin-name == 'Material3' {
|
399
|
+
@if $fm-skin-name == 'tailwind' or $fm-skin-name == 'Material3' or $fm-skin-name == 'fluent2' {
|
373
400
|
vertical-align: middle;
|
374
401
|
}
|
375
402
|
|
376
403
|
&::before {
|
377
|
-
@if $fm-skin-name != 'tailwind' {
|
404
|
+
@if $fm-skin-name != 'tailwind' and $fm-skin-name != 'fluent2' {
|
378
405
|
padding: $fe-bc-icon-padding;
|
379
406
|
}
|
380
407
|
}
|
@@ -391,10 +418,6 @@
|
|
391
418
|
border-width: 0;
|
392
419
|
float: left;
|
393
420
|
|
394
|
-
.e-spin-show {
|
395
|
-
display: none;
|
396
|
-
}
|
397
|
-
|
398
421
|
.e-gridcontent tr.e-emptyrow td.e-lastrowcell:first-child:empty {
|
399
422
|
height: 0;
|
400
423
|
padding: 0;
|
@@ -432,11 +455,8 @@
|
|
432
455
|
}
|
433
456
|
}
|
434
457
|
|
435
|
-
&.e-headercheck {
|
436
|
-
|
437
|
-
.e-gridheader .e-headercontent {
|
438
|
-
@include visibility(visible);
|
439
|
-
}
|
458
|
+
&.e-headercheck .e-gridheader .e-headercontent {
|
459
|
+
@include visibility(visible);
|
440
460
|
}
|
441
461
|
|
442
462
|
@if $fm-skin-name == 'FluentUI' {
|
@@ -447,7 +467,6 @@
|
|
447
467
|
|
448
468
|
.e-content {
|
449
469
|
overflow-y: auto !important; /* stylelint-disable-line declaration-no-important */
|
450
|
-
|
451
470
|
.e-table {
|
452
471
|
border-spacing: 0;
|
453
472
|
}
|
@@ -463,8 +482,8 @@
|
|
463
482
|
padding: 8px;
|
464
483
|
}
|
465
484
|
|
466
|
-
@if $fm-skin-name == 'Material3' {
|
467
|
-
padding:
|
485
|
+
@if $fm-skin-name == 'Material3' or $fm-skin-name == 'fluent2' {
|
486
|
+
padding: $fe-grid-content-padding;
|
468
487
|
line-height: 20px;
|
469
488
|
|
470
489
|
.e-fe-text {
|
@@ -525,10 +544,7 @@
|
|
525
544
|
}
|
526
545
|
|
527
546
|
.e-empty-content {
|
528
|
-
font-size
|
529
|
-
margin: $fe-grid-empty-content-margin;
|
530
|
-
padding: $fe-grid-empty-content-padding;
|
531
|
-
text-align: $fe-grid-empty-content-text-align;
|
547
|
+
@include empty-content($fe-grid-empty-content-font-size, $fe-grid-empty-content-margin, $fe-grid-empty-content-padding, $fe-grid-empty-content-text-align);
|
532
548
|
@if $fm-skin-name == 'tailwind' or $fm-skin-name == 'bootstrap5' {
|
533
549
|
line-height: 24px;
|
534
550
|
}
|
@@ -538,25 +554,24 @@
|
|
538
554
|
}
|
539
555
|
|
540
556
|
.e-empty-icon {
|
541
|
-
height
|
542
|
-
margin: $fe-grid-empty-icon-margin;
|
543
|
-
width: $fe-grid-empty-icon-width;
|
557
|
+
@include icon-style($fe-grid-empty-icon-height, $fe-grid-empty-icon-width, $fe-grid-empty-icon-margin);
|
544
558
|
@if $fm-skin-name == 'Material3' {
|
545
559
|
margin-top: 5%;
|
546
560
|
}
|
547
561
|
}
|
548
562
|
|
549
563
|
.e-empty-inner-content {
|
550
|
-
font-size
|
551
|
-
margin: $fe-grid-empty-inner-content-margin;
|
564
|
+
@include empty-content($fe-grid-empty-inner-content-font-size, $fe-grid-empty-inner-content-margin, $fe-grid-empty-inner-content-padding, $fe-grid-empty-inner-content-text-align);
|
552
565
|
@if $fm-skin-name == 'tailwind' or $fm-skin-name == 'bootstrap5' or $fm-skin-name == 'Material3' {
|
553
566
|
line-height: 22px;
|
554
567
|
}
|
568
|
+
@else if $fm-skin-name == 'fluent2' {
|
569
|
+
line-height: 20px;
|
570
|
+
color: $fe-grid-empty-inner-content-color;
|
571
|
+
}
|
555
572
|
@else {
|
556
573
|
opacity: $fe-lg-icon-empty-inner-content-opacity;
|
557
574
|
}
|
558
|
-
padding: $fe-grid-empty-inner-content-padding;
|
559
|
-
text-align: $fe-grid-empty-inner-content-text-align;
|
560
575
|
}
|
561
576
|
|
562
577
|
.e-gridpopup {
|
@@ -566,10 +581,6 @@
|
|
566
581
|
.e-gridheader,
|
567
582
|
.e-gridcontent {
|
568
583
|
|
569
|
-
.e-emptyrow {
|
570
|
-
display: none;
|
571
|
-
}
|
572
|
-
|
573
584
|
.e-fe-checkbox {
|
574
585
|
overflow: inherit;
|
575
586
|
padding-left: $fe-grid-header-cb-padding-left;
|
@@ -605,17 +616,15 @@
|
|
605
616
|
|
606
617
|
&.e-focused {
|
607
618
|
box-shadow: none;
|
608
|
-
@if $fm-skin-name != 'tailwind' and $fm-skin-name != 'bootstrap5' and $fm-skin-name != 'FluentUI' and $fm-skin-name != 'Material3' {
|
619
|
+
@if $fm-skin-name != 'tailwind' and $fm-skin-name != 'bootstrap5' and $fm-skin-name != 'FluentUI' and $fm-skin-name != 'Material3' and $fm-skin-name != 'fluent2' {
|
609
620
|
td {
|
610
621
|
box-shadow: $fe-grid-row-ie-box-shadow;
|
611
|
-
|
612
|
-
|
613
|
-
|
614
|
-
|
615
|
-
|
616
|
-
|
617
|
-
td:last-child {
|
618
|
-
box-shadow: $fe-grid-row-lc-ie-box-shadow;
|
622
|
+
&:first-child{
|
623
|
+
box-shadow: $fe-grid-row-fc-ie-box-shadow;
|
624
|
+
}
|
625
|
+
&:last-child{
|
626
|
+
box-shadow: $fe-grid-row-lc-ie-box-shadow;
|
627
|
+
}
|
619
628
|
}
|
620
629
|
}
|
621
630
|
}
|
@@ -642,27 +651,17 @@
|
|
642
651
|
|
643
652
|
.e-fe-icon {
|
644
653
|
display: inline-block;
|
645
|
-
|
646
|
-
margin: $fe-grid-icon-margin;
|
654
|
+
@include icon-style($fe-grid-icon-size, $fe-grid-icon-size, $fe-grid-icon-margin);
|
647
655
|
vertical-align: middle;
|
648
|
-
width: $fe-grid-icon-size;
|
649
656
|
}
|
650
657
|
}
|
651
658
|
|
652
|
-
.e-view-container {
|
653
|
-
|
654
|
-
.e-gridheader {
|
655
|
-
padding-right: 0 !important; /* stylelint-disable-line declaration-no-important */
|
656
|
-
}
|
657
|
-
}
|
659
|
+
.e-view-container .e-grid .e-gridheader {
|
660
|
+
padding-right: 0 !important; /* stylelint-disable-line declaration-no-important */
|
658
661
|
}
|
659
662
|
|
660
|
-
&.e-rtl .e-view-container {
|
661
|
-
|
662
|
-
.e-gridheader {
|
663
|
-
padding-left: 0 !important; /* stylelint-disable-line declaration-no-important */
|
664
|
-
}
|
665
|
-
}
|
663
|
+
&.e-rtl .e-view-container .e-grid .e-gridheader {
|
664
|
+
padding-left: 0 !important; /* stylelint-disable-line declaration-no-important */
|
666
665
|
}
|
667
666
|
|
668
667
|
.e-large-icons {
|
@@ -682,10 +681,7 @@
|
|
682
681
|
}
|
683
682
|
|
684
683
|
.e-empty-content {
|
685
|
-
font-size
|
686
|
-
margin: $fe-lg-icon-empty-content-margin;
|
687
|
-
padding: $fe-lg-icon-empty-content-padding;
|
688
|
-
text-align: $fe-lg-icon-empty-content-text-align;
|
684
|
+
@include empty-content($fe-lg-icon-empty-content-font-size, $fe-lg-icon-empty-content-margin, $fe-lg-icon-empty-content-padding, $fe-lg-icon-empty-content-text-align);
|
689
685
|
@if $fm-skin-name == 'tailwind' or $fm-skin-name == 'bootstrap5' {
|
690
686
|
line-height: 24px;
|
691
687
|
}
|
@@ -695,33 +691,31 @@
|
|
695
691
|
}
|
696
692
|
|
697
693
|
.e-empty-icon {
|
698
|
-
height
|
699
|
-
margin: $fe-lg-icon-empty-icon-margin;
|
700
|
-
width: $fe-lg-icon-empty-icon-width;
|
694
|
+
@include icon-style($fe-lg-icon-empty-icon-height, $fe-lg-icon-empty-icon-width, $fe-lg-icon-empty-icon-margin);
|
701
695
|
@if $fm-skin-name == 'Material3' {
|
702
696
|
margin-top: 10%;
|
703
697
|
}
|
704
698
|
}
|
705
699
|
|
706
700
|
.e-empty-inner-content {
|
707
|
-
font-size
|
708
|
-
margin: $fe-lg-icon-empty-inner-content-margin;
|
701
|
+
@include empty-content($fe-lg-icon-empty-inner-content-font-size, $fe-lg-icon-empty-inner-content-margin, $fe-lg-icon-empty-inner-content-padding, $fe-lg-icon-empty-inner-content-text-align);
|
709
702
|
@if $fm-skin-name == 'tailwind' or $fm-skin-name == 'bootstrap5' or $fm-skin-name == 'Material3' {
|
710
703
|
line-height: 22px;
|
711
704
|
}
|
705
|
+
@else if $fm-skin-name == 'fluent2' {
|
706
|
+
line-height: 20px;
|
707
|
+
color: $fe-grid-empty-inner-content-color;
|
708
|
+
}
|
712
709
|
@else {
|
713
710
|
opacity: $fe-lg-icon-empty-inner-content-opacity;
|
714
711
|
}
|
715
|
-
padding: $fe-lg-icon-empty-inner-content-padding;
|
716
|
-
text-align: $fe-lg-icon-empty-inner-content-text-align;
|
717
712
|
}
|
718
713
|
|
719
714
|
.e-list-parent {
|
720
715
|
display: block;
|
721
716
|
height: 100%;
|
722
|
-
margin
|
717
|
+
@include margin-padding($fe-lg-margin, $fe-lg-padding);
|
723
718
|
overflow: auto;
|
724
|
-
padding: $fe-lg-padding;
|
725
719
|
}
|
726
720
|
|
727
721
|
.e-checkbox-wrapper {
|
@@ -740,22 +734,19 @@
|
|
740
734
|
.e-list-item {
|
741
735
|
border: $fe-lg-item-border solid;
|
742
736
|
float: left;
|
743
|
-
height
|
744
|
-
margin: $fe-lg-item-margin;
|
737
|
+
@include icon-style($fe-lg-item-height, $fe-lg-item-width, $fe-lg-item-margin);
|
745
738
|
overflow: hidden;
|
746
739
|
padding: $fe-lg-item-padding;
|
747
|
-
|
748
|
-
|
749
|
-
|
740
|
+
|
741
|
+
&.e-fe-drop-folder {
|
742
|
+
@if $fm-skin-name == 'tailwind' or $fm-skin-name == 'bootstrap5' or $fm-skin-name == 'Material3'{
|
750
743
|
border: 1px dashed $fe-drop-folder-bg-color;
|
751
744
|
}
|
752
|
-
|
753
|
-
@if $fm-skin-name == 'FluentUI' {
|
754
|
-
&.e-fe-drop-folder {
|
745
|
+
@else if $fm-skin-name == 'FluentUI' {
|
755
746
|
border: 2px dashed $fe-drop-folder-bg-color;
|
756
747
|
}
|
757
748
|
}
|
758
|
-
@if $fm-skin-name == 'bootstrap4' or $fm-skin-name == 'bootstrap-dark' or $fm-skin-name == 'tailwind' or $fm-skin-name == 'bootstrap5' or $skin-name == 'Material3' {
|
749
|
+
@if $fm-skin-name == 'bootstrap4' or $fm-skin-name == 'bootstrap-dark' or $fm-skin-name == 'tailwind' or $fm-skin-name == 'bootstrap5' or $skin-name == 'Material3' or $fm-skin-name == 'fluent2' {
|
759
750
|
border-radius: 4px;
|
760
751
|
}
|
761
752
|
|
@@ -801,9 +792,7 @@
|
|
801
792
|
|
802
793
|
.e-list-icon {
|
803
794
|
display: block;
|
804
|
-
height
|
805
|
-
margin: $fe-lg-icon-margin;
|
806
|
-
width: $fe-lg-icon-width;
|
795
|
+
@include icon-style($fe-lg-icon-height, $fe-lg-icon-width, $fe-lg-icon-margin);
|
807
796
|
@if $fm-skin-name == 'Material3' {
|
808
797
|
background-position: center;
|
809
798
|
}
|
@@ -853,14 +842,10 @@
|
|
853
842
|
.e-fe-icon {
|
854
843
|
display: inline-block;
|
855
844
|
@if $fm-skin-name == 'tailwind' or $fm-skin-name == 'bootstrap5' {
|
856
|
-
|
857
|
-
margin: 9px 8px;
|
858
|
-
width: 20px;
|
845
|
+
@include icon-style(20px, 20px, 9px 8px);
|
859
846
|
}
|
860
847
|
@else {
|
861
|
-
|
862
|
-
margin: auto 8px;
|
863
|
-
width: 18px;
|
848
|
+
@include icon-style(18px, 18px, auto 8px);
|
864
849
|
}
|
865
850
|
}
|
866
851
|
}
|
@@ -870,16 +855,13 @@
|
|
870
855
|
border-radius: 50%;
|
871
856
|
font-size: 12px;
|
872
857
|
@if $fm-skin-name == 'tailwind' or $fm-skin-name == 'bootstrap5' {
|
873
|
-
|
858
|
+
@include icon-style(20px, 20px, -10px 0 0 -10px);
|
874
859
|
line-height: 18px;
|
875
|
-
margin: -10px 0 0 -10px;
|
876
|
-
width: 20px;
|
877
860
|
}
|
878
861
|
@else {
|
879
|
-
|
862
|
+
@include size(22px, 22px);
|
880
863
|
line-height: 22px;
|
881
864
|
margin-left: -12px;
|
882
|
-
width: 22px;
|
883
865
|
}
|
884
866
|
position: relative;
|
885
867
|
text-align: center;
|
@@ -889,12 +871,9 @@
|
|
889
871
|
|
890
872
|
&.e-rtl {
|
891
873
|
|
892
|
-
.e-treeview {
|
893
|
-
|
894
|
-
|
895
|
-
@if $fm-skin-name != 'tailwind' and $fm-skin-name != 'bootstrap5' {
|
896
|
-
padding: 0 8px 0 0;
|
897
|
-
}
|
874
|
+
.e-treeview > .e-ul {
|
875
|
+
@if $fm-skin-name != 'tailwind' and $fm-skin-name != 'bootstrap5' {
|
876
|
+
padding: 0 8px 0 0;
|
898
877
|
}
|
899
878
|
}
|
900
879
|
|
@@ -932,7 +911,6 @@
|
|
932
911
|
}
|
933
912
|
|
934
913
|
.e-input-group {
|
935
|
-
|
936
914
|
.e-input {
|
937
915
|
@if $fm-skin-name == 'tailwind' or $fm-skin-name == 'bootstrap5' {
|
938
916
|
margin: 0 29px 0 0;
|
@@ -1019,11 +997,8 @@
|
|
1019
997
|
}
|
1020
998
|
}
|
1021
999
|
|
1022
|
-
.e-large-icons {
|
1023
|
-
|
1024
|
-
.e-list-item {
|
1025
|
-
float: right;
|
1026
|
-
}
|
1000
|
+
.e-large-icons .e-list-item {
|
1001
|
+
float: right;
|
1027
1002
|
}
|
1028
1003
|
|
1029
1004
|
.e-fe-clone .e-fe-count {
|
@@ -1046,11 +1021,27 @@
|
|
1046
1021
|
border: $fe-upload-overlay-border dashed $fe-drop-border-color;
|
1047
1022
|
bottom: 0;
|
1048
1023
|
display: block;
|
1049
|
-
|
1024
|
+
@include size(calc(100% - 34px), 100%);
|
1025
|
+
@if $fm-skin-name == 'fluent2' {
|
1026
|
+
width: calc(100% - 48px);
|
1027
|
+
top: 64px;
|
1028
|
+
height: calc(100% - 88px);
|
1029
|
+
left: 24px;
|
1030
|
+
}
|
1050
1031
|
pointer-events: none;
|
1051
1032
|
position: absolute;
|
1052
1033
|
visibility: hidden;
|
1053
|
-
|
1034
|
+
}
|
1035
|
+
|
1036
|
+
@if $fm-skin-name == 'fluent2' {
|
1037
|
+
.e-grid + .e-large-icons + .e-fe-overlay {
|
1038
|
+
top: 82px;
|
1039
|
+
}
|
1040
|
+
|
1041
|
+
.e-grid:has(.e-empty) + .e-large-icons + .e-fe-overlay {
|
1042
|
+
top: 96px;
|
1043
|
+
height: calc(100% - 120px);
|
1044
|
+
}
|
1054
1045
|
}
|
1055
1046
|
|
1056
1047
|
.e-upload-drag-hover {
|
@@ -1070,17 +1061,12 @@
|
|
1070
1061
|
@include popup-active-icon;
|
1071
1062
|
}
|
1072
1063
|
|
1073
|
-
&.e-dlg-resizable {
|
1074
|
-
|
1075
|
-
.e-dlg-content {
|
1076
|
-
overflow: hidden;
|
1077
|
-
}
|
1064
|
+
&.e-dlg-resizable .e-dlg-content {
|
1065
|
+
overflow: hidden;
|
1078
1066
|
}
|
1079
1067
|
|
1080
|
-
&.e-dialog.e-fe-upload-dialog {
|
1081
|
-
|
1082
|
-
overflow: auto;
|
1083
|
-
}
|
1068
|
+
&.e-dialog.e-fe-upload-dialog .e-dlg-content {
|
1069
|
+
overflow: auto;
|
1084
1070
|
}
|
1085
1071
|
|
1086
1072
|
&.e-contextmenu-wrapper ul .e-menu-item.e-separator,
|
@@ -1088,12 +1074,9 @@
|
|
1088
1074
|
margin: $fe-cm-separator-margin;
|
1089
1075
|
}
|
1090
1076
|
|
1091
|
-
&.e-rtl {
|
1092
|
-
|
1093
|
-
|
1094
|
-
display: inline-table;
|
1095
|
-
transform: rotate(180deg);
|
1096
|
-
}
|
1077
|
+
&.e-rtl .e-fe-grid {
|
1078
|
+
display: inline-table;
|
1079
|
+
transform: rotate(180deg);
|
1097
1080
|
}
|
1098
1081
|
|
1099
1082
|
&.e-dialog {
|
@@ -1126,9 +1109,7 @@
|
|
1126
1109
|
|
1127
1110
|
.e-fe-icon {
|
1128
1111
|
display: inline-block;
|
1129
|
-
|
1130
|
-
margin: 0 8px -2px 0;
|
1131
|
-
width: 18px;
|
1112
|
+
@include icon-style(18px, 18px, 0 8px -2px 0);
|
1132
1113
|
}
|
1133
1114
|
|
1134
1115
|
.e-fe-access-header {
|
@@ -1140,28 +1121,22 @@
|
|
1140
1121
|
}
|
1141
1122
|
|
1142
1123
|
.e-image {
|
1143
|
-
|
1144
|
-
width: 100%;
|
1124
|
+
@include size(100%, 100%);
|
1145
1125
|
}
|
1146
1126
|
|
1147
|
-
|
1148
|
-
|
1127
|
+
.e-dlg-content {
|
1128
|
+
@if $fm-skin-name == 'tailwind' or $fm-skin-name == 'bootstrap5' {
|
1149
1129
|
padding-top: 16px;
|
1150
1130
|
}
|
1151
|
-
|
1152
|
-
|
1153
|
-
@if $fm-skin-name == 'FluentUI' {
|
1154
|
-
.e-dlg-content {
|
1131
|
+
@if $fm-skin-name == 'FluentUI' {
|
1155
1132
|
padding-top: 2px;
|
1156
1133
|
}
|
1157
1134
|
}
|
1158
1135
|
|
1159
1136
|
&.e-rtl {
|
1160
|
-
|
1161
1137
|
td {
|
1162
1138
|
padding: $fe-dg-rtl-td-padding;
|
1163
1139
|
}
|
1164
|
-
|
1165
1140
|
.e-fe-icon {
|
1166
1141
|
margin: 0 0 -2px 8px;
|
1167
1142
|
}
|
@@ -1188,20 +1163,24 @@
|
|
1188
1163
|
border-bottom-width: 0;
|
1189
1164
|
border-top-width: 0;
|
1190
1165
|
|
1191
|
-
.e-file-select-wrap {
|
1192
|
-
display: none;
|
1193
|
-
}
|
1194
|
-
|
1195
|
-
.e-icons.e-file-delete-btn {
|
1196
|
-
display: none;
|
1197
|
-
}
|
1198
|
-
|
1199
1166
|
.e-upload-actions {
|
1200
1167
|
border-bottom: 1px solid;
|
1201
1168
|
}
|
1202
1169
|
}
|
1203
1170
|
}
|
1204
1171
|
|
1172
|
+
.e-filemanager .e-display-none,
|
1173
|
+
.e-filemanager .e-treeview .e-icons .e-treeview-spinner,
|
1174
|
+
.e-filemanager .e-splitter .e-split-bar .e-resize-handler,
|
1175
|
+
.e-filemanager .e-splitter .e-display-none,
|
1176
|
+
.e-filemanager .e-grid .e-spin-show,
|
1177
|
+
.e-filemanager .e-grid .e-gridheader .e-emptyrow,
|
1178
|
+
.e-filemanager .e-grid .e-gridcontent .e-emptyrow,
|
1179
|
+
.e-fe-popup .e-upload .e-file-select-wrap,
|
1180
|
+
.e-fe-popup .e-upload .e-icons.e-file-delete-btn {
|
1181
|
+
display: none;
|
1182
|
+
}
|
1183
|
+
|
1205
1184
|
.e-filemanager,
|
1206
1185
|
.e-bigger .e-filemanager,
|
1207
1186
|
.e-filemanager.e-bigger {
|
@@ -1209,12 +1188,13 @@
|
|
1209
1188
|
&.e-fe-mobile {
|
1210
1189
|
|
1211
1190
|
.e-toolbar {
|
1212
|
-
@if ($fm-skin-name == 'Material3') {
|
1213
|
-
height
|
1214
|
-
min-height: $fe-mobile-tb-height;
|
1191
|
+
@if ($fm-skin-name == 'Material3' or $fm-skin-name == 'fluent2') {
|
1192
|
+
@include toolbar-height($fe-mobile-tb-height, $fe-mobile-tb-height);
|
1215
1193
|
}
|
1216
1194
|
}
|
1217
1195
|
|
1196
|
+
.e-toolbar .e-popup-up-icon.e-icons,
|
1197
|
+
.e-toolbar .e-popup-down-icon.e-icons,
|
1218
1198
|
.e-toolbar-items .e-toolbar-item .e-btn-icon.e-icons {
|
1219
1199
|
font-size: $fe-mobile-icon-font-size;
|
1220
1200
|
}
|
@@ -1230,82 +1210,58 @@
|
|
1230
1210
|
&.e-fe-newfolder {
|
1231
1211
|
padding-top: $fe-mobile-newfolder-padding-top;
|
1232
1212
|
}
|
1233
|
-
|
1234
1213
|
&.e-fe-upload {
|
1235
1214
|
padding-left: $fe-mobile-upload-padding-left;
|
1236
1215
|
}
|
1237
|
-
|
1238
1216
|
&.e-fe-sort {
|
1239
1217
|
padding-top: $fe-mobile-sort-padding-top;
|
1240
1218
|
}
|
1241
|
-
|
1242
1219
|
&.e-fe-refresh {
|
1243
1220
|
padding-top: $fe-mobile-refresh-padding-top;
|
1244
1221
|
}
|
1245
|
-
|
1246
1222
|
&.e-fe-select {
|
1247
1223
|
padding-top: $fe-mobile-select-padding-top;
|
1248
1224
|
}
|
1249
|
-
|
1250
1225
|
&.e-fe-large {
|
1251
1226
|
padding: $fe-mobile-large-padding;
|
1252
1227
|
}
|
1253
|
-
|
1254
1228
|
&.e-fe-grid {
|
1255
1229
|
padding: $fe-mobile-grid-padding;
|
1256
1230
|
}
|
1257
|
-
|
1258
1231
|
&.e-fe-details {
|
1259
1232
|
padding-top: $fe-mobile-details-padding-top;
|
1260
1233
|
}
|
1261
|
-
|
1262
1234
|
&.e-fe-delete {
|
1263
1235
|
padding-left: $fe-mobile-delete-padding-left;
|
1264
1236
|
}
|
1265
|
-
|
1266
1237
|
&.e-fe-rename {
|
1267
1238
|
padding-left: $fe-mobile-rename-padding-left;
|
1268
1239
|
padding-top: $fe-mobile-rename-padding-top;
|
1269
1240
|
}
|
1270
|
-
|
1271
1241
|
&.e-fe-download {
|
1272
1242
|
padding-left: $fe-mobile-download-padding-left;
|
1273
1243
|
}
|
1274
|
-
|
1275
1244
|
&.e-fe-cut {
|
1276
1245
|
padding-left: $fe-mobile-cut-padding-left;
|
1277
1246
|
padding-top: $fe-mobile-cut-padding-top;
|
1278
1247
|
}
|
1279
|
-
|
1280
1248
|
&.e-fe-copy {
|
1281
1249
|
padding-left: $fe-mobile-copy-padding-left;
|
1282
1250
|
}
|
1283
1251
|
}
|
1284
1252
|
}
|
1285
1253
|
|
1286
|
-
.e-toolbar .e-popup-up-icon.e-icons,
|
1287
|
-
.e-toolbar .e-popup-down-icon.e-icons {
|
1288
|
-
font-size: $fe-mobile-icon-font-size;
|
1289
|
-
}
|
1290
|
-
|
1291
1254
|
.e-toolbar-left {
|
1292
|
-
|
1293
1255
|
.e-icons.e-fe-sort {
|
1294
1256
|
display: inline-block;
|
1295
1257
|
margin: 0;
|
1296
1258
|
width: 14px;
|
1297
1259
|
}
|
1298
1260
|
|
1299
|
-
.e-tbar-ddb-text
|
1261
|
+
.e-tbar-ddb-text,
|
1262
|
+
.e-toolbar-item .e-tbar-btn-text {
|
1300
1263
|
display: none;
|
1301
1264
|
}
|
1302
|
-
|
1303
|
-
.e-toolbar-item {
|
1304
|
-
|
1305
|
-
.e-tbar-btn-text {
|
1306
|
-
display: none;
|
1307
|
-
}
|
1308
|
-
}
|
1309
1265
|
}
|
1310
1266
|
|
1311
1267
|
.e-splitter .e-split-bar {
|
@@ -1336,8 +1292,7 @@
|
|
1336
1292
|
|
1337
1293
|
.e-input-group {
|
1338
1294
|
display: none;
|
1339
|
-
|
1340
|
-
width: 100%;
|
1295
|
+
@include size($fe-mobile-search-height, 100%);
|
1341
1296
|
|
1342
1297
|
.e-clear-icon {
|
1343
1298
|
margin: 2px 8px 0;
|
@@ -1361,8 +1316,7 @@
|
|
1361
1316
|
.e-grid {
|
1362
1317
|
|
1363
1318
|
.e-fe-grid-icon .e-fe-icon {
|
1364
|
-
|
1365
|
-
width: $fe-mobile-grid-icon-size;
|
1319
|
+
@include size($fe-mobile-grid-icon-size, $fe-mobile-grid-icon-size);
|
1366
1320
|
@if $fm-skin-name == 'tailwind' or $fm-skin-name == 'bootstrap5' {
|
1367
1321
|
margin: 0 8px 0 0;
|
1368
1322
|
}
|
@@ -1373,7 +1327,6 @@
|
|
1373
1327
|
}
|
1374
1328
|
|
1375
1329
|
.e-content {
|
1376
|
-
|
1377
1330
|
.e-rowcell {
|
1378
1331
|
border-bottom: 1px solid;
|
1379
1332
|
border-bottom-color: $fe-border-color;
|
@@ -1398,6 +1351,17 @@
|
|
1398
1351
|
.e-fe-text {
|
1399
1352
|
@include ellipsis;
|
1400
1353
|
}
|
1354
|
+
|
1355
|
+
@if $fm-skin-name == 'fluent2' {
|
1356
|
+
.e-fe-text {
|
1357
|
+
font-size: $text-base;
|
1358
|
+
line-height: 22px;
|
1359
|
+
}
|
1360
|
+
.e-fe-date,
|
1361
|
+
.e-fe-size {
|
1362
|
+
color: $fe-grid-empty-inner-content-color;
|
1363
|
+
}
|
1364
|
+
}
|
1401
1365
|
}
|
1402
1366
|
|
1403
1367
|
.e-large-icons .e-list-parent {
|
@@ -1405,9 +1369,7 @@
|
|
1405
1369
|
|
1406
1370
|
.e-list-item {
|
1407
1371
|
display: inline-table;
|
1408
|
-
height
|
1409
|
-
margin: $fe-mobile-lg-item-margin;
|
1410
|
-
width: $fe-mobile-lg-item-width;
|
1372
|
+
@include icon-style($fe-mobile-lg-item-height, $fe-mobile-lg-item-width, $fe-mobile-lg-item-margin);
|
1411
1373
|
|
1412
1374
|
&.e-hover,
|
1413
1375
|
&:hover {
|
@@ -1437,28 +1399,16 @@
|
|
1437
1399
|
}
|
1438
1400
|
|
1439
1401
|
.e-list-icon {
|
1440
|
-
height
|
1441
|
-
margin: $fe-mobile-lg-icon-margin;
|
1442
|
-
width: $fe-mobile-lg-icon-width;
|
1402
|
+
@include icon-style($fe-mobile-lg-icon-height, $fe-mobile-lg-icon-width, $fe-mobile-lg-icon-margin);
|
1443
1403
|
}
|
1444
1404
|
}
|
1445
1405
|
}
|
1446
1406
|
}
|
1447
1407
|
|
1448
1408
|
&.e-fe-m-select {
|
1449
|
-
|
1450
|
-
.e-
|
1451
|
-
|
1452
|
-
.e-list-item.e-large-icon {
|
1453
|
-
@include visibility(visible);
|
1454
|
-
}
|
1455
|
-
}
|
1456
|
-
|
1457
|
-
.e-grid {
|
1458
|
-
|
1459
|
-
.e-content .e-row .e-rowcell {
|
1460
|
-
@include visibility(visible);
|
1461
|
-
}
|
1409
|
+
.e-large-icons .e-list-item.e-large-icon,
|
1410
|
+
.e-grid .e-content .e-row .e-rowcell {
|
1411
|
+
@include visibility(visible);
|
1462
1412
|
}
|
1463
1413
|
}
|
1464
1414
|
|
@@ -1467,8 +1417,7 @@
|
|
1467
1417
|
.e-address {
|
1468
1418
|
|
1469
1419
|
.e-search-wrap {
|
1470
|
-
margin
|
1471
|
-
padding: 0;
|
1420
|
+
@include margin-padding(0, 0);
|
1472
1421
|
position: absolute;
|
1473
1422
|
width: 100%;
|
1474
1423
|
|
@@ -1501,15 +1450,11 @@
|
|
1501
1450
|
}
|
1502
1451
|
|
1503
1452
|
&.e-fe-m-filter.e-rtl {
|
1504
|
-
|
1505
1453
|
.e-address {
|
1506
|
-
|
1507
1454
|
.e-search-wrap {
|
1508
|
-
|
1509
1455
|
.e-input-group .e-input {
|
1510
1456
|
margin-right: 45px;
|
1511
1457
|
}
|
1512
|
-
|
1513
1458
|
.e-fe-search {
|
1514
1459
|
transform: rotate(180deg);
|
1515
1460
|
}
|
@@ -1517,16 +1462,11 @@
|
|
1517
1462
|
}
|
1518
1463
|
}
|
1519
1464
|
|
1520
|
-
&.e-rtl {
|
1521
|
-
|
1522
|
-
.e-
|
1523
|
-
|
1524
|
-
|
1525
|
-
.e-gridcontent {
|
1526
|
-
|
1527
|
-
.e-fe-grid-icon {
|
1528
|
-
padding-right: 10px;
|
1529
|
-
}
|
1465
|
+
&.e-rtl .e-grid {
|
1466
|
+
.e-gridheader,
|
1467
|
+
.e-gridcontent {
|
1468
|
+
.e-fe-grid-icon {
|
1469
|
+
padding-right: 10px;
|
1530
1470
|
}
|
1531
1471
|
}
|
1532
1472
|
}
|
@@ -1543,11 +1483,9 @@
|
|
1543
1483
|
}
|
1544
1484
|
|
1545
1485
|
&.e-dialog {
|
1546
|
-
|
1547
1486
|
.e-dlg-header-content {
|
1548
1487
|
padding: $fe-big-dg-header-font-size;
|
1549
1488
|
}
|
1550
|
-
|
1551
1489
|
td {
|
1552
1490
|
@include ellipsis;
|
1553
1491
|
font-size: $fe-big-dg-td-font-size;
|
@@ -1563,16 +1501,16 @@
|
|
1563
1501
|
|
1564
1502
|
.e-toolbar {
|
1565
1503
|
|
1566
|
-
@if ($fm-skin-name == 'Material3') {
|
1567
|
-
height
|
1568
|
-
min-height: $fe-big-tb-height;
|
1569
|
-
|
1504
|
+
@if ($fm-skin-name == 'Material3' or $fm-skin-name == 'fluent2') {
|
1505
|
+
@include toolbar-height($fe-big-tb-height, $fe-big-tb-height);
|
1570
1506
|
.e-toolbar-item:not(.e-separator) {
|
1571
1507
|
min-height: $fe-big-tb-height;
|
1572
1508
|
padding: 4px;
|
1573
1509
|
}
|
1574
1510
|
}
|
1575
1511
|
|
1512
|
+
.e-popup-up-icon.e-icons,
|
1513
|
+
.e-popup-down-icon.e-icons,
|
1576
1514
|
.e-toolbar-items .e-toolbar-item .e-btn-icon.e-icons {
|
1577
1515
|
font-size: $fe-mobile-icon-font-size;
|
1578
1516
|
}
|
@@ -1580,27 +1518,19 @@
|
|
1580
1518
|
.e-toolbar-items .e-toolbar-item .e-dropdown-btn.e-btn {
|
1581
1519
|
&.e-tbar-btn {
|
1582
1520
|
padding: $fe-big-tb-ddb-btn-padding;
|
1583
|
-
}
|
1584
|
-
|
1585
|
-
&.e-tbar-btn.e-active {
|
1586
|
-
padding: $fe-big-tb-ddb-btn-hvr-padding;
|
1587
|
-
}
|
1588
|
-
|
1589
|
-
&.e-tbar-btn:hover {
|
1590
|
-
padding: $fe-big-tb-ddb-btn-hvr-padding;
|
1591
|
-
}
|
1592
1521
|
|
1593
|
-
|
1594
|
-
|
1522
|
+
&.e-active,
|
1523
|
+
&:hover,
|
1524
|
+
&:focus {
|
1525
|
+
padding: $fe-big-tb-ddb-btn-hvr-padding;
|
1526
|
+
}
|
1595
1527
|
}
|
1596
1528
|
|
1597
1529
|
&.e-tbar-btn .e-btn-icon.e-icons.e-caret {
|
1598
1530
|
@if $fm-skin-name == 'tailwind' {
|
1599
1531
|
font-size: 22px;
|
1600
|
-
|
1601
|
-
margin: 4px 4px 0;
|
1532
|
+
@include icon-style(22px, 22px, 4px 4px 0);
|
1602
1533
|
padding: 1px;
|
1603
|
-
width: 22px;
|
1604
1534
|
}
|
1605
1535
|
@else {
|
1606
1536
|
padding: 0 10px;
|
@@ -1611,11 +1541,6 @@
|
|
1611
1541
|
.e-toolbar-pop .e-toolbar-item .e-dropdown-btn .e-btn-icon.e-icons.e-caret {
|
1612
1542
|
padding: 0 10px;
|
1613
1543
|
}
|
1614
|
-
|
1615
|
-
.e-popup-up-icon.e-icons,
|
1616
|
-
.e-popup-down-icon.e-icons {
|
1617
|
-
font-size: $fe-mobile-icon-font-size;
|
1618
|
-
}
|
1619
1544
|
}
|
1620
1545
|
@if $fm-skin-name == 'tailwind' or $fm-skin-name == 'bootstrap5' {
|
1621
1546
|
.e-fe-clone {
|
@@ -1627,17 +1552,14 @@
|
|
1627
1552
|
}
|
1628
1553
|
|
1629
1554
|
.e-fe-icon {
|
1630
|
-
|
1631
|
-
margin: 7px 12px;
|
1632
|
-
width: 24px;
|
1555
|
+
@include icon-style(24px, 24px, 7px 12px);
|
1633
1556
|
}
|
1634
1557
|
}
|
1635
1558
|
|
1636
1559
|
.e-fe-count {
|
1637
1560
|
font-size: $text-sm;
|
1638
|
-
|
1561
|
+
@include size(24px, 24px);
|
1639
1562
|
line-height: 22px;
|
1640
|
-
width: 24px;
|
1641
1563
|
}
|
1642
1564
|
}
|
1643
1565
|
}
|
@@ -1651,11 +1573,9 @@
|
|
1651
1573
|
}
|
1652
1574
|
|
1653
1575
|
.e-list-parent .e-list-item {
|
1654
|
-
|
1655
1576
|
.e-fullrow {
|
1656
1577
|
height: $fe-big-tv-fullrow-height;
|
1657
1578
|
}
|
1658
|
-
|
1659
1579
|
.e-list-text {
|
1660
1580
|
height: $fe-big-tv-node-height;
|
1661
1581
|
line-height: $fe-big-tv-node-height;
|
@@ -1677,7 +1597,6 @@
|
|
1677
1597
|
@if ($fm-skin-name != 'Material3') {
|
1678
1598
|
height: $fe-big-bc-li-item-height;
|
1679
1599
|
}
|
1680
|
-
|
1681
1600
|
.e-icons {
|
1682
1601
|
font-size: $fe-big-bc-icon-font-size;
|
1683
1602
|
}
|
@@ -1708,11 +1627,10 @@
|
|
1708
1627
|
@if ($fm-skin-name == 'material' or $fm-skin-name == 'material-dark') {
|
1709
1628
|
height: 39px;
|
1710
1629
|
}
|
1711
|
-
@if ($fm-skin-name == 'FluentUI') {
|
1630
|
+
@else if ($fm-skin-name == 'FluentUI') {
|
1712
1631
|
height: 30px;
|
1713
1632
|
}
|
1714
|
-
|
1715
|
-
@if ($fm-skin-name == 'Material3') {
|
1633
|
+
@else if ($fm-skin-name == 'Material3') {
|
1716
1634
|
margin: $fe-big-search-input-margin;
|
1717
1635
|
height: $fe-big-search-input-height;
|
1718
1636
|
}
|
@@ -1727,31 +1645,24 @@
|
|
1727
1645
|
}
|
1728
1646
|
|
1729
1647
|
.e-fe-search {
|
1730
|
-
@if $fm-skin-name == 'tailwind' or $fm-skin-name == 'bootstrap5' {
|
1731
|
-
font-size: 16px;
|
1732
|
-
}
|
1733
|
-
@else if $fm-skin-name == 'FluentUI' {
|
1734
|
-
font-size: 18px;
|
1735
|
-
}
|
1736
1648
|
@if $fm-skin-name == 'tailwind' {
|
1649
|
+
font-size: 16px;
|
1737
1650
|
margin: 7px 4px;
|
1738
1651
|
}
|
1739
1652
|
@else if $fm-skin-name == 'bootstrap5' {
|
1653
|
+
font-size: 16px;
|
1740
1654
|
margin: 4px;
|
1741
1655
|
}
|
1742
1656
|
@else if $fm-skin-name == 'FluentUI' {
|
1657
|
+
font-size: 18px;
|
1743
1658
|
margin: 3px;
|
1744
1659
|
}
|
1745
|
-
@else if
|
1746
|
-
margin
|
1660
|
+
@else if $fm-skin-name == 'Material3' {
|
1661
|
+
@include margin-padding($fe-search-icon-margin, $fe-big-search-input-padding);
|
1747
1662
|
}
|
1748
1663
|
@else {
|
1749
1664
|
margin: 7px 0;
|
1750
1665
|
}
|
1751
|
-
|
1752
|
-
@if ($fm-skin-name == 'Material3') {
|
1753
|
-
padding: $fe-big-search-input-padding;
|
1754
|
-
}
|
1755
1666
|
}
|
1756
1667
|
}
|
1757
1668
|
|
@@ -1759,11 +1670,9 @@
|
|
1759
1670
|
@include checkbox($fe-big-cb-line-height);
|
1760
1671
|
|
1761
1672
|
.e-gridheader {
|
1762
|
-
|
1763
1673
|
.e-headercell {
|
1764
1674
|
height: $fe-big-grid-header-height;
|
1765
1675
|
}
|
1766
|
-
|
1767
1676
|
.e-headertext {
|
1768
1677
|
font-size: $fe-big-grid-header-font-size;
|
1769
1678
|
}
|
@@ -1814,40 +1723,21 @@
|
|
1814
1723
|
|
1815
1724
|
.e-fe-icon {
|
1816
1725
|
@if $fm-skin-name == 'tailwind' {
|
1817
|
-
|
1818
|
-
width: 24px;
|
1726
|
+
@include size(24px, 24px);
|
1819
1727
|
}
|
1820
1728
|
@else {
|
1821
1729
|
margin: $fe-big-grid-icon-margin;
|
1822
1730
|
}
|
1823
1731
|
}
|
1824
1732
|
|
1825
|
-
|
1826
|
-
min-width: $fe-big-grid-empty-min-width;
|
1827
|
-
}
|
1828
|
-
|
1829
|
-
.e-empty-content {
|
1830
|
-
font-size: $fe-big-grid-empty-content-font-size;
|
1831
|
-
margin: $fe-big-grid-empty-content-margin;
|
1832
|
-
padding: $fe-big-grid-empty-content-padding;
|
1833
|
-
text-align: $fe-big-grid-empty-content-text-align;
|
1834
|
-
}
|
1835
|
-
|
1836
|
-
.e-empty-icon {
|
1837
|
-
height: $fe-big-grid-empty-icon-height;
|
1838
|
-
margin: $fe-big-grid-empty-icon-margin;
|
1839
|
-
width: $fe-big-grid-empty-icon-width;
|
1840
|
-
}
|
1733
|
+
@include empty-style($fe-big-grid-empty-min-width, $fe-big-grid-empty-content-font-size, $fe-big-grid-empty-content-margin, $fe-big-grid-empty-content-padding, $fe-big-grid-empty-content-text-align, $fe-big-grid-empty-icon-height, $fe-big-grid-empty-icon-width, $fe-big-grid-empty-icon-margin, $fe-big-grid-empty-inner-content-font-size, $fe-big-grid-empty-inner-content-margin, $fe-big-grid-empty-inner-content-padding, $fe-big-grid-empty-inner-content-text-align);
|
1841
1734
|
|
1842
1735
|
.e-empty-inner-content {
|
1843
|
-
font-size: $fe-big-grid-empty-inner-content-font-size;
|
1844
|
-
margin: $fe-big-grid-empty-inner-content-margin;
|
1845
1736
|
@if $fm-skin-name != 'tailwind' and $fm-skin-name != 'bootstrap5' {
|
1846
1737
|
opacity: $fe-big-grid-empty-inner-content-opacity;
|
1847
1738
|
}
|
1848
|
-
padding: $fe-big-grid-empty-inner-content-padding;
|
1849
|
-
text-align: $fe-big-grid-empty-inner-content-text-align;
|
1850
1739
|
}
|
1740
|
+
|
1851
1741
|
&.e-rtl .e-checkbox-wrapper .e-frame {
|
1852
1742
|
@if $fm-skin-name == 'FluentUI' {
|
1853
1743
|
margin-right: -16px;
|
@@ -1866,9 +1756,7 @@
|
|
1866
1756
|
}
|
1867
1757
|
|
1868
1758
|
.e-list-item {
|
1869
|
-
height
|
1870
|
-
margin: $fe-big-lg-item-margin;
|
1871
|
-
width: $fe-big-lg-item-width;
|
1759
|
+
@include icon-style($fe-big-lg-item-height, $fe-big-lg-item-width, $fe-big-lg-item-margin);
|
1872
1760
|
}
|
1873
1761
|
|
1874
1762
|
.e-text-content {
|
@@ -1887,58 +1775,30 @@
|
|
1887
1775
|
}
|
1888
1776
|
|
1889
1777
|
.e-list-icon {
|
1890
|
-
height
|
1891
|
-
margin: $fe-big-lg-icon-margin;
|
1892
|
-
width: $fe-big-lg-icon-width;
|
1778
|
+
@include icon-style($fe-big-lg-icon-height, $fe-big-lg-icon-width, $fe-big-lg-icon-margin);
|
1893
1779
|
}
|
1894
1780
|
|
1895
|
-
|
1896
|
-
min-width: $fe-big-lg-icon-empty-min-width;
|
1897
|
-
}
|
1898
|
-
|
1899
|
-
.e-empty-content {
|
1900
|
-
font-size: $fe-big-lg-icon-empty-content-font-size;
|
1901
|
-
margin: $fe-big-lg-icon-empty-content-margin;
|
1902
|
-
padding: $fe-big-lg-icon-empty-content-padding;
|
1903
|
-
text-align: $fe-big-lg-icon-empty-content-text-align;
|
1904
|
-
}
|
1905
|
-
|
1906
|
-
.e-empty-icon {
|
1907
|
-
height: $fe-big-lg-icon-empty-icon-height;
|
1908
|
-
margin: $fe-big-lg-icon-empty-icon-margin;
|
1909
|
-
width: $fe-big-lg-icon-empty-icon-width;
|
1910
|
-
}
|
1781
|
+
@include empty-style($fe-big-lg-icon-empty-min-width, $fe-big-lg-icon-empty-content-font-size, $fe-big-lg-icon-empty-content-margin, $fe-big-lg-icon-empty-content-padding, $fe-big-lg-icon-empty-content-text-align, $fe-big-lg-icon-empty-icon-height, $fe-big-lg-icon-empty-icon-width, $fe-big-lg-icon-empty-icon-margin, $fe-big-lg-icon-empty-inner-content-font-size, $fe-big-lg-icon-empty-inner-content-margin, $fe-big-lg-icon-empty-inner-content-padding, $fe-big-lg-icon-empty-inner-content-text-align);
|
1911
1782
|
|
1912
1783
|
.e-empty-inner-content {
|
1913
|
-
font-size: $fe-big-lg-icon-empty-inner-content-font-size;
|
1914
|
-
margin: $fe-big-lg-icon-empty-inner-content-margin;
|
1915
1784
|
@if $fm-skin-name != 'tailwind' and $fm-skin-name != 'bootstrap5' {
|
1916
1785
|
opacity: $fe-big-lg-icon-empty-inner-content-opacity;
|
1917
1786
|
}
|
1918
|
-
padding: $fe-big-lg-icon-empty-inner-content-padding;
|
1919
|
-
text-align: $fe-big-lg-icon-empty-inner-content-text-align;
|
1920
1787
|
}
|
1921
1788
|
}
|
1922
1789
|
|
1923
1790
|
&.e-rtl {
|
1924
1791
|
|
1925
|
-
.e-treeview {
|
1926
|
-
|
1927
|
-
|
1928
|
-
@if $fm-skin-name != 'tailwind' and $fm-skin-name != 'bootstrap5' {
|
1929
|
-
padding: 0 12px 0 0;
|
1930
|
-
}
|
1792
|
+
.e-treeview > .e-ul {
|
1793
|
+
@if $fm-skin-name != 'tailwind' and $fm-skin-name != 'bootstrap5' {
|
1794
|
+
padding: 0 12px 0 0;
|
1931
1795
|
}
|
1932
1796
|
}
|
1933
1797
|
|
1934
1798
|
@if $fm-skin-name =='Material3' {
|
1935
1799
|
.e-address {
|
1936
|
-
.e-search-wrap {
|
1937
|
-
|
1938
|
-
.e-input {
|
1939
|
-
margin: $fe-big-rtl-search-input-margin;
|
1940
|
-
}
|
1941
|
-
}
|
1800
|
+
.e-search-wrap .e-input-group .e-input {
|
1801
|
+
margin: $fe-big-rtl-search-input-margin;
|
1942
1802
|
}
|
1943
1803
|
|
1944
1804
|
.e-fe-search {
|
@@ -2000,7 +1860,6 @@
|
|
2000
1860
|
}
|
2001
1861
|
|
2002
1862
|
.e-content-placeholder.e-filemanager.e-placeholder-filemanager {
|
2003
|
-
|
2004
|
-
width: 100%;
|
1863
|
+
@include size(100%, 100%);
|
2005
1864
|
}
|
2006
1865
|
}
|