@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.
Files changed (172) hide show
  1. package/CHANGELOG.md +412 -410
  2. package/README.md +69 -69
  3. package/dist/ej2-filemanager.min.js +1 -0
  4. package/dist/ej2-filemanager.umd.min.js +1 -10
  5. package/dist/ej2-filemanager.umd.min.js.map +1 -1
  6. package/dist/es6/ej2-filemanager.es2015.js +57 -54
  7. package/dist/es6/ej2-filemanager.es2015.js.map +1 -1
  8. package/dist/es6/ej2-filemanager.es5.js +174 -171
  9. package/dist/es6/ej2-filemanager.es5.js.map +1 -1
  10. package/dist/global/ej2-filemanager.min.js +1 -10
  11. package/dist/global/ej2-filemanager.min.js.map +1 -1
  12. package/dist/global/index.d.ts +0 -9
  13. package/dist/ts/file-manager/actions/breadcrumb-bar.ts +427 -0
  14. package/dist/ts/file-manager/actions/toolbar.ts +498 -0
  15. package/dist/ts/file-manager/base/classes.ts +225 -0
  16. package/dist/ts/file-manager/base/constant.ts +137 -0
  17. package/dist/ts/file-manager/base/file-manager.ts +1659 -0
  18. package/dist/ts/file-manager/base/interface.ts +652 -0
  19. package/dist/ts/file-manager/common/operations.ts +614 -0
  20. package/dist/ts/file-manager/common/utility.ts +1503 -0
  21. package/dist/ts/file-manager/layout/details-view.ts +1837 -0
  22. package/dist/ts/file-manager/layout/large-icons-view.ts +1587 -0
  23. package/dist/ts/file-manager/layout/navigation-pane.ts +879 -0
  24. package/dist/ts/file-manager/models/ajax-settings.ts +39 -0
  25. package/dist/ts/file-manager/models/column.ts +197 -0
  26. package/dist/ts/file-manager/models/contextMenu-settings.ts +44 -0
  27. package/dist/ts/file-manager/models/default-locale.ts +102 -0
  28. package/dist/ts/file-manager/models/details-view-settings.ts +48 -0
  29. package/dist/ts/file-manager/models/navigation-pane-settings.ts +42 -0
  30. package/dist/ts/file-manager/models/search-settings.ts +48 -0
  31. package/dist/ts/file-manager/models/toolbar-settings.ts +25 -0
  32. package/dist/ts/file-manager/models/upload-settings.ts +51 -0
  33. package/dist/ts/file-manager/pop-up/context-menu.ts +614 -0
  34. package/dist/ts/file-manager/pop-up/dialog.ts +996 -0
  35. package/helpers/e2e/filemanagerHelper.js +183 -166
  36. package/license +9 -9
  37. package/package.json +72 -72
  38. package/src/file-manager/base/file-manager-model.d.ts +329 -329
  39. package/src/file-manager/base/file-manager.js +19 -19
  40. package/src/file-manager/models/ajax-settings-model.d.ts +21 -21
  41. package/src/file-manager/models/ajax-settings.js +19 -19
  42. package/src/file-manager/models/column-model.d.ts +98 -98
  43. package/src/file-manager/models/column.js +19 -19
  44. package/src/file-manager/models/contextMenu-settings-model.d.ts +21 -21
  45. package/src/file-manager/models/contextMenu-settings.js +19 -19
  46. package/src/file-manager/models/details-view-settings-model.d.ts +19 -19
  47. package/src/file-manager/models/details-view-settings.js +19 -19
  48. package/src/file-manager/models/navigation-pane-settings-model.d.ts +25 -25
  49. package/src/file-manager/models/navigation-pane-settings.js +19 -19
  50. package/src/file-manager/models/search-settings-model.d.ts +26 -26
  51. package/src/file-manager/models/search-settings.js +19 -19
  52. package/src/file-manager/models/toolbar-settings-model.d.ts +11 -11
  53. package/src/file-manager/models/toolbar-settings.js +19 -19
  54. package/src/file-manager/models/upload-settings-model.d.ts +31 -31
  55. package/src/file-manager/models/upload-settings.js +19 -19
  56. package/src/file-manager/pop-up/context-menu.js +3 -0
  57. package/styles/compatibility/bootstrap.css +1 -0
  58. package/styles/compatibility/bootstrap.scss +12 -0
  59. package/styles/compatibility/bootstrap4.css +1 -0
  60. package/styles/compatibility/bootstrap4.scss +12 -0
  61. package/styles/compatibility/fabric.css +1 -0
  62. package/styles/compatibility/fabric.scss +12 -0
  63. package/styles/compatibility/highcontrast.css +1 -0
  64. package/styles/compatibility/highcontrast.scss +12 -0
  65. package/styles/compatibility/material.css +1 -0
  66. package/styles/compatibility/material.scss +12 -0
  67. package/styles/file-manager/_all.scss +2 -2
  68. package/styles/file-manager/_bds-definition.scss +236 -0
  69. package/styles/file-manager/_bigger.scss +759 -0
  70. package/styles/file-manager/_bootstrap-dark-definition.scss +244 -240
  71. package/styles/file-manager/_bootstrap-definition.scss +245 -241
  72. package/styles/file-manager/_bootstrap4-definition.scss +246 -242
  73. package/styles/file-manager/_bootstrap5-definition.scss +242 -237
  74. package/styles/file-manager/_bootstrap5.3-definition.scss +242 -0
  75. package/styles/file-manager/_fabric-dark-definition.scss +242 -238
  76. package/styles/file-manager/_fabric-definition.scss +244 -240
  77. package/styles/file-manager/_fluent-definition.scss +249 -246
  78. package/styles/file-manager/_fluent2-definition.scss +255 -0
  79. package/styles/file-manager/_fusionnew-definition.scss +241 -0
  80. package/styles/file-manager/_highcontrast-definition.scss +244 -240
  81. package/styles/file-manager/_highcontrast-light-definition.scss +244 -240
  82. package/styles/file-manager/_layout.scss +1252 -1815
  83. package/styles/file-manager/_material-dark-definition.scss +245 -240
  84. package/styles/file-manager/_material-definition.scss +245 -240
  85. package/styles/file-manager/_material3-definition.scss +235 -0
  86. package/styles/file-manager/_tailwind-definition.scss +236 -232
  87. package/styles/file-manager/_theme.scss +418 -397
  88. package/styles/file-manager/icons/_bds.scss +235 -0
  89. package/styles/file-manager/icons/_bootstrap-dark.scss +235 -235
  90. package/styles/file-manager/icons/_bootstrap.scss +235 -236
  91. package/styles/file-manager/icons/_bootstrap4.scss +235 -236
  92. package/styles/file-manager/icons/_bootstrap5.3.scss +235 -0
  93. package/styles/file-manager/icons/_bootstrap5.scss +235 -235
  94. package/styles/file-manager/icons/_fabric-dark.scss +229 -230
  95. package/styles/file-manager/icons/_fabric.scss +229 -230
  96. package/styles/file-manager/icons/_fluent.scss +235 -235
  97. package/styles/file-manager/icons/_fluent2.scss +235 -0
  98. package/styles/file-manager/icons/_fusionnew.scss +235 -0
  99. package/styles/file-manager/icons/_highcontrast-light.scss +235 -235
  100. package/styles/file-manager/icons/_highcontrast.scss +229 -229
  101. package/styles/file-manager/icons/_material-dark.scss +235 -235
  102. package/styles/file-manager/icons/_material.scss +235 -235
  103. package/styles/file-manager/icons/_material3.scss +235 -0
  104. package/styles/file-manager/icons/_tailwind.scss +235 -235
  105. package/.eslintrc.json +0 -244
  106. package/styles/bootstrap-dark.css +0 -1920
  107. package/styles/bootstrap-dark.scss +0 -1
  108. package/styles/bootstrap.css +0 -1899
  109. package/styles/bootstrap.scss +0 -1
  110. package/styles/bootstrap4.css +0 -1935
  111. package/styles/bootstrap4.scss +0 -1
  112. package/styles/bootstrap5-dark.css +0 -1982
  113. package/styles/bootstrap5-dark.scss +0 -1
  114. package/styles/bootstrap5.css +0 -1982
  115. package/styles/bootstrap5.scss +0 -1
  116. package/styles/fabric-dark.css +0 -1891
  117. package/styles/fabric-dark.scss +0 -1
  118. package/styles/fabric.css +0 -1891
  119. package/styles/fabric.scss +0 -1
  120. package/styles/file-manager/_bootstrap5-dark-definition.scss +0 -1
  121. package/styles/file-manager/_fluent-dark-definition.scss +0 -1
  122. package/styles/file-manager/_tailwind-dark-definition.scss +0 -1
  123. package/styles/file-manager/bootstrap-dark.css +0 -1920
  124. package/styles/file-manager/bootstrap-dark.scss +0 -16
  125. package/styles/file-manager/bootstrap.css +0 -1899
  126. package/styles/file-manager/bootstrap.scss +0 -16
  127. package/styles/file-manager/bootstrap4.css +0 -1935
  128. package/styles/file-manager/bootstrap4.scss +0 -16
  129. package/styles/file-manager/bootstrap5-dark.css +0 -1982
  130. package/styles/file-manager/bootstrap5-dark.scss +0 -16
  131. package/styles/file-manager/bootstrap5.css +0 -1982
  132. package/styles/file-manager/bootstrap5.scss +0 -16
  133. package/styles/file-manager/fabric-dark.css +0 -1891
  134. package/styles/file-manager/fabric-dark.scss +0 -16
  135. package/styles/file-manager/fabric.css +0 -1891
  136. package/styles/file-manager/fabric.scss +0 -16
  137. package/styles/file-manager/fluent-dark.css +0 -1901
  138. package/styles/file-manager/fluent-dark.scss +0 -16
  139. package/styles/file-manager/fluent.css +0 -1900
  140. package/styles/file-manager/fluent.scss +0 -16
  141. package/styles/file-manager/highcontrast-light.css +0 -1897
  142. package/styles/file-manager/highcontrast-light.scss +0 -16
  143. package/styles/file-manager/highcontrast.css +0 -1897
  144. package/styles/file-manager/highcontrast.scss +0 -16
  145. package/styles/file-manager/icons/_bootstrap5-dark.scss +0 -1
  146. package/styles/file-manager/icons/_fluent-dark.scss +0 -1
  147. package/styles/file-manager/icons/_tailwind-dark.scss +0 -1
  148. package/styles/file-manager/material-dark.css +0 -1945
  149. package/styles/file-manager/material-dark.scss +0 -16
  150. package/styles/file-manager/material.css +0 -1932
  151. package/styles/file-manager/material.scss +0 -16
  152. package/styles/file-manager/tailwind-dark.css +0 -1969
  153. package/styles/file-manager/tailwind-dark.scss +0 -16
  154. package/styles/file-manager/tailwind.css +0 -1969
  155. package/styles/file-manager/tailwind.scss +0 -16
  156. package/styles/fluent-dark.css +0 -1901
  157. package/styles/fluent-dark.scss +0 -1
  158. package/styles/fluent.css +0 -1900
  159. package/styles/fluent.scss +0 -1
  160. package/styles/highcontrast-light.css +0 -1897
  161. package/styles/highcontrast-light.scss +0 -1
  162. package/styles/highcontrast.css +0 -1897
  163. package/styles/highcontrast.scss +0 -1
  164. package/styles/material-dark.css +0 -1945
  165. package/styles/material-dark.scss +0 -1
  166. package/styles/material.css +0 -1932
  167. package/styles/material.scss +0 -1
  168. package/styles/tailwind-dark.css +0 -1969
  169. package/styles/tailwind-dark.scss +0 -1
  170. package/styles/tailwind.css +0 -1969
  171. package/styles/tailwind.scss +0 -1
  172. package/tslint.json +0 -111
