@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
@@ -1,1815 +1,1252 @@
1
- // sass-lint:disable no-vendor-prefixes
2
- @mixin user-select {
3
- -moz-user-select: none;
4
- -ms-user-select: none;
5
- -webkit-user-select: none;
6
- user-select: none;
7
- }
8
- @mixin visibility($value) {
9
- .e-checkbox-wrapper {
10
- visibility: $value;
11
- }
12
- }
13
- @mixin grid-no-border {
14
- .e-rowcell.e-lastrowcell {
15
- border-bottom-width: 0;
16
- }
17
- }
18
- @mixin popup-active-icon {
19
- .e-fe-dot,
20
- .e-fe-tick {
21
- font-size: $fe-ddl-icon-font-size;
22
- }
23
- }
24
- @mixin ellipsis {
25
- overflow: hidden;
26
- text-overflow: ellipsis;
27
- white-space: nowrap;
28
- }
29
- @mixin checkbox($value) {
30
- .e-checkbox-wrapper {
31
-
32
- .e-frame {
33
- border-width: 1px;
34
- line-height: $value;
35
- }
36
- }
37
- }
38
-
39
- @include export-module('FileManager-layout') {
40
- ejs-filemanager {
41
- display: block;
42
- }
43
-
44
- .e-filemanager {
45
- @include user-select;
46
- border: 1px solid;
47
- position: relative;
48
-
49
- .e-blur {
50
- opacity: .5;
51
- }
52
-
53
- .e-display-none {
54
- display: none;
55
- }
56
-
57
- &.e-fe-drop,
58
- &.e-fe-drop .e-treeview .e-text-content,
59
- &.e-fe-drop .e-treeview .e-fullrow,
60
- &.e-fe-drop .e-address .e-address-list-item:last-child .e-list-text,
61
- &.e-fe-drop .e-grid .e-columnheader {
62
- cursor: grab;
63
- }
64
-
65
- &.e-no-drop {
66
- cursor: no-drop;
67
- }
68
-
69
- .e-toolbar {
70
- border-bottom-style: solid;
71
- @if $fm-skin-name == 'bootstrap-dark' {
72
- border-width: 1px;
73
- }
74
- @else {
75
- border-width: 0 0 1px;
76
- }
77
-
78
- .e-toolbar-items .e-toolbar-item .e-dropdown-btn.e-btn.e-tbar-btn {
79
- border: 0;
80
- box-shadow: none;
81
- font-weight: 400;
82
- height: $fe-tb-ddb-height;
83
- padding: $fe-tb-ddb-btn-padding;
84
-
85
- .e-btn-icon.e-icons:not(.e-icon-left):not(.e-icon-right) {
86
- padding: $fe-tb-ddb-icon-padding;
87
- }
88
-
89
- .e-btn-icon.e-icons.e-caret {
90
- font-size: $fe-tb-ddb-caret-size;
91
- @if $fm-skin-name == 'tailwind' or $fm-skin-name == 'bootstrap5' {
92
- height: 18px;
93
- margin: 2px 4px 0;
94
- padding: 1px;
95
- width: 18px;
96
- }
97
- @else {
98
- padding: 0 8px;
99
- }
100
- }
101
-
102
- .e-tbar-btn-text.e-tbar-ddb-text {
103
- padding-right: 0;
104
- }
105
-
106
- &.e-active {
107
- border: $fe-tb-ddb-border;
108
- padding: $fe-tb-ddb-btn-hvr-padding;
109
- }
110
-
111
- &:hover {
112
- border: $fe-tb-ddb-border;
113
- padding: $fe-tb-ddb-btn-hvr-padding;
114
- }
115
-
116
- &:focus {
117
- border: $fe-tb-ddb-border;
118
- padding: $fe-tb-ddb-btn-hvr-padding;
119
- }
120
- }
121
-
122
- .e-toolbar-pop .e-toolbar-item .e-dropdown-btn {
123
- .e-icons.e-caret {
124
- font-size: $fe-tb-ddb-caret-size;
125
- min-width: 0;
126
- padding: 0 8px;
127
- }
128
-
129
- .e-tbar-btn-text.e-tbar-ddb-text {
130
- padding-right: 0;
131
- }
132
- }
133
-
134
- .e-toolbar-pop {
135
- width: max-content;
136
- }
137
- }
138
-
139
- .e-treeview {
140
-
141
- & > .e-ul {
142
- overflow: initial;
143
- @if $fm-skin-name != 'tailwind' and $fm-skin-name != 'bootstrap5' {
144
- padding-left: 8px;
145
- }
146
- }
147
-
148
- .e-icons .e-treeview-spinner {
149
- display: none;
150
- }
151
-
152
- .e-list-parent {
153
- margin-bottom: 0;
154
- margin-top: 0;
155
-
156
- .e-list-item {
157
- padding-bottom: 0;
158
- padding-top: 0;
159
-
160
- .e-fullrow {
161
- height: $fe-tv-fullrow-height;
162
- }
163
-
164
- .e-list-text {
165
- height: $fe-tv-node-height;
166
- line-height: $fe-tv-node-height;
167
- }
168
-
169
- &.e-fe-drop-folder > .e-fullrow {
170
- @if $fm-skin-name == 'tailwind' or $fm-skin-name == 'bootstrap5' {
171
- border: 1px dashed;
172
- }
173
- @else {
174
- border: 1px solid;
175
- }
176
- box-sizing: border-box;
177
- }
178
- }
179
- }
180
-
181
- .e-text-content {
182
- overflow: hidden;
183
- text-overflow: ellipsis;
184
- white-space: nowrap;
185
- }
186
-
187
- .e-list-text {
188
- display: initial;
189
- }
190
- }
191
-
192
- .e-splitter {
193
- border-width: 0;
194
-
195
- .e-split-bar {
196
-
197
- .e-resize-handler {
198
- display: none;
199
- }
200
- }
201
-
202
- .e-display-none {
203
- display: none;
204
- }
205
- }
206
-
207
- .e-address {
208
- border-bottom: 1px solid;
209
- height: $fe-address-height;
210
- position: relative;
211
-
212
- .e-fe-breadcrumb.e-icons {
213
- padding-bottom: 6px;
214
- @if $fm-skin-name == 'material-dark' {
215
- padding-bottom: 0;
216
- }
217
- }
218
-
219
- .e-search-wrap {
220
- float: right;
221
- padding: $fe-search-padding;
222
- position: absolute;
223
- right: 0;
224
- top: 0;
225
- width: 200px;
226
-
227
- .e-input-group {
228
- border-bottom-width: $fe-bc-search-border-bottom;
229
- height: $fe-search-height;
230
- margin: 0;
231
-
232
- @if $skin-name == 'bootstrap5' or $skin-name == 'tailwind' {
233
- &.e-input-focus {
234
- .e-input {
235
- padding: 0;
236
- }
237
- }
238
- }
239
-
240
- .e-input {
241
- margin: $fe-search-input-margin;
242
- padding: 0;
243
- @if $skin-name == 'bootstrap5' {
244
- height: 26px;
245
- }
246
- @if $skin-name == 'material' {
247
- height: 30px;
248
- }
249
- }
250
-
251
- .e-clear-icon {
252
- margin: $fe-search-clear-icon-padding;
253
- @if $skin-name == 'FluentUI' {
254
- padding: $fe-search-clear-icon-margin;
255
- }
256
- }
257
- }
258
- }
259
-
260
- .e-fe-search {
261
- font-size: 14px;
262
- margin: $fe-search-icon-margin;
263
- @if $fm-skin-name == 'tailwind' or $fm-skin-name == 'bootstrap5' {
264
- margin-right: 4px;
265
- padding: 3px;
266
- }
267
- @else {
268
- padding: 5px;
269
- }
270
- @if $fm-skin-name == 'FluentUI' {
271
- font-size: 16px;
272
- }
273
- position: absolute;
274
- z-index: 1;
275
-
276
- &::before {
277
- display: inline-block;
278
- }
279
- }
280
-
281
- .e-addressbar-ul {
282
- @include ellipsis;
283
- list-style: none;
284
- margin: $fe-bc-margin;
285
- padding: $fe-bc-padding;
286
- visibility: visible;
287
-
288
- .e-breadcrumb-menu {
289
- display: inline;
290
-
291
- .e-breadcrumb-submenu {
292
- height: $fe-bc-submenu-height;
293
- @if $fm-skin-name == 'material-dark' {
294
- padding-bottom: 0;
295
- padding-top: 0;
296
- }
297
- }
298
- }
299
- }
300
-
301
- .e-list-text {
302
- cursor: pointer;
303
- font-size: $fe-bc-font-size;
304
- line-height: $fe-bc-text-size;
305
- @if $fm-skin-name == 'tailwind' or $fm-skin-name == 'bootstrap5' {
306
- font-weight: $font-weight-medium;
307
- }
308
- @else {
309
- padding: $fe-bc-text-padding;
310
- }
311
- text-decoration: none;
312
-
313
- &:hover {
314
- text-decoration: $fe-bc-li-text-decoration;
315
- }
316
- }
317
-
318
- .e-address-list-item {
319
- display: inline-block;
320
- @if $fm-skin-name != 'tailwind' and $fm-skin-name != 'bootstrap5' {
321
- height: $fe-bc-li-item-height;
322
- }
323
-
324
- &:last-child {
325
-
326
- .e-list-text {
327
- cursor: default;
328
-
329
- &:hover {
330
- text-decoration: none;
331
- }
332
- }
333
- }
334
-
335
- .e-icons {
336
- font-size: $fe-bc-icon-font-size;
337
- margin: $fe-bc-icon-margin;
338
- @if $fm-skin-name == 'tailwind' {
339
- vertical-align: middle;
340
- }
341
-
342
- &::before {
343
- @if $fm-skin-name != 'tailwind' {
344
- padding: $fe-bc-icon-padding;
345
- }
346
- }
347
- }
348
- }
349
- }
350
-
351
- .e-view-container .e-grid .e-gridcontent .e-emptyrow {
352
- display: table-row;
353
- }
354
-
355
- .e-grid {
356
- @include checkbox($fe-cb-line-height);
357
- border-width: 0;
358
- float: left;
359
-
360
- .e-spin-show {
361
- display: none;
362
- }
363
-
364
- .e-gridcontent tr.e-emptyrow td.e-lastrowcell:first-child:empty {
365
- height: 0;
366
- padding: 0;
367
- }
368
-
369
- .e-gridheader {
370
- border-width: 0 1px 1px;
371
-
372
- .e-headercell {
373
- height: $fe-grid-header-height;
374
-
375
- &.e-fe-grid-icon .e-sortfilterdiv {
376
- margin-right: $fe-grid-icon-sort-margin;
377
- }
378
-
379
- .e-headertext {
380
- font-size: $fe-grid-header-font-size;
381
- }
382
-
383
- .e-rcursor {
384
- border: 0;
385
- }
386
- }
387
-
388
- @include visibility(hidden);
389
-
390
- &:hover,
391
- .e-active {
392
- @include visibility(visible);
393
- }
394
- }
395
-
396
- &.e-headercheck {
397
-
398
- .e-gridheader .e-headercontent {
399
- @include visibility(visible);
400
- }
401
- }
402
-
403
- @if $fm-skin-name == 'FluentUI' {
404
- .e-checkbox-wrapper:hover .e-frame {
405
- font-size: 10px;
406
- }
407
- }
408
-
409
- .e-content {
410
- overflow-y: auto !important; // sass-lint:disable-line no-important
411
-
412
- .e-table {
413
- border-spacing: 0;
414
- }
415
- }
416
-
417
- .e-content {
418
-
419
- .e-rowcell {
420
- border: 0;
421
- font-size: $fe-grid-content-font-size;
422
-
423
- @if $fm-skin-name == 'FluentUI' {
424
- padding: 8px;
425
- }
426
-
427
- .e-fe-text {
428
- font-size: $fe-grid-content-name-font-size;
429
- }
430
- }
431
-
432
- tr.e-row.e-fe-drop-folder .e-rowcell:first-child {
433
- @if $fm-skin-name == 'tailwind' {
434
- border-bottom: 1px dashed $fe-drop-folder-bg-color;
435
- border-left: 1px dashed $fe-drop-folder-bg-color;
436
- border-top: 1px dashed $fe-drop-folder-bg-color;
437
- }
438
- @else {
439
- box-shadow: 1px 0 0 1px $fe-drop-folder-bg-color inset;
440
- }
441
- }
442
-
443
- tr.e-row.e-fe-drop-folder .e-rowcell:last-child {
444
- @if $fm-skin-name == 'tailwind' {
445
- border-bottom: 1px dashed $fe-drop-folder-bg-color;
446
- border-right: 1px dashed $fe-drop-folder-bg-color;
447
- border-top: 1px dashed $fe-drop-folder-bg-color;
448
- }
449
- @else {
450
- box-shadow: -1px 0 0 1px $fe-drop-folder-bg-color inset;
451
- }
452
- }
453
-
454
- tr.e-row.e-fe-drop-folder .e-rowcell {
455
- @if $fm-skin-name == 'tailwind' {
456
- border-bottom: 1px dashed $fe-drop-folder-bg-color;
457
- border-top: 1px dashed $fe-drop-folder-bg-color;
458
- padding-bottom: 6px;
459
- padding-top: 6px;
460
- }
461
- @else {
462
- box-shadow: 0 2px 0 -1px $fe-drop-folder-bg-color inset, 0 -2px 0 -1px $fe-drop-folder-bg-color inset;
463
- }
464
- }
465
- }
466
-
467
- .e-empty {
468
- min-width: $fe-grid-empty-min-width;
469
- }
470
-
471
- .e-empty-content {
472
- font-size: $fe-grid-empty-content-font-size;
473
- margin: $fe-grid-empty-content-margin;
474
- padding: $fe-grid-empty-content-padding;
475
- text-align: $fe-grid-empty-content-text-align;
476
- @if $fm-skin-name == 'tailwind' or $fm-skin-name == 'bootstrap5' {
477
- line-height: 24px;
478
- }
479
- }
480
-
481
- .e-empty-icon {
482
- height: $fe-grid-empty-icon-height;
483
- margin: $fe-grid-empty-icon-margin;
484
- width: $fe-grid-empty-icon-width;
485
- }
486
-
487
- .e-empty-inner-content {
488
- font-size: $fe-grid-empty-inner-content-font-size;
489
- margin: $fe-grid-empty-inner-content-margin;
490
- @if $fm-skin-name == 'tailwind' or $fm-skin-name == 'bootstrap5' {
491
- line-height: 22px;
492
- }
493
- @else {
494
- opacity: $fe-lg-icon-empty-inner-content-opacity;
495
- }
496
- padding: $fe-grid-empty-inner-content-padding;
497
- text-align: $fe-grid-empty-inner-content-text-align;
498
- }
499
-
500
- .e-gridpopup {
501
- display: none !important; // sass-lint:disable-line no-important
502
- }
503
-
504
- .e-gridheader,
505
- .e-gridcontent {
506
-
507
- .e-emptyrow {
508
- display: none;
509
- }
510
-
511
- .e-fe-checkbox {
512
- overflow: inherit;
513
- padding-left: $fe-grid-header-cb-padding-left;
514
- padding-right: 0;
515
- }
516
-
517
- .e-fe-grid-icon {
518
- @if $fm-skin-name != 'tailwind' {
519
- padding: 0 0 0 12px;
520
- }
521
-
522
- .e-headercelldiv {
523
- text-overflow: unset;
524
- }
525
-
526
- &+.e-rowcell,
527
- &+.e-headercell {
528
- padding-left: 0;
529
-
530
- &.e-fe-grid-name {
531
- padding-left: 6px;
532
- }
533
- }
534
- }
535
- }
536
-
537
- .e-row {
538
- @include visibility(hidden);
539
-
540
- &.e-focused {
541
- box-shadow: none;
542
- @if $fm-skin-name != 'tailwind' and $fm-skin-name != 'bootstrap5' and $fm-skin-name != 'FluentUI' {
543
- td {
544
- box-shadow: $fe-grid-row-ie-box-shadow;
545
- }
546
-
547
- td:first-child {
548
- box-shadow: $fe-grid-row-fc-ie-box-shadow;
549
- }
550
-
551
- td:last-child {
552
- box-shadow: $fe-grid-row-lc-ie-box-shadow;
553
- }
554
- }
555
- }
556
-
557
- &:hover,
558
- .e-active {
559
- @include visibility(visible);
560
- }
561
-
562
- &.e-fe-drop-file:hover {
563
- @include visibility(hidden);
564
- }
565
- }
566
-
567
- &.e-horizontallines,
568
- &.e-verticallines,
569
- &.e-hidelines {
570
- @include grid-no-border;
571
- }
572
-
573
- &.e-resize-lines .e-headercell .e-rsuppress {
574
- border-width: 0;
575
- }
576
-
577
- .e-fe-icon {
578
- display: inline-block;
579
- height: $fe-grid-icon-size;
580
- margin: $fe-grid-icon-margin;
581
- vertical-align: middle;
582
- width: $fe-grid-icon-size;
583
- }
584
- }
585
-
586
- .e-view-container {
587
- .e-grid {
588
- .e-gridheader {
589
- padding-right: 0 !important; // sass-lint:disable-line no-important
590
- }
591
- }
592
- }
593
-
594
- &.e-rtl .e-view-container {
595
- .e-grid {
596
- .e-gridheader {
597
- padding-left: 0 !important; // sass-lint:disable-line no-important
598
- }
599
- }
600
- }
601
-
602
- .e-large-icons {
603
- @include checkbox($fe-cb-line-height);
604
- float: left;
605
- overflow: auto;
606
- width: 100%;
607
-
608
- .e-empty {
609
- min-width: $fe-lg-icon-empty-min-width;
610
- }
611
-
612
- .e-empty-content {
613
- font-size: $fe-lg-icon-empty-content-font-size;
614
- margin: $fe-lg-icon-empty-content-margin;
615
- padding: $fe-lg-icon-empty-content-padding;
616
- text-align: $fe-lg-icon-empty-content-text-align;
617
- @if $fm-skin-name == 'tailwind' or $fm-skin-name == 'bootstrap5' {
618
- line-height: 24px;
619
- }
620
- }
621
-
622
- .e-empty-icon {
623
- height: $fe-lg-icon-empty-icon-height;
624
- margin: $fe-lg-icon-empty-icon-margin;
625
- width: $fe-lg-icon-empty-icon-width;
626
- }
627
-
628
- .e-empty-inner-content {
629
- font-size: $fe-lg-icon-empty-inner-content-font-size;
630
- margin: $fe-lg-icon-empty-inner-content-margin;
631
- @if $fm-skin-name == 'tailwind' or $fm-skin-name == 'bootstrap5' {
632
- line-height: 22px;
633
- }
634
- @else {
635
- opacity: $fe-lg-icon-empty-inner-content-opacity;
636
- }
637
- padding: $fe-lg-icon-empty-inner-content-padding;
638
- text-align: $fe-lg-icon-empty-inner-content-text-align;
639
- }
640
-
641
- .e-list-parent {
642
- display: block;
643
- height: 100%;
644
- margin: $fe-lg-margin;
645
- overflow: auto;
646
- padding: $fe-lg-padding;
647
- }
648
-
649
- .e-checkbox-wrapper {
650
- float: left;
651
- position: absolute;
652
- top: 0;
653
- visibility: hidden;
654
- @if $fm-skin-name == 'tailwind' or $fm-skin-name == 'bootstrap5' {
655
- margin: 2px;
656
- }
657
- }
658
-
659
- .e-list-item {
660
- border: 1px solid;
661
- float: left;
662
- height: $fe-lg-item-height;
663
- margin: $fe-lg-item-margin;
664
- overflow: hidden;
665
- padding: $fe-lg-item-padding;
666
- width: $fe-lg-item-width;
667
- @if $fm-skin-name == 'tailwind' or $fm-skin-name == 'bootstrap5' {
668
- &.e-fe-drop-folder {
669
- border: 1px dashed $fe-drop-folder-bg-color;
670
- }
671
- }
672
- @if $fm-skin-name == 'FluentUI' {
673
- &.e-fe-drop-folder {
674
- border: 2px dashed $fe-drop-folder-bg-color;
675
- }
676
- }
677
- @if $fm-skin-name == 'bootstrap4' or $fm-skin-name == 'bootstrap-dark' or $fm-skin-name == 'tailwind' or $fm-skin-name == 'bootstrap5' {
678
- border-radius: 4px;
679
- }
680
-
681
- &.e-active,
682
- &.e-hover {
683
- @include visibility(visible);
684
- }
685
- }
686
-
687
- .e-text-content {
688
- display: table-cell;
689
- height: $fe-lg-item-inner-height;
690
- position: relative;
691
- vertical-align: bottom;
692
- }
693
-
694
- .e-list-text {
695
- @include ellipsis;
696
- display: block;
697
- font-size: $fe-lg-text-font-size;
698
- padding: $fe-lg-text-padding;
699
- text-align: center;
700
- width: $fe-lg-item-inner-width;
701
- }
702
-
703
- .e-list-img {
704
- border: 2px solid;
705
- @if $fm-skin-name != 'tailwind' and $fm-skin-name != 'bootstrap5' {
706
- box-shadow: $fe-img-box-shadow;
707
- }
708
- display: block;
709
- margin: 0 auto;
710
- max-height: $fe-lg-img-height;
711
- max-width: 100%;
712
- min-height: 20px;
713
- }
714
-
715
- .e-list-icon {
716
- display: block;
717
- height: $fe-lg-icon-height;
718
- margin: $fe-lg-icon-margin;
719
- width: $fe-lg-icon-width;
720
- }
721
- }
722
-
723
- .e-fe-clone {
724
- pointer-events: none;
725
- z-index: 20;
726
-
727
- .e-fe-content {
728
- border: $fe-clone-border;
729
- box-shadow: $fe-clone-box-shadow;
730
- display: inline-flex;
731
- @if $fm-skin-name == 'tailwind' or $fm-skin-name == 'bootstrap5' {
732
- height: 38px;
733
- }
734
- @else {
735
- height: 36px;
736
- padding: 4px 8px;
737
- }
738
- @if $fm-skin-name == 'bootstrap4' or $fm-skin-name == 'bootstrap-dark' or $fm-skin-name == 'bootstrap' {
739
- border-radius: 4px;
740
- }
741
-
742
- .e-fe-name {
743
- display: inline-block;
744
- @if $fm-skin-name == 'tailwind' or $fm-skin-name == 'bootstrap5' {
745
- font-size: 14px;
746
- line-height: 22px;
747
- margin: 8px 8px 8px 0;
748
- max-width: 150px;
749
- }
750
- @else {
751
- font-size: 13px;
752
- margin: auto 8px;
753
- max-width: 70px;
754
- }
755
- overflow: hidden;
756
- text-overflow: ellipsis;
757
- white-space: nowrap;
758
- }
759
-
760
- .e-fe-icon {
761
- display: inline-block;
762
- @if $fm-skin-name == 'tailwind' or $fm-skin-name == 'bootstrap5' {
763
- height: 20px;
764
- margin: 9px 8px;
765
- width: 20px;
766
- }
767
- @else {
768
- height: 18px;
769
- margin: auto 8px;
770
- width: 18px;
771
- }
772
- }
773
- }
774
-
775
- .e-fe-count {
776
- border: 1px solid;
777
- border-radius: 50%;
778
- font-size: 12px;
779
- @if $fm-skin-name == 'tailwind' or $fm-skin-name == 'bootstrap5' {
780
- height: 20px;
781
- line-height: 18px;
782
- margin: -10px 0 0 -10px;
783
- width: 20px;
784
- }
785
- @else {
786
- height: 22px;
787
- line-height: 22px;
788
- margin-left: -12px;
789
- width: 22px;
790
- }
791
- position: absolute;
792
- text-align: center;
793
- top: 0;
794
- }
795
- }
796
-
797
- &.e-rtl {
798
-
799
- .e-treeview {
800
-
801
- & > .e-ul {
802
- @if $fm-skin-name != 'tailwind' and $fm-skin-name != 'bootstrap5' {
803
- padding: 0 8px 0 0;
804
- }
805
- }
806
- }
807
-
808
- .e-toolbar {
809
-
810
- .e-fe-grid {
811
- display: inline-table;
812
- transform: rotate(180deg);
813
- }
814
- }
815
-
816
- .e-splitter.e-splitter-horizontal {
817
- -ms-flex-direction: row-reverse;
818
- flex-direction: row-reverse;
819
- }
820
-
821
- .e-address {
822
-
823
- .e-search-wrap {
824
- float: left;
825
- left: 0;
826
- right: auto;
827
- @if $fm-skin-name == 'tailwind' or $fm-skin-name == 'bootstrap5' {
828
- padding-left: 12px;
829
- }
830
-
831
- .e-input-group {
832
-
833
- .e-input {
834
- @if $fm-skin-name == 'tailwind' or $fm-skin-name == 'bootstrap5' {
835
- margin: 0 29px 0 0;
836
- }
837
- @else {
838
- margin: 0 24px 0 0;
839
- }
840
- padding: 0;
841
- }
842
- }
843
- }
844
-
845
- .e-addressbar-ul {
846
- display: flex;
847
-
848
- @if $fm-skin-name == 'tailwind' or $fm-skin-name == 'bootstrap5' {
849
- padding: $fe-rtl-bc-padding;
850
- }
851
-
852
- .e-icons::before {
853
- display: inline-block;
854
- transform: rotate(180deg);
855
- }
856
- }
857
- }
858
-
859
- .e-grid.e-rtl {
860
-
861
- .e-row.e-focused {
862
- @if $fm-skin-name != 'tailwind' and $fm-skin-name != 'bootstrap5' and $fm-skin-name != 'FluentUI' {
863
- td:first-child {
864
- box-shadow: $fe-grid-row-lc-ie-box-shadow;
865
- }
866
-
867
- td:last-child {
868
- box-shadow: $fe-grid-row-fc-ie-box-shadow;
869
- }
870
- }
871
- }
872
- @if $fm-skin-name == 'tailwind' {
873
- .e-content {
874
-
875
- tr.e-row.e-fe-drop-folder .e-rowcell:first-child {
876
- border-left: 0;
877
- border-right: 1px dashed $fe-drop-folder-bg-color;
878
- }
879
-
880
- tr.e-row.e-fe-drop-folder .e-rowcell:last-child {
881
- border-left: 1px dashed $fe-drop-folder-bg-color;
882
- border-right: 0;
883
- }
884
- }
885
- }
886
-
887
- .e-gridheader,
888
- .e-gridcontent {
889
-
890
- .e-fe-checkbox {
891
- padding-left: 0;
892
- padding-right: 12px;
893
- }
894
-
895
- .e-fe-grid-icon {
896
- padding-left: 0;
897
- padding-right: 12px;
898
-
899
- &+.e-rowcell,
900
- &+.e-headercell {
901
- padding-left: 21px;
902
- padding-right: 0;
903
-
904
- &.e-fe-grid-name {
905
- padding-right: 12px;
906
- }
907
- }
908
- }
909
- }
910
-
911
- .e-fe-icon {
912
- margin: $fe-rtl-grid-icon-margin;
913
- }
914
- }
915
-
916
- .e-large-icons {
917
-
918
- .e-list-item {
919
- float: right;
920
- }
921
- }
922
-
923
- .e-fe-clone .e-fe-count {
924
- margin-left: 0;
925
- margin-right: -12px;
926
- }
927
-
928
- @if $fm-skin-name == 'tailwind' or $fm-skin-name == 'bootstrap5' {
929
- .e-fe-clone .e-fe-name {
930
- margin: 8px 0 8px 8px;
931
- }
932
- }
933
- }
934
-
935
- .e-layout-content {
936
- position: relative;
937
- }
938
-
939
- .e-fe-overlay {
940
- border: $fe-upload-overlay-border dashed $fe-drop-border-color;
941
- bottom: 0;
942
- display: block;
943
- height: calc(100% - 34px);
944
- pointer-events: none;
945
- position: absolute;
946
- visibility: hidden;
947
- width: 100%;
948
- }
949
-
950
- .e-upload-drag-hover {
951
- outline: none;
952
-
953
- .e-fe-overlay {
954
- visibility: visible;
955
- }
956
- }
957
- }
958
-
959
- .e-fe-popup {
960
-
961
- &.e-dropdown-popup ul .e-item,
962
- &.e-contextmenu-wrapper ul .e-menu-item,
963
- &.e-contextmenu-container ul .e-menu-item {
964
- @include popup-active-icon;
965
- }
966
-
967
- &.e-dlg-resizable {
968
-
969
- .e-dlg-content {
970
- overflow: hidden;
971
- }
972
- }
973
-
974
- &.e-dialog.e-fe-upload-dialog {
975
- .e-dlg-content {
976
- overflow: auto;
977
- }
978
- }
979
-
980
- &.e-contextmenu-wrapper ul .e-menu-item.e-separator,
981
- &.e-contextmenu-container ul .e-menu-item.e-separator {
982
- margin: $fe-cm-separator-margin;
983
- }
984
-
985
- &.e-rtl {
986
-
987
- .e-fe-grid {
988
- display: inline-table;
989
- transform: rotate(180deg);
990
- }
991
- }
992
-
993
- &.e-dialog {
994
-
995
- td {
996
- @include ellipsis;
997
- font-size: $fe-dg-td-font-size;
998
- max-width: 211px;
999
- min-width: 51px;
1000
- padding: $fe-dg-td-padding;
1001
- @if $fm-skin-name == 'tailwind' or $fm-skin-name == 'bootstrap5' {
1002
- line-height: 22px;
1003
-
1004
- &:first-child {
1005
- font-size: $text-xs;
1006
- line-height: 18px;
1007
- }
1008
- }
1009
- }
1010
-
1011
- td.e-fe-value {
1012
- white-space: unset;
1013
- word-break: break-word;
1014
- }
1015
-
1016
- .e-fe-errorcontent {
1017
- white-space: normal;
1018
- word-break: break-word;
1019
- }
1020
-
1021
- .e-fe-icon {
1022
- display: inline-block;
1023
- height: 18px;
1024
- margin: 0 8px -2px 0;
1025
- width: 18px;
1026
- }
1027
-
1028
- .e-fe-access-header {
1029
- display: inline-block;
1030
- }
1031
-
1032
- .e-fe-retrycontent {
1033
- padding: 16px 0;
1034
- }
1035
-
1036
- .e-image {
1037
- height: 100%;
1038
- width: 100%;
1039
- }
1040
-
1041
- @if $fm-skin-name == 'tailwind' or $fm-skin-name == 'bootstrap5' {
1042
- .e-dlg-content {
1043
- padding-top: 16px;
1044
- }
1045
- }
1046
-
1047
- @if $fm-skin-name == 'FluentUI' {
1048
- .e-dlg-content {
1049
- padding-top: 2px;
1050
- }
1051
- }
1052
-
1053
- &.e-rtl {
1054
-
1055
- td {
1056
- padding: $fe-dg-rtl-td-padding;
1057
- }
1058
-
1059
- .e-fe-icon {
1060
- margin: 0 0 -2px 8px;
1061
- }
1062
-
1063
- }
1064
- }
1065
-
1066
- &.e-dialog.e-popup.e-dlg-resizable {
1067
- min-height: 200px;
1068
- }
1069
-
1070
- .e-fe-error {
1071
- @if $fm-skin-name == 'tailwind' or $fm-skin-name == 'bootstrap5' {
1072
- font-size: $text-xs;
1073
- line-height: 18px;
1074
- padding-top: 4px;
1075
- }
1076
- @else {
1077
- font-size: 12px;
1078
- line-height: 1.5;
1079
- }
1080
- }
1081
-
1082
- .e-upload {
1083
- border-bottom-width: 0;
1084
- border-top-width: 0;
1085
-
1086
- .e-file-select-wrap {
1087
- display: none;
1088
- }
1089
-
1090
- .e-icons.e-file-delete-btn {
1091
- display: none;
1092
- }
1093
-
1094
- .e-upload-actions {
1095
- border-bottom: 1px solid;
1096
- }
1097
- }
1098
- }
1099
-
1100
- .e-filemanager,
1101
- .e-bigger .e-filemanager,
1102
- .e-filemanager.e-bigger {
1103
-
1104
- &.e-fe-mobile {
1105
-
1106
- .e-toolbar-items .e-toolbar-item .e-btn-icon.e-icons {
1107
- font-size: $fe-mobile-icon-font-size;
1108
- }
1109
-
1110
- .e-toolbar .e-toolbar-items .e-toolbar-item.e-popup-text .e-tbar-btn.e-btn.e-tbtn-txt .e-icons.e-btn-icon {
1111
-
1112
- &.e-fe-newfolder {
1113
- padding-top: $fe-mobile-newfolder-padding-top;
1114
- }
1115
-
1116
- &.e-fe-upload {
1117
- padding-left: $fe-mobile-upload-padding-left;
1118
- }
1119
-
1120
- &.e-fe-sort {
1121
- padding-top: $fe-mobile-sort-padding-top;
1122
- }
1123
-
1124
- &.e-fe-refresh {
1125
- padding-top: $fe-mobile-refresh-padding-top;
1126
- }
1127
-
1128
- &.e-fe-select {
1129
- padding-top: $fe-mobile-select-padding-top;
1130
- }
1131
-
1132
- &.e-fe-large {
1133
- padding: $fe-mobile-large-padding;
1134
- }
1135
-
1136
- &.e-fe-grid {
1137
- padding: $fe-mobile-grid-padding;
1138
- }
1139
-
1140
- &.e-fe-details {
1141
- padding-top: $fe-mobile-details-padding-top;
1142
- }
1143
-
1144
- &.e-fe-delete {
1145
- padding-left: $fe-mobile-delete-padding-left;
1146
- }
1147
-
1148
- &.e-fe-rename {
1149
- padding-left: $fe-mobile-rename-padding-left;
1150
- padding-top: $fe-mobile-rename-padding-top;
1151
- }
1152
-
1153
- &.e-fe-download {
1154
- padding-left: $fe-mobile-download-padding-left;
1155
- }
1156
-
1157
- &.e-fe-cut {
1158
- padding-left: $fe-mobile-cut-padding-left;
1159
- padding-top: $fe-mobile-cut-padding-top;
1160
- }
1161
-
1162
- &.e-fe-copy {
1163
- padding-left: $fe-mobile-copy-padding-left;
1164
- }
1165
- }
1166
-
1167
- .e-toolbar .e-popup-up-icon.e-icons,
1168
- .e-toolbar .e-popup-down-icon.e-icons {
1169
- font-size: $fe-mobile-icon-font-size;
1170
- }
1171
-
1172
- .e-toolbar-left {
1173
-
1174
- .e-icons.e-fe-sort {
1175
- display: inline-block;
1176
- margin: 0;
1177
- width: 14px;
1178
- }
1179
-
1180
- .e-tbar-ddb-text {
1181
- display: none;
1182
- }
1183
-
1184
- .e-toolbar-item {
1185
-
1186
- .e-tbar-btn-text {
1187
- display: none;
1188
- }
1189
- }
1190
- }
1191
-
1192
- .e-splitter .e-split-bar {
1193
- display: none;
1194
- }
1195
-
1196
- .e-address {
1197
- height: $fe-mobile-search-height;
1198
-
1199
- .e-addressbar-ul {
1200
- height: $fe-mobile-search-height;
1201
- @if $fm-skin-name == 'material-dark' {
1202
- padding: $fe-big-bc-padding;
1203
- }
1204
- }
1205
-
1206
- .e-address-list-item .e-icons {
1207
- font-size: $fe-big-bc-icon-font-size;
1208
- }
1209
-
1210
- .e-list-text {
1211
- font-size: $fe-big-bc-font-size;
1212
- }
1213
-
1214
- .e-search-wrap {
1215
- min-width: 47px;
1216
- width: auto;
1217
-
1218
- .e-input-group {
1219
- display: none;
1220
- height: $fe-mobile-search-height;
1221
- width: 100%;
1222
-
1223
- .e-clear-icon {
1224
- margin: 2px 8px 0;
1225
- }
1226
-
1227
- .e-input {
1228
- margin: $fe-search-input-margin;
1229
- }
1230
- }
1231
- }
1232
-
1233
- .e-fe-search {
1234
- font-size: $fe-mobile-icon-font-size;
1235
- margin: 3px 0;
1236
- right: 13px;
1237
- }
1238
- }
1239
-
1240
- .e-grid {
1241
-
1242
- .e-fe-grid-icon .e-fe-icon {
1243
- height: $fe-mobile-grid-icon-size;
1244
- width: $fe-mobile-grid-icon-size;
1245
- @if $fm-skin-name == 'tailwind' or $fm-skin-name == 'bootstrap5' {
1246
- margin: 0 8px 0 0;
1247
- }
1248
- }
1249
-
1250
- .e-gridheader {
1251
- display: none;
1252
- }
1253
-
1254
- .e-content {
1255
-
1256
- .e-rowcell {
1257
- border-bottom: 1px solid;
1258
- border-bottom-color: $fe-border-color;
1259
-
1260
- &.e-fe-checkbox {
1261
- padding: 0;
1262
- }
1263
- }
1264
- }
1265
-
1266
- .e-gridcontent .e-fe-grid-icon {
1267
- @if $fm-skin-name == 'fabric-dark' {
1268
- padding-left: 9px;
1269
- padding-right: 9px;
1270
- }
1271
- @else {
1272
- padding-left: 10px;
1273
- padding-right: 10px;
1274
- }
1275
- }
1276
-
1277
- .e-fe-text {
1278
- @include ellipsis;
1279
- }
1280
- }
1281
-
1282
- .e-large-icons .e-list-parent {
1283
- padding: 0;
1284
-
1285
- .e-list-item {
1286
- display: inline-table;
1287
- height: $fe-mobile-lg-item-height;
1288
- margin: $fe-mobile-lg-item-margin;
1289
- width: $fe-mobile-lg-item-width;
1290
-
1291
- &.e-hover {
1292
- @include visibility(hidden);
1293
- }
1294
-
1295
- &.e-active {
1296
- @include visibility(visible);
1297
- }
1298
-
1299
- .e-checkbox-wrapper {
1300
- z-index: 1000;
1301
- }
1302
-
1303
- .e-list-text {
1304
- margin: 0 auto;
1305
- width: $fe-mobile-lg-item-inner-width;
1306
- }
1307
-
1308
- .e-list-img {
1309
- margin: 11px auto;
1310
- max-height: $fe-mobile-lg-img-height;
1311
- max-width: $fe-mobile-lg-item-inner-width;
1312
- }
1313
-
1314
- .e-list-icon {
1315
- height: $fe-mobile-lg-icon-height;
1316
- margin: $fe-mobile-lg-icon-margin;
1317
- width: $fe-mobile-lg-icon-width;
1318
- }
1319
- }
1320
- }
1321
- }
1322
-
1323
- &.e-fe-m-select {
1324
-
1325
- .e-large-icons {
1326
-
1327
- .e-list-item.e-large-icon {
1328
- @include visibility(visible);
1329
- }
1330
- }
1331
-
1332
- .e-grid {
1333
-
1334
- .e-content .e-row .e-rowcell {
1335
- @include visibility(visible);
1336
- }
1337
- }
1338
- }
1339
-
1340
- &.e-fe-m-filter {
1341
-
1342
- .e-address {
1343
-
1344
- .e-search-wrap {
1345
- margin: 0;
1346
- padding: 0;
1347
- position: absolute;
1348
- width: 100%;
1349
-
1350
- .e-input-group {
1351
- display: inline-flex;
1352
- }
1353
-
1354
- .e-input-group .e-input {
1355
- height: auto;
1356
- margin-left: 45px;
1357
- }
1358
-
1359
- .e-fe-search {
1360
- left: 0;
1361
- margin-left: 8px;
1362
- @if $fm-skin-name == 'tailwind' or $fm-skin-name == 'bootstrap5' {
1363
- margin-top: 7px;
1364
- }
1365
- @else {
1366
- margin-top: 3px;
1367
- }
1368
- width: 30px;
1369
- }
1370
- }
1371
-
1372
- .e-addressbar-ul {
1373
- visibility: hidden;
1374
- }
1375
- }
1376
- }
1377
-
1378
- &.e-fe-m-filter.e-rtl {
1379
-
1380
- .e-address {
1381
-
1382
- .e-search-wrap {
1383
-
1384
- .e-input-group .e-input {
1385
- margin-right: 45px;
1386
- }
1387
-
1388
- .e-fe-search {
1389
- transform: rotate(180deg);
1390
- }
1391
- }
1392
- }
1393
- }
1394
-
1395
- &.e-rtl {
1396
-
1397
- .e-grid {
1398
-
1399
- .e-gridheader,
1400
- .e-gridcontent {
1401
-
1402
- .e-fe-grid-icon {
1403
- padding-right: 10px;
1404
- }
1405
- }
1406
- }
1407
- }
1408
- }
1409
-
1410
- .e-fe-popup.e-bigger,
1411
- .e-bigger .e-fe-popup {
1412
-
1413
- .e-fe-error {
1414
- @if $fm-skin-name == 'tailwind' or $fm-skin-name == 'bootstrap5' {
1415
- font-size: $text-sm;
1416
- line-height: 22px;
1417
- }
1418
- }
1419
-
1420
- &.e-dialog {
1421
-
1422
- .e-dlg-header-content {
1423
- padding: $fe-big-dg-header-font-size;
1424
- }
1425
-
1426
- td {
1427
- @include ellipsis;
1428
- font-size: $fe-big-dg-td-font-size;
1429
- max-width: 205px;
1430
- min-width: 45px;
1431
- padding: $fe-big-dg-td-padding;
1432
- }
1433
- }
1434
- }
1435
-
1436
- .e-bigger .e-filemanager,
1437
- .e-filemanager.e-bigger {
1438
-
1439
- .e-toolbar {
1440
-
1441
- .e-toolbar-items .e-toolbar-item .e-btn-icon.e-icons {
1442
- font-size: $fe-mobile-icon-font-size;
1443
- }
1444
-
1445
- .e-toolbar-items .e-toolbar-item .e-dropdown-btn.e-btn {
1446
- &.e-tbar-btn {
1447
- padding: $fe-big-tb-ddb-btn-padding;
1448
- }
1449
-
1450
- &.e-tbar-btn.e-active {
1451
- padding: $fe-big-tb-ddb-btn-hvr-padding;
1452
- }
1453
-
1454
- &.e-tbar-btn:hover {
1455
- padding: $fe-big-tb-ddb-btn-hvr-padding;
1456
- }
1457
-
1458
- &.e-tbar-btn:focus {
1459
- padding: $fe-big-tb-ddb-btn-hvr-padding;
1460
- }
1461
-
1462
- &.e-tbar-btn .e-btn-icon.e-icons.e-caret {
1463
- @if $fm-skin-name == 'tailwind' {
1464
- font-size: 22px;
1465
- height: 22px;
1466
- margin: 4px 4px 0;
1467
- padding: 1px;
1468
- width: 22px;
1469
- }
1470
- @else {
1471
- padding: 0 10px;
1472
- }
1473
- }
1474
- }
1475
-
1476
- .e-toolbar-pop .e-toolbar-item .e-dropdown-btn .e-btn-icon.e-icons.e-caret {
1477
- padding: 0 10px;
1478
- }
1479
-
1480
- .e-popup-up-icon.e-icons,
1481
- .e-popup-down-icon.e-icons {
1482
- font-size: $fe-mobile-icon-font-size;
1483
- }
1484
- }
1485
- @if $fm-skin-name == 'tailwind' or $fm-skin-name == 'bootstrap5' {
1486
- .e-fe-clone {
1487
- .e-fe-content {
1488
- .e-fe-name {
1489
- font-size: $text-base;
1490
- line-height: 24px;
1491
- margin: 7px 12px 7px 0;
1492
- }
1493
-
1494
- .e-fe-icon {
1495
- height: 24px;
1496
- margin: 7px 12px;
1497
- width: 24px;
1498
- }
1499
- }
1500
-
1501
- .e-fe-count {
1502
- font-size: $text-sm;
1503
- height: 24px;
1504
- line-height: 22px;
1505
- width: 24px;
1506
- }
1507
- }
1508
- }
1509
-
1510
- .e-treeview {
1511
-
1512
- & > .e-ul {
1513
- @if $fm-skin-name != 'tailwind' and $fm-skin-name != 'bootstrap5' {
1514
- padding-left: 12px;
1515
- }
1516
- }
1517
-
1518
- .e-list-parent .e-list-item {
1519
-
1520
- .e-fullrow {
1521
- height: $fe-big-tv-fullrow-height;
1522
- }
1523
-
1524
- .e-list-text {
1525
- height: $fe-big-tv-node-height;
1526
- line-height: $fe-big-tv-node-height;
1527
- }
1528
- }
1529
- }
1530
-
1531
- .e-address {
1532
- height: $fe-big-address-height;
1533
-
1534
- .e-breadcrumb-menu .e-breadcrumb-submenu {
1535
- height: $fe-big-bc-submenu-height;
1536
- @if $fm-skin-name == 'material-dark' {
1537
- margin-top: -3px;
1538
- }
1539
- }
1540
-
1541
- .e-address-list-item {
1542
- height: $fe-big-bc-li-item-height;
1543
-
1544
- .e-icons {
1545
- font-size: $fe-big-bc-icon-font-size;
1546
- }
1547
- }
1548
-
1549
- .e-addressbar-ul {
1550
- padding: $fe-big-bc-padding;
1551
- }
1552
-
1553
- .e-list-text {
1554
- font-size: $fe-big-bc-font-size;
1555
- line-height: $fe-big-bc-text-size;
1556
- padding: $fe-big-bc-text-padding;
1557
- }
1558
-
1559
- .e-search-wrap {
1560
- min-width: 51px;
1561
- padding: $fe-big-search-padding;
1562
-
1563
- .e-input-group {
1564
- height: $fe-big-search-height;
1565
-
1566
- .e-input:focus {
1567
- padding: 0;
1568
- }
1569
-
1570
- .e-input {
1571
- @if ($fm-skin-name == 'material' or $fm-skin-name == 'material-dark') {
1572
- height: 39px;
1573
- }
1574
- @if ($fm-skin-name == 'FluentUI') {
1575
- height: 30px;
1576
- }
1577
- }
1578
-
1579
- .e-clear-icon::before {
1580
- @if ($fm-skin-name == 'bootstrap5') {
1581
- margin: 0;
1582
- }
1583
- }
1584
- }
1585
- }
1586
-
1587
- .e-fe-search {
1588
- @if $fm-skin-name == 'tailwind' or $fm-skin-name == 'bootstrap5' {
1589
- font-size: 16px;
1590
- }
1591
- @else if $fm-skin-name == 'FluentUI' {
1592
- font-size: 18px;
1593
- }
1594
- @if $fm-skin-name == 'tailwind' {
1595
- margin: 7px 4px;
1596
- }
1597
- @else if $fm-skin-name == 'bootstrap5' {
1598
- margin: 4px;
1599
- }
1600
- @else if $fm-skin-name == 'FluentUI' {
1601
- margin: 3px;
1602
- }
1603
- @else {
1604
- margin: 7px 0;
1605
- }
1606
- }
1607
- }
1608
-
1609
- .e-grid {
1610
- @include checkbox($fe-big-cb-line-height);
1611
-
1612
- .e-gridheader {
1613
-
1614
- .e-headercell {
1615
- height: $fe-big-grid-header-height;
1616
- }
1617
-
1618
- .e-headertext {
1619
- font-size: $fe-big-grid-header-font-size;
1620
- }
1621
- }
1622
-
1623
- .e-gridheader,
1624
- .e-gridcontent {
1625
-
1626
- .e-rowcell {
1627
- font-size: $fe-big-grid-content-font-size;
1628
-
1629
- .e-fe-text {
1630
- font-size: $fe-big-grid-content-name-font-size;
1631
- }
1632
- }
1633
-
1634
- .e-fe-checkbox {
1635
- padding-left: 10px;
1636
- }
1637
-
1638
- .e-fe-grid-icon {
1639
- @if $fm-skin-name == 'bootstrap5' or $fm-skin-name == 'tailwind' {
1640
- padding-left: 10px;
1641
- }
1642
- @else {
1643
- padding-left: 16px;
1644
- }
1645
- }
1646
- }
1647
-
1648
- .e-content {
1649
- tr.e-row.e-fe-drop-folder .e-rowcell {
1650
- @if $fm-skin-name == 'tailwind' {
1651
- padding-bottom: 11px;
1652
- padding-top: 11px;
1653
- }
1654
- }
1655
- }
1656
-
1657
- .e-fe-icon {
1658
- @if $fm-skin-name == 'tailwind' {
1659
- height: 24px;
1660
- width: 24px;
1661
- }
1662
- @else {
1663
- margin: $fe-big-grid-icon-margin;
1664
- }
1665
- }
1666
-
1667
- .e-empty {
1668
- min-width: $fe-big-grid-empty-min-width;
1669
- }
1670
-
1671
- .e-empty-content {
1672
- font-size: $fe-big-grid-empty-content-font-size;
1673
- margin: $fe-big-grid-empty-content-margin;
1674
- padding: $fe-big-grid-empty-content-padding;
1675
- text-align: $fe-big-grid-empty-content-text-align;
1676
- }
1677
-
1678
- .e-empty-icon {
1679
- height: $fe-big-grid-empty-icon-height;
1680
- margin: $fe-big-grid-empty-icon-margin;
1681
- width: $fe-big-grid-empty-icon-width;
1682
- }
1683
-
1684
- .e-empty-inner-content {
1685
- font-size: $fe-big-grid-empty-inner-content-font-size;
1686
- margin: $fe-big-grid-empty-inner-content-margin;
1687
- @if $fm-skin-name != 'tailwind' and $fm-skin-name != 'bootstrap5' {
1688
- opacity: $fe-big-grid-empty-inner-content-opacity;
1689
- }
1690
- padding: $fe-big-grid-empty-inner-content-padding;
1691
- text-align: $fe-big-grid-empty-inner-content-text-align;
1692
- }
1693
- }
1694
-
1695
- .e-large-icons {
1696
- @include checkbox($fe-big-cb-line-height);
1697
-
1698
- .e-list-parent {
1699
- padding: $fe-big-lg-padding;
1700
- }
1701
-
1702
- .e-list-item {
1703
- height: $fe-big-lg-item-height;
1704
- margin: $fe-big-lg-item-margin;
1705
- width: $fe-big-lg-item-width;
1706
- }
1707
-
1708
- .e-text-content {
1709
- height: $fe-big-lg-item-inner-height;
1710
- }
1711
-
1712
- .e-list-text {
1713
- font-size: $fe-big-lg-text-font-size;
1714
- padding: $fe-big-lg-text-padding;
1715
- width: $fe-big-lg-item-inner-width;
1716
- }
1717
-
1718
- .e-list-img {
1719
- max-height: $fe-big-lg-img-height;
1720
- max-width: $fe-big-lg-item-inner-width;
1721
- }
1722
-
1723
- .e-list-icon {
1724
- height: $fe-big-lg-icon-height;
1725
- margin: $fe-big-lg-icon-margin;
1726
- width: $fe-big-lg-icon-width;
1727
- }
1728
-
1729
- .e-empty {
1730
- min-width: $fe-big-lg-icon-empty-min-width;
1731
- }
1732
-
1733
- .e-empty-content {
1734
- font-size: $fe-big-lg-icon-empty-content-font-size;
1735
- margin: $fe-big-lg-icon-empty-content-margin;
1736
- padding: $fe-big-lg-icon-empty-content-padding;
1737
- text-align: $fe-big-lg-icon-empty-content-text-align;
1738
- }
1739
-
1740
- .e-empty-icon {
1741
- height: $fe-big-lg-icon-empty-icon-height;
1742
- margin: $fe-big-lg-icon-empty-icon-margin;
1743
- width: $fe-big-lg-icon-empty-icon-width;
1744
- }
1745
-
1746
- .e-empty-inner-content {
1747
- font-size: $fe-big-lg-icon-empty-inner-content-font-size;
1748
- margin: $fe-big-lg-icon-empty-inner-content-margin;
1749
- @if $fm-skin-name != 'tailwind' and $fm-skin-name != 'bootstrap5' {
1750
- opacity: $fe-big-lg-icon-empty-inner-content-opacity;
1751
- }
1752
- padding: $fe-big-lg-icon-empty-inner-content-padding;
1753
- text-align: $fe-big-lg-icon-empty-inner-content-text-align;
1754
- }
1755
- }
1756
-
1757
- &.e-rtl {
1758
-
1759
- .e-treeview {
1760
-
1761
- & > .e-ul {
1762
- @if $fm-skin-name != 'tailwind' and $fm-skin-name != 'bootstrap5' {
1763
- padding: 0 12px 0 0;
1764
- }
1765
- }
1766
- }
1767
-
1768
- @if $fm-skin-name == 'tailwind' or $fm-skin-name == 'bootstrap5' {
1769
- .e-fe-clone .e-fe-name {
1770
- margin: 7px 0 7px 12px;
1771
- }
1772
- }
1773
-
1774
- .e-grid {
1775
-
1776
- .e-gridheader,
1777
- .e-gridcontent {
1778
-
1779
- .e-fe-checkbox {
1780
- padding-right: 16px;
1781
- }
1782
- }
1783
- }
1784
- }
1785
-
1786
- .e-fe-overlay {
1787
- height: calc(100% - 41px);
1788
- }
1789
- }
1790
-
1791
- @media (max-width: 469px) {
1792
- .e-bigger .e-filemanager,
1793
- .e-filemanager.e-bigger {
1794
- &.e-fe-mobile .e-large-icons .e-list-parent .e-list-item {
1795
- min-width: $fe-mobile-lg-item-minwidth;
1796
- width: $fe-mobile-lg-item-width-two;
1797
- }
1798
- }
1799
- }
1800
-
1801
- @media (min-width: 470px) and (max-width: 625px) {
1802
- .e-bigger .e-filemanager,
1803
- .e-filemanager.e-bigger {
1804
- &.e-fe-mobile .e-large-icons .e-list-parent .e-list-item {
1805
- min-width: $fe-mobile-lg-item-minwidth;
1806
- width: $fe-mobile-lg-item-width-three;
1807
- }
1808
- }
1809
- }
1810
-
1811
- .e-content-placeholder.e-filemanager.e-placeholder-filemanager {
1812
- height: 100%;
1813
- width: 100%;
1814
- }
1815
- }
1
+ /* stylelint-disable property-no-vendor-prefix */
2
+ @mixin user-select {
3
+ -moz-user-select: none;
4
+ -ms-user-select: none;
5
+ -webkit-user-select: none;
6
+ user-select: none;
7
+ }
8
+
9
+ @mixin visibility($value) {
10
+ .e-checkbox-wrapper {
11
+ visibility: $value;
12
+ @if $fm-skin-name == 'fluent2' {
13
+ padding: 0;
14
+ }
15
+ }
16
+ }
17
+
18
+ @mixin grid-no-border {
19
+ .e-rowcell.e-lastrowcell {
20
+ border-bottom-width: 0;
21
+ }
22
+ }
23
+
24
+ @mixin popup-active-icon {
25
+ .e-fe-dot,
26
+ .e-fe-tick {
27
+ font-size: $fe-ddl-icon-font-size;
28
+ }
29
+ }
30
+
31
+ @mixin ellipsis {
32
+ overflow: hidden;
33
+ text-overflow: ellipsis;
34
+ white-space: nowrap;
35
+ }
36
+
37
+ @mixin size($height, $width) {
38
+ height: $height;
39
+ width: $width;
40
+ }
41
+
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;
50
+ }
51
+ }
52
+ }
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
+
95
+ @include export-module('FileManager-layout') {
96
+ ejs-filemanager {
97
+ display: block;
98
+ }
99
+
100
+ .e-filemanager {
101
+ @include user-select;
102
+ border: 1px solid;
103
+ position: relative;
104
+ @if $fm-skin-name == 'fluent2' {
105
+ border-radius: $fm-border-radius;
106
+ }
107
+
108
+ .e-blur {
109
+ opacity: .5;
110
+ }
111
+
112
+ &.e-fe-drop,
113
+ &.e-fe-drop .e-treeview .e-text-content,
114
+ &.e-fe-drop .e-treeview .e-fullrow,
115
+ &.e-fe-drop .e-address .e-address-list-item:last-child .e-list-text,
116
+ &.e-fe-drop .e-grid .e-columnheader {
117
+ cursor: grab;
118
+ }
119
+
120
+ &.e-no-drop {
121
+ cursor: no-drop;
122
+ }
123
+
124
+ .e-toolbar {
125
+ @if $fm-skin-name != 'fluent2' {
126
+ border-bottom-style: solid;
127
+ }
128
+ @if $fm-skin-name == 'bootstrap-dark' {
129
+ border-width: 1px;
130
+ }
131
+ @else {
132
+ border-width: 0 0 1px;
133
+ }
134
+
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;
141
+ }
142
+
143
+ @if ($fm-skin-name == 'Material3') {
144
+ .e-toolbar-item .e-tbar-btn {
145
+ .e-tbar-btn-text {
146
+ line-height: 18px;
147
+ padding: 7px 8px 7px 0;
148
+ }
149
+
150
+ .e-icons.e-btn-icon {
151
+ padding: 7px 8px;
152
+ }
153
+ }
154
+
155
+ .e-toolbar-item:not(.e-separator) {
156
+ padding: 0;
157
+ }
158
+ }
159
+
160
+ .e-toolbar-items .e-toolbar-item .e-dropdown-btn.e-btn.e-tbar-btn {
161
+ border: 0;
162
+ box-shadow: none;
163
+ font-weight: normal;
164
+ height: $fe-tb-ddb-height;
165
+ padding: $fe-tb-ddb-btn-padding;
166
+
167
+ .e-btn-icon.e-icons:not(.e-icon-left):not(.e-icon-right) {
168
+ padding: $fe-tb-ddb-icon-padding;
169
+ }
170
+
171
+ .e-btn-icon.e-icons.e-caret {
172
+ font-size: $fe-tb-ddb-caret-size;
173
+ @if $fm-skin-name == 'tailwind' or $fm-skin-name == 'bootstrap5' {
174
+ @include icon-style(18px, 18px, 2px 4px 0);
175
+ padding: 1px;
176
+ }
177
+ @else {
178
+ padding: 0 8px;
179
+ }
180
+ }
181
+
182
+ .e-tbar-btn-text.e-tbar-ddb-text {
183
+ padding-right: 0;
184
+ }
185
+
186
+ &.e-active,
187
+ &:hover,
188
+ &:focus {
189
+ border: $fe-tb-ddb-border;
190
+ padding: $fe-tb-ddb-btn-hvr-padding;
191
+ }
192
+ }
193
+
194
+ .e-toolbar-pop .e-toolbar-item .e-dropdown-btn {
195
+ .e-icons.e-caret {
196
+ font-size: $fe-tb-ddb-caret-size;
197
+ min-width: 0;
198
+ padding: 0 8px;
199
+ }
200
+
201
+ .e-tbar-btn-text.e-tbar-ddb-text {
202
+ padding-right: 0;
203
+ }
204
+ }
205
+
206
+ .e-toolbar-pop {
207
+ width: max-content;
208
+ }
209
+ }
210
+
211
+ .e-treeview {
212
+
213
+ & > .e-ul {
214
+ overflow: initial;
215
+ @if $fm-skin-name != 'tailwind' and $fm-skin-name != 'bootstrap5' {
216
+ padding-left: 8px;
217
+ }
218
+ }
219
+
220
+ .e-list-parent {
221
+ margin-bottom: 0;
222
+ margin-top: 0;
223
+
224
+ .e-list-item {
225
+ @if $fm-skin-name != 'fluent2' {
226
+ padding-bottom: 0;
227
+ padding-top: 0;
228
+
229
+ .e-fullrow {
230
+ height: $fe-tv-fullrow-height;
231
+ }
232
+ }
233
+
234
+ .e-list-text {
235
+ height: $fe-tv-node-height;
236
+ line-height: $fe-tv-node-height;
237
+ }
238
+
239
+ &.e-fe-drop-folder > .e-fullrow {
240
+ @if $fm-skin-name == 'tailwind' or $fm-skin-name == 'bootstrap5' or $fm-skin-name == 'fluent2' {
241
+ border: 1px dashed;
242
+ }
243
+ @else {
244
+ border: 1px solid;
245
+ }
246
+ box-sizing: border-box;
247
+ }
248
+ }
249
+ }
250
+
251
+ .e-text-content {
252
+ overflow: hidden;
253
+ text-overflow: ellipsis;
254
+ white-space: nowrap;
255
+ }
256
+
257
+ .e-list-text {
258
+ display: initial;
259
+ }
260
+
261
+ @if $fm-skin-name == 'fluent2' {
262
+ border: none;
263
+ }
264
+ }
265
+
266
+ .e-splitter {
267
+ border-width: 0;
268
+ }
269
+
270
+ .e-address {
271
+ border-bottom: 1px solid;
272
+ height: $fe-address-height;
273
+ position: relative;
274
+
275
+ .e-fe-breadcrumb.e-icons {
276
+ padding-bottom: 6px;
277
+ @if $fm-skin-name == 'material-dark' {
278
+ padding-bottom: 0;
279
+ }
280
+ }
281
+
282
+ .e-search-wrap {
283
+ float: right;
284
+ padding: $fe-search-padding;
285
+ position: absolute;
286
+ right: 0;
287
+ top: 0;
288
+ width: 200px;
289
+
290
+ .e-input-group {
291
+ @if $fm-skin-name != 'fluent2' {
292
+ border-bottom-width: $fe-bc-search-border-bottom;
293
+ }
294
+ height: $fe-search-height;
295
+ margin: 0;
296
+
297
+ @if $skin-name == 'bootstrap5' or $skin-name == 'tailwind' {
298
+ &.e-input-focus .e-input {
299
+ padding: 0;
300
+ }
301
+ }
302
+
303
+ .e-input {
304
+ @include margin-padding($fe-search-input-margin, 0);
305
+ @if $fm-skin-name == 'Material3' or $skin-name == 'bootstrap5' or $skin-name == 'material' {
306
+ height: $fe-search-input-height;
307
+ }
308
+ }
309
+
310
+ .e-clear-icon {
311
+ margin: $fe-search-clear-icon-padding;
312
+ @if $skin-name == 'FluentUI' {
313
+ padding: $fe-search-clear-icon-margin;
314
+ }
315
+ }
316
+ }
317
+ }
318
+
319
+ .e-fe-search {
320
+ font-size: $fe-search-icon-font-size;
321
+ @if ($fm-skin-name != 'fluent2') {
322
+ margin: $fe-search-icon-margin;
323
+ }
324
+ @if $fm-skin-name == 'tailwind' or $fm-skin-name == 'bootstrap5' {
325
+ margin-right: 4px;
326
+ padding: 3px;
327
+ }
328
+ @if ($fm-skin-name == 'Material3') {
329
+ padding: $fe-search-input-padding;
330
+ }
331
+ @else if ($fm-skin-name == 'fluent2') {
332
+ padding: $fe-search-input-padding;
333
+ }
334
+ @else {
335
+ padding: 5px;
336
+ }
337
+ position: absolute;
338
+ z-index: 1;
339
+
340
+ &::before {
341
+ display: inline-block;
342
+ }
343
+ }
344
+
345
+ .e-addressbar-ul {
346
+ @include ellipsis;
347
+ list-style: none;
348
+ @include margin-padding($fe-bc-margin, $fe-bc-padding);
349
+
350
+ .e-breadcrumb-menu {
351
+ display: inline;
352
+
353
+ .e-breadcrumb-submenu {
354
+ height: $fe-bc-submenu-height;
355
+ @if $fm-skin-name == 'material-dark' {
356
+ padding-bottom: 0;
357
+ padding-top: 0;
358
+ }
359
+ }
360
+ }
361
+ }
362
+
363
+ .e-list-text {
364
+ cursor: pointer;
365
+ font-size: $fe-bc-font-size;
366
+ line-height: $fe-bc-text-size;
367
+ @if $fm-skin-name == 'tailwind' or $fm-skin-name == 'bootstrap5' {
368
+ font-weight: $font-weight-medium;
369
+ }
370
+ @else {
371
+ padding: $fe-bc-text-padding;
372
+ }
373
+ text-decoration: none;
374
+ @if $fm-skin-name == 'fluent2' {
375
+ border-radius: 4px;
376
+ }
377
+
378
+ &:hover {
379
+ text-decoration: $fe-bc-li-text-decoration;
380
+ }
381
+ }
382
+
383
+ .e-address-list-item {
384
+ &:not(:last-child) {
385
+ .e-list-text {
386
+ @if ($fm-skin-name == 'bootstrap5.3') {
387
+ text-decoration: underline $primary-border-color;
388
+ }
389
+ }
390
+ }
391
+ }
392
+
393
+ .e-address-list-item {
394
+ display: inline-block;
395
+ @if $fm-skin-name != 'tailwind' and $fm-skin-name != 'bootstrap5' and $skin-name != 'bootstrap5.3' and $fm-skin-name != 'Material3' {
396
+ height: $fe-bc-li-item-height;
397
+ }
398
+
399
+ &:last-child {
400
+ .e-list-text {
401
+ cursor: default;
402
+ @if $fm-skin-name == 'fluent2' {
403
+ font-weight: 600;
404
+ }
405
+ &:hover {
406
+ text-decoration: none;
407
+ }
408
+ }
409
+ }
410
+
411
+ .e-icons {
412
+ font-size: $fe-bc-icon-font-size;
413
+ margin: $fe-bc-icon-margin;
414
+ @if $fm-skin-name == 'tailwind' or $fm-skin-name == 'Material3' or $fm-skin-name == 'fluent2' {
415
+ vertical-align: middle;
416
+ }
417
+
418
+ &::before {
419
+ @if $fm-skin-name != 'tailwind' and $fm-skin-name != 'fluent2' {
420
+ padding: $fe-bc-icon-padding;
421
+ }
422
+ }
423
+ }
424
+ }
425
+ }
426
+
427
+ .e-view-container .e-grid .e-gridcontent .e-emptyrow {
428
+ display: table-row;
429
+ }
430
+
431
+ .e-grid {
432
+ @include checkbox($fe-cb-line-height);
433
+ border-width: 0;
434
+ float: left;
435
+
436
+ .e-gridcontent tr.e-emptyrow td.e-lastrowcell:first-child:empty {
437
+ height: 0;
438
+ padding: 0;
439
+ }
440
+
441
+ .e-gridheader {
442
+ border-width: 0 1px 1px;
443
+
444
+ .e-headercell {
445
+ height: $fe-grid-header-height;
446
+
447
+ &.e-fe-grid-icon .e-sortfilterdiv {
448
+ margin-right: $fe-grid-icon-sort-margin;
449
+ }
450
+
451
+ .e-headertext {
452
+ font-size: $fe-grid-header-font-size;
453
+ }
454
+
455
+ .e-rcursor {
456
+ border: 0;
457
+ }
458
+
459
+ @if $fm-skin-name == 'fabric' or $fm-skin-name == 'fabric-dark' {
460
+ padding: 5px 8px;
461
+ line-height: 16px;
462
+ }
463
+ }
464
+
465
+ @include visibility(hidden);
466
+
467
+ &:hover,
468
+ .e-active {
469
+ @include visibility(visible);
470
+ }
471
+ }
472
+
473
+ &.e-headercheck .e-gridheader .e-headercontent {
474
+ @include visibility(visible);
475
+ }
476
+
477
+ @if $fm-skin-name == 'FluentUI' {
478
+ .e-checkbox-wrapper:hover .e-frame {
479
+ font-size: 10px;
480
+ }
481
+ }
482
+
483
+ .e-content {
484
+ overflow-y: auto !important; /* stylelint-disable-line declaration-no-important */
485
+ .e-table {
486
+ border-spacing: 0;
487
+ }
488
+ }
489
+
490
+ .e-content {
491
+
492
+ .e-rowcell {
493
+ border: 0;
494
+ font-size: $fe-grid-content-font-size;
495
+
496
+ @if $fm-skin-name == 'FluentUI' {
497
+ padding: 8px;
498
+ }
499
+
500
+ @if $fm-skin-name == 'Material3' or $fm-skin-name == 'fluent2' {
501
+ padding: $fe-grid-content-padding;
502
+ line-height: 20px;
503
+
504
+ .e-fe-text {
505
+ font-size: $fe-grid-content-name-font-size;
506
+ line-height: 20px;
507
+ }
508
+ }
509
+
510
+ @if $fm-skin-name == 'fabric' or $fm-skin-name == 'fabric-dark' {
511
+ padding: 8px 12px;
512
+ line-height: 16px;
513
+ }
514
+ }
515
+
516
+ tr.e-row.e-fe-drop-folder .e-rowcell:first-child {
517
+ @if $fm-skin-name == 'tailwind' {
518
+ border-bottom: 1px dashed $fe-drop-folder-bg-color;
519
+ border-left: 1px dashed $fe-drop-folder-bg-color;
520
+ border-top: 1px dashed $fe-drop-folder-bg-color;
521
+ }
522
+ @else {
523
+ box-shadow: 1px 0 0 1px $fe-drop-folder-bg-color inset;
524
+ }
525
+ }
526
+
527
+ tr.e-row.e-fe-drop-folder .e-rowcell:last-child {
528
+ @if $fm-skin-name == 'tailwind' {
529
+ border-bottom: 1px dashed $fe-drop-folder-bg-color;
530
+ border-right: 1px dashed $fe-drop-folder-bg-color;
531
+ border-top: 1px dashed $fe-drop-folder-bg-color;
532
+ }
533
+ @else {
534
+ box-shadow: -1px 0 0 1px $fe-drop-folder-bg-color inset;
535
+ }
536
+ }
537
+
538
+ tr.e-row.e-fe-drop-folder .e-rowcell {
539
+ @if $fm-skin-name == 'tailwind' {
540
+ border-bottom: 1px dashed $fe-drop-folder-bg-color;
541
+ border-top: 1px dashed $fe-drop-folder-bg-color;
542
+ padding-bottom: 6px;
543
+ padding-top: 6px;
544
+ }
545
+ @else {
546
+ box-shadow: 0 2px 0 -1px $fe-drop-folder-bg-color inset, 0 -2px 0 -1px $fe-drop-folder-bg-color inset;
547
+ }
548
+ }
549
+ }
550
+
551
+ .e-empty {
552
+ min-width: $fe-grid-empty-min-width;
553
+ @if $fm-skin-name == 'Material3' {
554
+ border: 1px dashed $primary;
555
+ border-radius: 2px;
556
+ margin: 36px;
557
+ height: calc(100% - 72px);
558
+ }
559
+ }
560
+
561
+ .e-empty-content {
562
+ @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);
563
+ @if $fm-skin-name == 'tailwind' or $fm-skin-name == 'bootstrap5' {
564
+ line-height: 24px;
565
+ }
566
+ @if ($fm-skin-name == 'fluent2') {
567
+ line-height: 20px;
568
+ }
569
+ @if $fm-skin-name == 'Material3' {
570
+ font-weight: 500;
571
+ }
572
+ }
573
+
574
+ .e-empty-icon {
575
+ @include icon-style($fe-grid-empty-icon-height, $fe-grid-empty-icon-width, $fe-grid-empty-icon-margin);
576
+ @if $fm-skin-name == 'Material3' {
577
+ margin-top: 5%;
578
+ }
579
+ }
580
+
581
+ .e-empty-inner-content {
582
+ @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);
583
+ @if $fm-skin-name == 'tailwind' or $fm-skin-name == 'bootstrap5' or $fm-skin-name == 'bootstrap5.3' or $fm-skin-name == 'Material3' {
584
+ line-height: 22px;
585
+ }
586
+ @else if $fm-skin-name == 'fluent2' {
587
+ line-height: 20px;
588
+ color: $fe-grid-empty-inner-content-color;
589
+ }
590
+ @else {
591
+ opacity: $fe-lg-icon-empty-inner-content-opacity;
592
+ }
593
+ }
594
+
595
+ .e-gridpopup {
596
+ display: none !important; /* stylelint-disable-line declaration-no-important */
597
+ }
598
+
599
+ .e-gridheader,
600
+ .e-gridcontent {
601
+
602
+ .e-fe-checkbox {
603
+ overflow: inherit;
604
+ padding-left: $fe-grid-header-cb-padding-left;
605
+ padding-right: 0;
606
+ box-shadow: none;
607
+ }
608
+
609
+ .e-fe-grid-icon {
610
+ @if $fm-skin-name != 'tailwind' and $fm-skin-name != 'Material3' {
611
+ padding: 0 0 0 12px;
612
+ }
613
+ @if $fm-skin-name == 'Material3' {
614
+ padding: $fe-grid-icon-padding;
615
+ }
616
+
617
+ .e-headercelldiv {
618
+ text-overflow: unset;
619
+ }
620
+
621
+ & + .e-rowcell,
622
+ & + .e-headercell {
623
+ padding-left: 0;
624
+
625
+ &.e-fe-grid-name {
626
+ padding-left: 6px;
627
+ }
628
+ }
629
+ }
630
+ }
631
+
632
+ .e-row {
633
+ @include visibility(hidden);
634
+
635
+ &.e-focused {
636
+ box-shadow: none;
637
+ @if $fm-skin-name != 'tailwind' and $fm-skin-name != 'bootstrap5' and $fm-skin-name != 'bootstrap5.3' and $fm-skin-name != 'FluentUI' and $fm-skin-name != 'Material3' and $fm-skin-name != 'fluent2' {
638
+ td {
639
+ box-shadow: $fe-grid-row-ie-box-shadow;
640
+ &:first-child{
641
+ box-shadow: $fe-grid-row-fc-ie-box-shadow;
642
+ }
643
+ &:last-child{
644
+ box-shadow: $fe-grid-row-lc-ie-box-shadow;
645
+ }
646
+ }
647
+ }
648
+ }
649
+
650
+ &:hover,
651
+ .e-active {
652
+ @include visibility(visible);
653
+ }
654
+
655
+ &.e-fe-drop-file:hover {
656
+ @include visibility(hidden);
657
+ }
658
+ }
659
+
660
+ &.e-horizontallines,
661
+ &.e-verticallines,
662
+ &.e-hidelines {
663
+ @include grid-no-border;
664
+ }
665
+
666
+ &.e-resize-lines .e-headercell .e-rsuppress {
667
+ border-width: 0;
668
+ }
669
+
670
+ .e-fe-icon {
671
+ display: inline-block;
672
+ @include icon-style($fe-grid-icon-size, $fe-grid-icon-size, $fe-grid-icon-margin);
673
+ vertical-align: middle;
674
+ }
675
+ }
676
+
677
+ .e-view-container .e-grid .e-gridheader {
678
+ padding-right: 0 !important; /* stylelint-disable-line declaration-no-important */
679
+ }
680
+
681
+ &.e-rtl .e-view-container .e-grid .e-gridheader {
682
+ padding-left: 0 !important; /* stylelint-disable-line declaration-no-important */
683
+ }
684
+
685
+ .e-large-icons {
686
+ @include checkbox($fe-cb-line-height);
687
+ float: left;
688
+ overflow: auto;
689
+ width: 100%;
690
+ height: calc(100% - $fe-address-height);
691
+
692
+ .e-empty {
693
+ min-width: $fe-lg-icon-empty-min-width;
694
+ @if $fm-skin-name == 'Material3' {
695
+ border: 1px dashed $primary;
696
+ border-radius: 2px;
697
+ margin: 36px;
698
+ height: calc(100% - 72px);
699
+ }
700
+ }
701
+
702
+ .e-empty-content {
703
+ @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);
704
+ @if $fm-skin-name == 'tailwind' or $fm-skin-name == 'bootstrap5' {
705
+ line-height: 24px;
706
+ }
707
+ @if ($fm-skin-name == 'fluent2') {
708
+ line-height: 20px;
709
+ }
710
+ @if $fm-skin-name == 'Material3' {
711
+ font-weight: 500;
712
+ }
713
+ }
714
+
715
+ .e-empty-icon {
716
+ @include icon-style($fe-lg-icon-empty-icon-height, $fe-lg-icon-empty-icon-width, $fe-lg-icon-empty-icon-margin);
717
+ @if $fm-skin-name == 'Material3' {
718
+ margin-top: 10%;
719
+ }
720
+ }
721
+
722
+ .e-empty-inner-content {
723
+ @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);
724
+ @if $fm-skin-name == 'tailwind' or $fm-skin-name == 'bootstrap5' or $fm-skin-name == 'bootstrap5.3' or $fm-skin-name == 'Material3' {
725
+ line-height: 22px;
726
+ }
727
+ @else if $fm-skin-name == 'fluent2' {
728
+ line-height: 20px;
729
+ color: $fe-grid-empty-inner-content-color;
730
+ }
731
+ @else {
732
+ opacity: $fe-lg-icon-empty-inner-content-opacity;
733
+ }
734
+ }
735
+
736
+ .e-list-parent {
737
+ display: block;
738
+ height: 100%;
739
+ @include margin-padding($fe-lg-margin, $fe-lg-padding);
740
+ overflow: auto;
741
+ }
742
+
743
+ .e-checkbox-wrapper {
744
+ float: left;
745
+ position: absolute;
746
+ top: 0;
747
+ visibility: hidden;
748
+ @if $fm-skin-name == 'tailwind' or $fm-skin-name == 'bootstrap5' {
749
+ margin: 2px;
750
+ }
751
+ @if $fm-skin-name == 'Material3' {
752
+ margin: 4px;
753
+ }
754
+ }
755
+
756
+ .e-list-item {
757
+ border: $fe-lg-item-border solid;
758
+ float: left;
759
+ @include icon-style($fe-lg-item-height, $fe-lg-item-width, $fe-lg-item-margin);
760
+ overflow: hidden;
761
+ padding: $fe-lg-item-padding;
762
+
763
+ &.e-fe-drop-folder {
764
+ @if $fm-skin-name == 'tailwind' or $fm-skin-name == 'bootstrap5' or $fm-skin-name == 'Material3'{
765
+ border: 1px dashed $fe-drop-folder-bg-color;
766
+ }
767
+ @else if $fm-skin-name == 'FluentUI' {
768
+ border: 2px dashed $fe-drop-folder-bg-color;
769
+ }
770
+ }
771
+ @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' {
772
+ border-radius: 4px;
773
+ }
774
+
775
+ &.e-active,
776
+ &.e-hover,
777
+ &:hover {
778
+ @include visibility(visible);
779
+ }
780
+ }
781
+
782
+ .e-text-content {
783
+ display: table-cell;
784
+ height: $fe-lg-item-inner-height;
785
+ position: relative;
786
+ vertical-align: bottom;
787
+ }
788
+
789
+ .e-list-text {
790
+ @include ellipsis;
791
+ display: block;
792
+ font-size: $fe-lg-text-font-size;
793
+ padding: $fe-lg-text-padding;
794
+ text-align: center;
795
+ width: $fe-lg-item-inner-width;
796
+ @if $fm-skin-name == 'Material3' {
797
+ line-height: $fe-lg-text-line-height;
798
+ }
799
+ }
800
+
801
+ .e-list-img {
802
+ @if $fm-skin-name != 'Material3' and $fm-skin-name != 'Material3-dark' {
803
+ border: 2px solid;
804
+ }
805
+ @if $fm-skin-name != 'tailwind' and $fm-skin-name != 'bootstrap5' and $fm-skin-name != 'bootstrap5.3' and $fm-skin-name != 'Material3' {
806
+ box-shadow: $fe-img-box-shadow;
807
+ }
808
+ display: block;
809
+ margin: 0 auto;
810
+ max-height: $fe-lg-img-height;
811
+ max-width: 100%;
812
+ min-height: 20px;
813
+ }
814
+
815
+ .e-list-icon {
816
+ display: block;
817
+ @include icon-style($fe-lg-icon-height, $fe-lg-icon-width, $fe-lg-icon-margin);
818
+ @if $fm-skin-name == 'Material3' {
819
+ background-position: center;
820
+ }
821
+ }
822
+ }
823
+
824
+ &.e-drag-select {
825
+ position: absolute;
826
+ background-color: $fe-drag-select-bg-color;
827
+ opacity: $fe-drag-select-bg-opacity;
828
+ border: none;
829
+ width: 0;
830
+ height: 0;
831
+ z-index: 1;
832
+ }
833
+
834
+ .e-fe-clone {
835
+ pointer-events: none;
836
+ z-index: 20;
837
+
838
+ .e-fe-content {
839
+ border: $fe-clone-border;
840
+ box-shadow: $fe-clone-box-shadow;
841
+ display: inline-flex;
842
+ @if $fm-skin-name == 'tailwind' or $fm-skin-name == 'bootstrap5' {
843
+ height: 38px;
844
+ }
845
+ @else if $fm-skin-name == 'Material3' {
846
+ height: 40px;
847
+ }
848
+ @else {
849
+ height: 36px;
850
+ padding: 4px 8px;
851
+ }
852
+ @if $fm-skin-name == 'bootstrap4' or $fm-skin-name == 'bootstrap-dark' or $fm-skin-name == 'bootstrap' {
853
+ border-radius: 4px;
854
+ }
855
+
856
+ .e-fe-name {
857
+ display: inline-block;
858
+ @if $fm-skin-name == 'tailwind' or $fm-skin-name == 'bootstrap5' {
859
+ font-size: 14px;
860
+ line-height: 22px;
861
+ margin: 8px 8px 8px 0;
862
+ max-width: 150px;
863
+ }
864
+ @else {
865
+ font-size: 13px;
866
+ margin: auto 8px;
867
+ max-width: 70px;
868
+ }
869
+ overflow: hidden;
870
+ text-overflow: ellipsis;
871
+ white-space: nowrap;
872
+ }
873
+
874
+ .e-fe-icon {
875
+ display: inline-block;
876
+ @if $fm-skin-name == 'tailwind' or $fm-skin-name == 'bootstrap5' {
877
+ @include icon-style(20px, 20px, 9px 8px);
878
+ }
879
+ @else {
880
+ @include icon-style(18px, 18px, auto 8px);
881
+ }
882
+ }
883
+ }
884
+
885
+ .e-fe-count {
886
+ border: 1px solid;
887
+ border-radius: 50%;
888
+ font-size: 12px;
889
+ @if $fm-skin-name == 'tailwind' or $fm-skin-name == 'bootstrap5' {
890
+ @include icon-style(20px, 20px, -10px 0 0 -10px);
891
+ line-height: 18px;
892
+ }
893
+ @else {
894
+ @include size(22px, 22px);
895
+ line-height: 22px;
896
+ margin-left: -12px;
897
+ }
898
+ position: relative;
899
+ text-align: center;
900
+ top: 0;
901
+ }
902
+ }
903
+
904
+ &.e-rtl {
905
+
906
+ .e-treeview > .e-ul {
907
+ @if $fm-skin-name != 'tailwind' and $fm-skin-name != 'bootstrap5' {
908
+ padding: 0 8px 0 0;
909
+ }
910
+ }
911
+
912
+ .e-toolbar {
913
+
914
+ .e-fe-grid {
915
+ display: inline-table;
916
+ transform: rotate(180deg);
917
+ }
918
+
919
+ .e-toolbar-items .e-toolbar-right .e-toolbar-item .e-dropdown-btn .e-icon-left {
920
+ @if $fm-skin-name == 'FluentUI' {
921
+ line-height: $fe-cb-line-height;
922
+ }
923
+ }
924
+ }
925
+
926
+ .e-splitter.e-splitter-horizontal {
927
+ -ms-flex-direction: row-reverse;
928
+ flex-direction: row-reverse;
929
+ }
930
+
931
+ .e-address {
932
+
933
+ .e-search-wrap {
934
+ float: left;
935
+ left: 0;
936
+ right: auto;
937
+ @if $fm-skin-name == 'tailwind' or $fm-skin-name == 'bootstrap5' {
938
+ padding-left: 12px;
939
+ }
940
+
941
+ @if $fm-skin-name == 'Material3' {
942
+ padding: $fe-rtl-search-padding;
943
+ }
944
+
945
+ .e-input-group {
946
+ .e-input {
947
+ @if $fm-skin-name == 'tailwind' or $fm-skin-name == 'bootstrap5' {
948
+ margin: 0 29px 0 0;
949
+ }
950
+ @else if $fm-skin-name == 'Material3' {
951
+ margin: $fe-rtl-search-input-margin;
952
+ }
953
+ @else {
954
+ margin: 0 24px 0 0;
955
+ }
956
+ padding: 0;
957
+ }
958
+ }
959
+ }
960
+
961
+ .e-addressbar-ul {
962
+ display: flex;
963
+
964
+ @if $fm-skin-name == 'tailwind' or $fm-skin-name == 'bootstrap5' {
965
+ padding: $fe-rtl-bc-padding;
966
+ }
967
+
968
+ .e-icons::before {
969
+ display: inline-block;
970
+ transform: rotate(180deg);
971
+ }
972
+ }
973
+ }
974
+
975
+ .e-grid.e-rtl {
976
+
977
+ .e-row.e-focused {
978
+ @if $fm-skin-name != 'tailwind' and $fm-skin-name != 'bootstrap5' and $fm-skin-name != 'bootstrap5.3' and $fm-skin-name != 'FluentUI' and $fm-skin-name != 'Material3' {
979
+ td:first-child {
980
+ box-shadow: $fe-grid-row-lc-ie-box-shadow;
981
+ }
982
+
983
+ td:last-child {
984
+ box-shadow: $fe-grid-row-fc-ie-box-shadow;
985
+ }
986
+ }
987
+ }
988
+ @if $fm-skin-name == 'tailwind' {
989
+ .e-content {
990
+
991
+ tr.e-row.e-fe-drop-folder .e-rowcell:first-child {
992
+ border-left: 0;
993
+ border-right: 1px dashed $fe-drop-folder-bg-color;
994
+ }
995
+
996
+ tr.e-row.e-fe-drop-folder .e-rowcell:last-child {
997
+ border-left: 1px dashed $fe-drop-folder-bg-color;
998
+ border-right: 0;
999
+ }
1000
+ }
1001
+ }
1002
+
1003
+ .e-gridheader,
1004
+ .e-gridcontent {
1005
+
1006
+ .e-fe-checkbox {
1007
+ padding-left: 0;
1008
+ padding-right: 12px;
1009
+ }
1010
+
1011
+ .e-fe-grid-icon {
1012
+ padding-left: 0;
1013
+ padding-right: 12px;
1014
+
1015
+ & + .e-rowcell,
1016
+ & + .e-headercell {
1017
+ padding-left: 21px;
1018
+ padding-right: 0;
1019
+
1020
+ &.e-fe-grid-name {
1021
+ padding-right: 12px;
1022
+ }
1023
+ }
1024
+ }
1025
+ }
1026
+
1027
+ .e-fe-icon {
1028
+ margin: $fe-rtl-grid-icon-margin;
1029
+ }
1030
+ }
1031
+
1032
+ .e-large-icons .e-list-item {
1033
+ float: right;
1034
+ }
1035
+
1036
+ .e-fe-clone .e-fe-count {
1037
+ margin-left: 0;
1038
+ margin-right: -12px;
1039
+ }
1040
+
1041
+ @if $fm-skin-name == 'tailwind' or $fm-skin-name == 'bootstrap5' {
1042
+ .e-fe-clone .e-fe-name {
1043
+ margin: 8px 0 8px 8px;
1044
+ }
1045
+ }
1046
+ }
1047
+
1048
+ .e-layout-content {
1049
+ position: relative;
1050
+ }
1051
+
1052
+ .e-pager {
1053
+ border-width: 1px 0 0;
1054
+ }
1055
+
1056
+ .e-fe-overlay {
1057
+ border: $fe-upload-overlay-border dashed $fe-drop-border-color;
1058
+ bottom: 0;
1059
+ display: block;
1060
+ @include size(calc(100% - 34px), 100%);
1061
+ @if $fm-skin-name == 'fluent2' {
1062
+ width: calc(100% - 48px);
1063
+ top: 64px;
1064
+ height: calc(100% - 88px);
1065
+ left: 24px;
1066
+ }
1067
+ pointer-events: none;
1068
+ position: absolute;
1069
+ visibility: hidden;
1070
+ }
1071
+
1072
+ @if $fm-skin-name == 'fluent2' {
1073
+ .e-grid + .e-large-icons + .e-fe-overlay {
1074
+ top: 82px;
1075
+ }
1076
+
1077
+ .e-grid:has(.e-empty) + .e-large-icons + .e-fe-overlay {
1078
+ top: 96px;
1079
+ height: calc(100% - 120px);
1080
+ }
1081
+ }
1082
+
1083
+ .e-upload-drag-hover {
1084
+ outline: none;
1085
+
1086
+ .e-fe-overlay {
1087
+ visibility: visible;
1088
+ }
1089
+ }
1090
+ }
1091
+
1092
+ .e-fe-popup {
1093
+
1094
+ &.e-dropdown-popup ul .e-item,
1095
+ &.e-contextmenu-wrapper ul .e-menu-item,
1096
+ &.e-contextmenu-container ul .e-menu-item {
1097
+ @include popup-active-icon;
1098
+ }
1099
+
1100
+ &.e-dlg-resizable .e-dlg-content {
1101
+ overflow: hidden;
1102
+ }
1103
+
1104
+ &.e-dialog.e-fe-upload-dialog .e-dlg-content {
1105
+ overflow: auto;
1106
+ }
1107
+
1108
+ &.e-contextmenu-wrapper ul .e-menu-item.e-separator,
1109
+ &.e-contextmenu-container ul .e-menu-item.e-separator {
1110
+ margin: $fe-cm-separator-margin;
1111
+ }
1112
+
1113
+ &.e-rtl .e-fe-grid {
1114
+ display: inline-table;
1115
+ transform: rotate(180deg);
1116
+ }
1117
+
1118
+ &.e-dialog {
1119
+
1120
+ td {
1121
+ @include ellipsis;
1122
+ font-size: $fe-dg-td-font-size;
1123
+ max-width: 211px;
1124
+ min-width: 51px;
1125
+ padding: $fe-dg-td-padding;
1126
+ @if $fm-skin-name == 'tailwind' or $fm-skin-name == 'bootstrap5' {
1127
+ line-height: 22px;
1128
+
1129
+ &:first-child {
1130
+ font-size: $text-sm;
1131
+ line-height: 22px;
1132
+ }
1133
+ }
1134
+ }
1135
+
1136
+ td.e-fe-value {
1137
+ white-space: unset;
1138
+ word-break: break-word;
1139
+ }
1140
+
1141
+ .e-fe-errorcontent {
1142
+ white-space: normal;
1143
+ word-break: break-word;
1144
+ }
1145
+
1146
+ .e-fe-icon {
1147
+ display: inline-block;
1148
+ @include icon-style(18px, 18px, 0 8px -2px 0);
1149
+ }
1150
+
1151
+ .e-fe-access-header {
1152
+ display: inline-block;
1153
+ }
1154
+
1155
+ .e-fe-retrycontent {
1156
+ padding: 16px 0;
1157
+ }
1158
+
1159
+ .e-image {
1160
+ @include size(100%, 100%);
1161
+ }
1162
+
1163
+ .e-dlg-content {
1164
+ @if $fm-skin-name == 'tailwind' or $fm-skin-name == 'bootstrap5' {
1165
+ padding-top: 16px;
1166
+ }
1167
+ @if $fm-skin-name == 'FluentUI' {
1168
+ padding-top: 2px;
1169
+ }
1170
+ }
1171
+
1172
+ &.e-rtl {
1173
+ td {
1174
+ padding: $fe-dg-rtl-td-padding;
1175
+ }
1176
+ .e-fe-icon {
1177
+ margin: 0 0 -2px 8px;
1178
+ }
1179
+ }
1180
+ }
1181
+
1182
+ &.e-dialog.e-popup.e-dlg-resizable {
1183
+ min-height: 200px;
1184
+ }
1185
+
1186
+ .e-fe-error {
1187
+ @if $fm-skin-name == 'tailwind' or $fm-skin-name == 'bootstrap5' {
1188
+ font-size: $text-xs;
1189
+ line-height: 18px;
1190
+ padding-top: 4px;
1191
+ }
1192
+ @else {
1193
+ font-size: 12px;
1194
+ line-height: 1.5;
1195
+ }
1196
+ }
1197
+
1198
+ .e-upload {
1199
+ border-bottom-width: 0;
1200
+ border-top-width: 0;
1201
+
1202
+ .e-upload-actions {
1203
+ border-bottom: 1px solid;
1204
+ }
1205
+ }
1206
+ }
1207
+
1208
+ .e-filemanager .e-display-none,
1209
+ .e-filemanager .e-treeview .e-icons .e-treeview-spinner,
1210
+ .e-filemanager .e-splitter .e-split-bar .e-resize-handler,
1211
+ .e-filemanager .e-splitter .e-display-none,
1212
+ .e-filemanager .e-grid .e-spin-show,
1213
+ .e-filemanager .e-grid .e-gridheader .e-emptyrow,
1214
+ .e-filemanager .e-grid .e-gridcontent .e-emptyrow,
1215
+ .e-fe-popup .e-upload .e-file-select-wrap,
1216
+ .e-fe-popup .e-upload .e-icons.e-file-delete-btn {
1217
+ display: none;
1218
+ }
1219
+
1220
+ @media (max-width: 469px) {
1221
+ .e-bigger .e-filemanager,
1222
+ .e-filemanager.e-bigger {
1223
+ &.e-fe-mobile .e-large-icons .e-list-parent .e-list-item {
1224
+ min-width: $fe-mobile-lg-item-minwidth;
1225
+ width: $fe-mobile-lg-item-width-two;
1226
+ }
1227
+ }
1228
+ }
1229
+
1230
+ @media (min-width: 470px) and (max-width: 625px) {
1231
+ .e-bigger .e-filemanager,
1232
+ .e-filemanager.e-bigger {
1233
+ &.e-fe-mobile .e-large-icons .e-list-parent .e-list-item {
1234
+ min-width: $fe-mobile-lg-item-minwidth;
1235
+ width: $fe-mobile-lg-item-width-three;
1236
+ }
1237
+ }
1238
+ }
1239
+
1240
+ @media (min-width: 360px) and (max-width: 500px) {
1241
+ @if $skin-name == 'FluentUI' {
1242
+ .e-bigger .e-filemanager .e-grid .e-checkbox-wrapper .e-frame {
1243
+ position: relative;
1244
+ right: 10px;
1245
+ }
1246
+ }
1247
+ }
1248
+
1249
+ .e-content-placeholder.e-filemanager.e-placeholder-filemanager {
1250
+ @include size(100%, 100%);
1251
+ }
1252
+ }