@syncfusion/ej2-filemanager 20.1.47 → 20.1.52-10459

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