@@ -0,0 +1,759 @@
1
+ @mixin visibility($value) {
2
+ .e-checkbox-wrapper {
3
+ visibility: $value;
4
+ @if $fm-skin-name == 'fluent2' {
5
+ padding: 0;
6
+ }
7
+ }
8
+ }
9
+
10
+ @mixin ellipsis {
11
+ overflow: hidden;
12
+ text-overflow: ellipsis;
13
+ white-space: nowrap;
14
+ }
15
+
16
+ @mixin size($height, $width) {
17
+ height: $height;
18
+ width: $width;
19
+ }
20
+
21
+ @mixin checkbox($value) {
22
+ .e-checkbox-wrapper .e-frame {
23
+ border-width: 1px;
24
+ line-height: $value;
25
+ @if $fm-skin-name == 'fluent2' {
26
+ @include size(16px, 16px);
27
+ font-size: 10px;
28
+ margin: 0;
29
+ }
30
+ }
31
+ }
32
+
33
+ @mixin icon-style($height, $width, $margin) {
34
+ height: $height;
35
+ margin: $margin;
36
+ width: $width;
37
+ }
38
+
39
+ @mixin toolbar-height($height, $min-height) {
40
+ height: $height;
41
+ min-height: $min-height;
42
+ }
43
+
44
+ @mixin margin-padding($margin, $padding) {
45
+ margin: $margin;
46
+ padding: $padding;
47
+ }
48
+
49
+ @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) {
50
+ .e-empty {
51
+ min-width: $empty-min-width;
52
+ }
53
+
54
+ .e-empty-content {
55
+ @include empty-content($empty-content-font-size, $empty-content-margin, $empty-content-padding, $empty-content-text-align);
56
+ }
57
+
58
+ .e-empty-icon {
59
+ @include icon-style($empty-icon-height, $empty-icon-width, $empty-icon-margin);
60
+ }
61
+
62
+ .e-empty-inner-content {
63
+ @include empty-content($empty-inner-content-font-size, $empty-inner-content-margin, $empty-inner-content-padding, $empty-inner-content-text-align);
64
+ }
65
+ }
66
+
67
+ @include export-module('FileManager-bigger') {
68
+ .e-filemanager,
69
+ .e-bigger .e-filemanager,
70
+ .e-filemanager.e-bigger {
71
+
72
+ &.e-fe-mobile {
73
+
74
+ .e-toolbar {
75
+ @if ($fm-skin-name == 'Material3' or $fm-skin-name == 'fluent2') {
76
+ @include toolbar-height($fe-mobile-tb-height, $fe-mobile-tb-height);
77
+ }
78
+ }
79
+
80
+ .e-toolbar .e-popup-up-icon.e-icons,
81
+ .e-toolbar .e-popup-down-icon.e-icons,
82
+ .e-toolbar-items .e-toolbar-item .e-btn-icon.e-icons {
83
+ font-size: $fe-mobile-icon-font-size;
84
+ }
85
+
86
+ .e-toolbar .e-toolbar-items .e-toolbar-item.e-popup-text .e-tbar-btn.e-btn.e-tbtn-txt .e-icons.e-btn-icon {
87
+
88
+ @if $fm-skin-name == 'Material3' {
89
+ padding: $fe-mobile-tb-icon-padding;
90
+ font-size: $fe-mobile-tb-icon-font-size;
91
+ line-height: $fe-mobile-tb-icon-font-size;
92
+ }
93
+ @else {
94
+ &.e-fe-newfolder {
95
+ padding-top: $fe-mobile-newfolder-padding-top;
96
+ }
97
+ &.e-fe-upload {
98
+ padding-left: $fe-mobile-upload-padding-left;
99
+ }
100
+ &.e-fe-sort {
101
+ padding-top: $fe-mobile-sort-padding-top;
102
+ }
103
+ &.e-fe-refresh {
104
+ padding-top: $fe-mobile-refresh-padding-top;
105
+ }
106
+ &.e-fe-select {
107
+ padding-top: $fe-mobile-select-padding-top;
108
+ }
109
+ &.e-fe-large {
110
+ padding: $fe-mobile-large-padding;
111
+ }
112
+ &.e-fe-grid {
113
+ padding: $fe-mobile-grid-padding;
114
+ }
115
+ &.e-fe-details {
116
+ padding-top: $fe-mobile-details-padding-top;
117
+ }
118
+ &.e-fe-delete {
119
+ padding-left: $fe-mobile-delete-padding-left;
120
+ }
121
+ &.e-fe-rename {
122
+ padding-left: $fe-mobile-rename-padding-left;
123
+ padding-top: $fe-mobile-rename-padding-top;
124
+ }
125
+ &.e-fe-download {
126
+ padding-left: $fe-mobile-download-padding-left;
127
+ }
128
+ &.e-fe-cut {
129
+ padding-left: $fe-mobile-cut-padding-left;
130
+ padding-top: $fe-mobile-cut-padding-top;
131
+ }
132
+ &.e-fe-copy {
133
+ padding-left: $fe-mobile-copy-padding-left;
134
+ }
135
+ }
136
+ }
137
+
138
+ .e-toolbar-left {
139
+ .e-icons.e-fe-sort {
140
+ display: inline-block;
141
+ margin: 0;
142
+ width: 14px;
143
+ }
144
+
145
+ .e-tbar-ddb-text,
146
+ .e-toolbar-item .e-tbar-btn-text {
147
+ display: none;
148
+ }
149
+ }
150
+
151
+ .e-splitter .e-split-bar {
152
+ display: none;
153
+ }
154
+
155
+ .e-address {
156
+ height: $fe-mobile-search-height;
157
+
158
+ .e-addressbar-ul {
159
+ height: $fe-mobile-search-height;
160
+ @if $fm-skin-name == 'material-dark' {
161
+ padding: $fe-big-bc-padding;
162
+ }
163
+ }
164
+
165
+ .e-address-list-item .e-icons {
166
+ font-size: $fe-big-bc-icon-font-size;
167
+ }
168
+
169
+ .e-list-text {
170
+ font-size: $fe-big-bc-font-size;
171
+ }
172
+
173
+ .e-search-wrap {
174
+ min-width: 47px;
175
+ width: auto;
176
+
177
+ .e-input-group {
178
+ display: none;
179
+ @include size($fe-mobile-search-height, 100%);
180
+
181
+ .e-clear-icon {
182
+ margin: 2px 8px 0;
183
+ }
184
+
185
+ .e-input {
186
+ margin: $fe-search-input-margin;
187
+ }
188
+ }
189
+ }
190
+
191
+ .e-fe-search {
192
+ font-size: $fe-mobile-icon-font-size;
193
+ @if $fm-skin-name !='Material3' {
194
+ margin: 3px 0;
195
+ }
196
+ right: 13px;
197
+ }
198
+ }
199
+
200
+ .e-grid {
201
+
202
+ .e-fe-grid-icon .e-fe-icon {
203
+ @include size($fe-mobile-grid-icon-size, $fe-mobile-grid-icon-size);
204
+ @if $fm-skin-name == 'tailwind' or $fm-skin-name == 'bootstrap5' {
205
+ margin: 0 8px 0 0;
206
+ }
207
+ }
208
+
209
+ .e-gridheader {
210
+ display: none;
211
+ }
212
+
213
+ .e-content {
214
+ .e-rowcell {
215
+ border-bottom: 1px solid;
216
+ border-bottom-color: $fe-border-color;
217
+
218
+ &.e-fe-checkbox {
219
+ padding: 0;
220
+ }
221
+ }
222
+ }
223
+
224
+ .e-gridcontent .e-fe-grid-icon {
225
+ @if $fm-skin-name == 'fabric-dark' {
226
+ padding-left: 9px;
227
+ padding-right: 9px;
228
+ }
229
+ @else {
230
+ padding-left: 10px;
231
+ padding-right: 10px;
232
+ }
233
+ }
234
+
235
+ .e-fe-text {
236
+ @include ellipsis;
237
+ }
238
+
239
+ @if $fm-skin-name == 'fluent2' {
240
+ .e-fe-text {
241
+ font-size: $text-base;
242
+ line-height: 22px;
243
+ }
244
+ .e-fe-date,
245
+ .e-fe-size {
246
+ color: $fe-grid-empty-inner-content-color;
247
+ }
248
+ }
249
+ }
250
+
251
+ .e-large-icons {
252
+ height: calc(100% - $fe-mobile-search-height);
253
+ }
254
+
255
+ .e-large-icons .e-list-parent {
256
+ padding: 0;
257
+
258
+ .e-list-item {
259
+ display: inline-table;
260
+ @include icon-style($fe-mobile-lg-item-height, $fe-mobile-lg-item-width, $fe-mobile-lg-item-margin);
261
+
262
+ &.e-hover,
263
+ &:hover {
264
+ @include visibility(hidden);
265
+ }
266
+
267
+ &.e-active {
268
+ @include visibility(visible);
269
+ }
270
+
271
+ .e-checkbox-wrapper {
272
+ z-index: 999;
273
+ }
274
+
275
+ .e-list-text {
276
+ margin: 0 auto;
277
+ width: $fe-mobile-lg-item-inner-width;
278
+ @if $fm-skin-name == 'Material3' {
279
+ font-size: $fe-big-lg-text-font-size;
280
+ padding: $fe-big-lg-text-padding;
281
+ }
282
+ }
283
+
284
+ .e-list-img {
285
+ margin: 11px auto;
286
+ max-height: $fe-mobile-lg-img-height;
287
+ max-width: $fe-mobile-lg-item-inner-width;
288
+ }
289
+
290
+ .e-list-icon {
291
+ @include icon-style($fe-mobile-lg-icon-height, $fe-mobile-lg-icon-width, $fe-mobile-lg-icon-margin);
292
+ }
293
+ }
294
+ }
295
+ }
296
+
297
+ &.e-fe-m-select {
298
+ .e-large-icons .e-list-item.e-large-icon,
299
+ .e-grid .e-content .e-row .e-rowcell {
300
+ @include visibility(visible);
301
+ }
302
+ }
303
+
304
+ &.e-fe-m-filter {
305
+
306
+ .e-address {
307
+
308
+ .e-search-wrap {
309
+ @include margin-padding(0, 0);
310
+ position: absolute;
311
+ width: 100%;
312
+
313
+ .e-input-group {
314
+ display: inline-flex;
315
+ }
316
+
317
+ .e-input-group .e-input {
318
+ height: auto;
319
+ margin-left: 45px;
320
+ }
321
+
322
+ .e-fe-search {
323
+ left: 0;
324
+ margin-left: 8px;
325
+ @if $fm-skin-name == 'tailwind' or $fm-skin-name == 'bootstrap5' {
326
+ margin-top: 7px;
327
+ }
328
+ @else {
329
+ margin-top: 3px;
330
+ }
331
+ width: 30px;
332
+ }
333
+ }
334
+
335
+ .e-addressbar-ul {
336
+ visibility: hidden;
337
+ }
338
+ }
339
+ }
340
+
341
+ &.e-fe-m-filter.e-rtl {
342
+ .e-address {
343
+ .e-search-wrap {
344
+ .e-input-group .e-input {
345
+ margin-right: 45px;
346
+ }
347
+ .e-fe-search {
348
+ transform: rotate(180deg);
349
+ }
350
+ }
351
+ }
352
+ }
353
+
354
+ &.e-rtl .e-grid {
355
+ .e-gridheader,
356
+ .e-gridcontent {
357
+ .e-fe-grid-icon {
358
+ padding-right: 10px;
359
+ }
360
+ }
361
+ }
362
+ }
363
+
364
+ .e-fe-popup.e-bigger,
365
+ .e-bigger .e-fe-popup {
366
+
367
+ .e-fe-error {
368
+ @if $fm-skin-name == 'tailwind' or $fm-skin-name == 'bootstrap5' {
369
+ font-size: $text-sm;
370
+ line-height: 22px;
371
+ }
372
+ }
373
+
374
+ &.e-dialog {
375
+ .e-dlg-header-content {
376
+ padding: $fe-big-dg-header-font-size;
377
+ }
378
+ td {
379
+ @include ellipsis;
380
+ font-size: $fe-big-dg-td-font-size;
381
+ max-width: 205px;
382
+ min-width: 45px;
383
+ padding: $fe-big-dg-td-padding;
384
+ }
385
+ }
386
+ }
387
+
388
+ .e-bigger .e-filemanager,
389
+ .e-filemanager.e-bigger {
390
+
391
+ .e-toolbar {
392
+
393
+ @if ($fm-skin-name == 'Material3' or $fm-skin-name == 'fluent2') {
394
+ @include toolbar-height($fe-big-tb-height, $fe-big-tb-height);
395
+ .e-toolbar-item:not(.e-separator) {
396
+ min-height: $fe-big-tb-height;
397
+ padding: 4px;
398
+ }
399
+ }
400
+
401
+ .e-popup-up-icon.e-icons,
402
+ .e-popup-down-icon.e-icons,
403
+ .e-toolbar-items .e-toolbar-item .e-btn-icon.e-icons {
404
+ font-size: $fe-mobile-icon-font-size;
405
+ }
406
+
407
+ .e-toolbar-items .e-toolbar-item .e-dropdown-btn.e-btn {
408
+ &.e-tbar-btn {
409
+ padding: $fe-big-tb-ddb-btn-padding;
410
+
411
+ &.e-active,
412
+ &:hover,
413
+ &:focus {
414
+ padding: $fe-big-tb-ddb-btn-hvr-padding;
415
+ }
416
+ }
417
+
418
+ &.e-tbar-btn .e-btn-icon.e-icons.e-caret {
419
+ @if $fm-skin-name == 'tailwind' {
420
+ font-size: 22px;
421
+ @include icon-style(22px, 22px, 4px 4px 0);
422
+ padding: 1px;
423
+ }
424
+ @else {
425
+ padding: 0 10px;
426
+ }
427
+ }
428
+ }
429
+
430
+ .e-toolbar-pop .e-toolbar-item .e-dropdown-btn .e-btn-icon.e-icons.e-caret {
431
+ padding: 0 10px;
432
+ }
433
+ }
434
+ @if $fm-skin-name == 'tailwind' or $fm-skin-name == 'bootstrap5' {
435
+ .e-fe-clone {
436
+ .e-fe-content {
437
+ .e-fe-name {
438
+ font-size: $text-base;
439
+ line-height: 24px;
440
+ margin: 7px 12px 7px 0;
441
+ }
442
+
443
+ .e-fe-icon {
444
+ @include icon-style(24px, 24px, 7px 12px);
445
+ }
446
+ }
447
+
448
+ .e-fe-count {
449
+ font-size: $text-sm;
450
+ @include size(24px, 24px);
451
+ line-height: 22px;
452
+ }
453
+ }
454
+ }
455
+
456
+ .e-treeview {
457
+
458
+ & > .e-ul {
459
+ @if $fm-skin-name != 'tailwind' and $fm-skin-name != 'bootstrap5' {
460
+ padding-left: 12px;
461
+ }
462
+ }
463
+
464
+ .e-list-parent .e-list-item {
465
+ .e-fullrow {
466
+ height: $fe-big-tv-fullrow-height;
467
+ }
468
+ .e-list-text {
469
+ height: $fe-big-tv-node-height;
470
+ line-height: $fe-big-tv-node-height;
471
+ }
472
+ }
473
+ }
474
+
475
+ .e-address {
476
+ height: $fe-big-address-height;
477
+
478
+ .e-breadcrumb-menu .e-breadcrumb-submenu {
479
+ height: $fe-big-bc-submenu-height;
480
+ @if $fm-skin-name == 'material-dark' {
481
+ margin-top: -3px;
482
+ }
483
+ }
484
+
485
+ .e-address-list-item {
486
+ @if ($fm-skin-name != 'Material3') {
487
+ height: $fe-big-bc-li-item-height;
488
+ }
489
+ .e-icons {
490
+ font-size: $fe-big-bc-icon-font-size;
491
+ }
492
+ }
493
+
494
+ .e-addressbar-ul {
495
+ padding: $fe-big-bc-padding;
496
+ }
497
+
498
+ .e-list-text {
499
+ font-size: $fe-big-bc-font-size;
500
+ line-height: $fe-big-bc-text-size;
501
+ padding: $fe-big-bc-text-padding;
502
+ }
503
+
504
+ .e-search-wrap {
505
+ min-width: 51px;
506
+ padding: $fe-big-search-padding;
507
+
508
+ .e-input-group {
509
+ height: $fe-big-search-height;
510
+
511
+ .e-input:focus {
512
+ padding: 0;
513
+ }
514
+
515
+ .e-input {
516
+ @if ($fm-skin-name == 'material' or $fm-skin-name == 'material-dark') {
517
+ height: 39px;
518
+ }
519
+ @else if ($fm-skin-name == 'FluentUI') {
520
+ height: 30px;
521
+ }
522
+ @else if ($fm-skin-name == 'Material3') {
523
+ margin: $fe-big-search-input-margin;
524
+ height: $fe-big-search-input-height;
525
+ }
526
+ }
527
+
528
+ .e-clear-icon::before {
529
+ @if ($fm-skin-name == 'bootstrap5') {
530
+ margin: 0;
531
+ }
532
+ }
533
+ }
534
+ }
535
+
536
+ .e-fe-search {
537
+ @if $fm-skin-name == 'tailwind' {
538
+ font-size: 16px;
539
+ margin: 7px 4px;
540
+ }
541
+ @else if $fm-skin-name == 'bootstrap5' {
542
+ font-size: 16px;
543
+ margin: 4px;
544
+ }
545
+ @else if $fm-skin-name == 'FluentUI' {
546
+ font-size: 18px;
547
+ margin: 3px;
548
+ }
549
+ @else if $fm-skin-name == 'Material3' {
550
+ @include margin-padding($fe-search-icon-margin, $fe-big-search-input-padding);
551
+ }
552
+ @else {
553
+ margin: 7px 0;
554
+ }
555
+ }
556
+ }
557
+
558
+ .e-grid {
559
+ @include checkbox($fe-big-cb-line-height);
560
+
561
+ .e-gridheader {
562
+ .e-headercell {
563
+ height: $fe-big-grid-header-height;
564
+ @if $fm-skin-name == 'fluent2' {
565
+ .e-headercelldiv.e-headerchkcelldiv {
566
+ margin-left: -6px;
567
+ }
568
+ }
569
+ }
570
+ .e-headertext {
571
+ font-size: $fe-big-grid-header-font-size;
572
+ }
573
+ }
574
+
575
+ .e-gridheader,
576
+ .e-gridcontent {
577
+
578
+ .e-rowcell {
579
+ font-size: $fe-big-grid-content-font-size;
580
+
581
+ @if $fm-skin-name == 'Material3' {
582
+ padding: 14px 12px;
583
+ line-height: 20px;
584
+
585
+ .e-fe-text {
586
+ font-size: $fe-grid-content-name-font-size;
587
+ line-height: 20px;
588
+ }
589
+ }
590
+ .e-fe-text {
591
+ font-size: $fe-big-grid-content-name-font-size;
592
+ }
593
+ }
594
+
595
+ .e-fe-checkbox {
596
+ padding-left: 10px;
597
+ }
598
+
599
+ .e-fe-grid-icon {
600
+ @if $fm-skin-name == 'bootstrap5' or $fm-skin-name == 'tailwind' {
601
+ padding-left: 10px;
602
+ }
603
+ @else {
604
+ padding-left: 16px;
605
+ }
606
+ }
607
+ }
608
+
609
+ .e-content {
610
+ tr.e-row.e-fe-drop-folder .e-rowcell {
611
+ @if $fm-skin-name == 'tailwind' {
612
+ padding-bottom: 11px;
613
+ padding-top: 11px;
614
+ }
615
+ }
616
+ }
617
+
618
+ .e-fe-icon {
619
+ @if $fm-skin-name == 'tailwind' {
620
+ @include size(24px, 24px);
621
+ }
622
+ @else {
623
+ margin: $fe-big-grid-icon-margin;
624
+ }
625
+ }
626
+
627
+ @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);
628
+
629
+ .e-empty-inner-content {
630
+ @if $fm-skin-name != 'tailwind' and $fm-skin-name != 'bootstrap5' {
631
+ opacity: $fe-big-grid-empty-inner-content-opacity;
632
+ }
633
+ }
634
+
635
+ &.e-rtl .e-checkbox-wrapper .e-frame {
636
+ @if $fm-skin-name == 'FluentUI' {
637
+ margin-right: -16px;
638
+ }
639
+ @else{
640
+ margin-right: -10px;
641
+ }
642
+ }
643
+ }
644
+
645
+ .e-large-icons {
646
+ @include checkbox($fe-big-cb-line-height);
647
+ height: calc(100% - $fe-big-address-height);
648
+
649
+ .e-list-parent {
650
+ padding: $fe-big-lg-padding;
651
+ }
652
+
653
+ .e-list-item {
654
+ @include icon-style($fe-big-lg-item-height, $fe-big-lg-item-width, $fe-big-lg-item-margin);
655
+ }
656
+
657
+ .e-text-content {
658
+ height: $fe-big-lg-item-inner-height;
659
+ }
660
+
661
+ .e-list-text {
662
+ font-size: $fe-big-lg-text-font-size;
663
+ padding: $fe-big-lg-text-padding;
664
+ width: $fe-big-lg-item-inner-width;
665
+ }
666
+
667
+ .e-list-img {
668
+ max-height: $fe-big-lg-img-height;
669
+ max-width: $fe-big-lg-item-inner-width;
670
+ }
671
+
672
+ .e-list-icon {
673
+ @include icon-style($fe-big-lg-icon-height, $fe-big-lg-icon-width, $fe-big-lg-icon-margin);
674
+ }
675
+
676
+ @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);
677
+
678
+ .e-empty-inner-content {
679
+ @if $fm-skin-name != 'tailwind' and $fm-skin-name != 'bootstrap5' {
680
+ opacity: $fe-big-lg-icon-empty-inner-content-opacity;
681
+ }
682
+ }
683
+ }
684
+
685
+ &.e-rtl {
686
+
687
+ .e-treeview > .e-ul {
688
+ @if $fm-skin-name != 'tailwind' and $fm-skin-name != 'bootstrap5' {
689
+ padding: 0 12px 0 0;
690
+ }
691
+ }
692
+
693
+ @if $fm-skin-name =='Material3' {
694
+ .e-address {
695
+ .e-search-wrap .e-input-group .e-input {
696
+ margin: $fe-big-rtl-search-input-margin;
697
+ }
698
+
699
+ .e-fe-search {
700
+ padding: $fe-big-rtl-search-input-padding;
701
+ }
702
+ }
703
+ }
704
+
705
+ @if $fm-skin-name == 'tailwind' or $fm-skin-name == 'bootstrap5' {
706
+ .e-fe-clone .e-fe-name {
707
+ margin: 7px 0 7px 12px;
708
+ }
709
+ }
710
+
711
+ .e-grid {
712
+
713
+ .e-gridheader,
714
+ .e-gridcontent {
715
+
716
+ .e-fe-checkbox {
717
+ padding-right: 16px;
718
+ }
719
+ }
720
+ }
721
+ }
722
+
723
+ .e-fe-overlay {
724
+ height: calc(100% - 41px);
725
+ @if $fm-skin-name == 'fluent2' {
726
+ height: calc(100% - 88px);
727
+ }
728
+ }
729
+ }
730
+
731
+ @media (max-width: 469px) {
732
+ .e-bigger .e-filemanager,
733
+ .e-filemanager.e-bigger {
734
+ &.e-fe-mobile .e-large-icons .e-list-parent .e-list-item {
735
+ min-width: $fe-mobile-lg-item-minwidth;
736
+ width: $fe-mobile-lg-item-width-two;
737
+ }
738
+ }
739
+ }
740
+
741
+ @media (min-width: 470px) and (max-width: 625px) {
742
+ .e-bigger .e-filemanager,
743
+ .e-filemanager.e-bigger {
744
+ &.e-fe-mobile .e-large-icons .e-list-parent .e-list-item {
745
+ min-width: $fe-mobile-lg-item-minwidth;
746
+ width: $fe-mobile-lg-item-width-three;
747
+ }
748
+ }
749
+ }
750
+
751
+ @media (min-width: 360px) and (max-width: 500px) {
752
+ @if $skin-name == 'FluentUI' {
753
+ .e-bigger .e-filemanager .e-grid .e-checkbox-wrapper .e-frame {
754
+ position: relative;
755
+ right: 10px;
756
+ }
757
+ }
758
+ }
759
+ }