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