@syncfusion/ej2-filemanager 20.3.49 → 20.4.38
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.eslintrc.json +16 -1
- package/CHANGELOG.md +0 -8
- package/README.md +53 -42
- package/dist/ej2-filemanager.min.js +2 -2
- package/dist/ej2-filemanager.umd.min.js +2 -2
- package/dist/ej2-filemanager.umd.min.js.map +1 -1
- package/dist/es6/ej2-filemanager.es2015.js +313 -90
- package/dist/es6/ej2-filemanager.es2015.js.map +1 -1
- package/dist/es6/ej2-filemanager.es5.js +343 -99
- package/dist/es6/ej2-filemanager.es5.js.map +1 -1
- package/dist/global/ej2-filemanager.min.js +2 -2
- package/dist/global/ej2-filemanager.min.js.map +1 -1
- package/dist/global/index.d.ts +1 -1
- package/package.json +26 -17
- package/src/file-manager/actions/breadcrumb-bar.js +1 -1
- package/src/file-manager/actions/index.d.ts +1 -0
- package/src/file-manager/actions/index.js +1 -0
- package/src/file-manager/actions/virtualization.d.ts +38 -0
- package/src/file-manager/actions/virtualization.js +179 -0
- package/src/file-manager/base/file-manager-model.d.ts +14 -1
- package/src/file-manager/base/file-manager.d.ts +15 -0
- package/src/file-manager/base/file-manager.js +10 -1
- package/src/file-manager/base/interface.d.ts +2 -1
- package/src/file-manager/common/utility.js +5 -4
- package/src/file-manager/layout/details-view.js +13 -0
- package/src/file-manager/layout/large-icons-view.d.ts +2 -1
- package/src/file-manager/layout/large-icons-view.js +8 -1
- package/src/file-manager/models/index.d.ts +2 -0
- package/src/file-manager/models/index.js +1 -0
- package/src/file-manager/models/virtualization-settings-model.d.ts +29 -0
- package/src/file-manager/models/virtualization-settings.d.ts +24 -0
- package/src/file-manager/models/virtualization-settings.js +40 -0
- package/src/global.js +1 -1
- package/styles/bootstrap-dark.css +2 -12
- package/styles/bootstrap.css +2 -12
- package/styles/bootstrap4.css +2 -12
- package/styles/bootstrap5-dark.css +2 -12
- package/styles/bootstrap5.css +2 -12
- package/styles/fabric-dark.css +2 -12
- package/styles/fabric.css +2 -12
- package/styles/file-manager/_layout.scss +9 -19
- package/styles/file-manager/bootstrap-dark.css +2 -12
- package/styles/file-manager/bootstrap.css +2 -12
- package/styles/file-manager/bootstrap4.css +2 -12
- package/styles/file-manager/bootstrap5-dark.css +2 -12
- package/styles/file-manager/bootstrap5.css +2 -12
- package/styles/file-manager/fabric-dark.css +2 -12
- package/styles/file-manager/fabric.css +2 -12
- package/styles/file-manager/fluent-dark.css +8 -12
- package/styles/file-manager/fluent.css +8 -12
- package/styles/file-manager/highcontrast-light.css +2 -12
- package/styles/file-manager/highcontrast.css +2 -12
- package/styles/file-manager/material-dark.css +2 -12
- package/styles/file-manager/material.css +2 -15
- package/styles/file-manager/tailwind-dark.css +2 -12
- package/styles/file-manager/tailwind.css +2 -12
- package/styles/fluent-dark.css +8 -12
- package/styles/fluent.css +8 -12
- package/styles/highcontrast-light.css +2 -12
- package/styles/highcontrast.css +2 -12
- package/styles/material-dark.css +2 -12
- package/styles/material.css +2 -15
- package/styles/tailwind-dark.css +2 -12
- package/styles/tailwind.css +2 -12
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
var __extends = (this && this.__extends) || (function () {
|
|
2
|
+
var extendStatics = function (d, b) {
|
|
3
|
+
extendStatics = Object.setPrototypeOf ||
|
|
4
|
+
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
5
|
+
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
|
|
6
|
+
return extendStatics(d, b);
|
|
7
|
+
};
|
|
8
|
+
return function (d, b) {
|
|
9
|
+
extendStatics(d, b);
|
|
10
|
+
function __() { this.constructor = d; }
|
|
11
|
+
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
12
|
+
};
|
|
13
|
+
})();
|
|
14
|
+
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
15
|
+
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
16
|
+
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
17
|
+
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
18
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
19
|
+
};
|
|
20
|
+
import { Property, ChildProperty } from '@syncfusion/ej2-base';
|
|
21
|
+
/**
|
|
22
|
+
* Specifies the virtualization settings of the File Manager.
|
|
23
|
+
*/
|
|
24
|
+
var VirtualizationSettings = /** @class */ (function (_super) {
|
|
25
|
+
__extends(VirtualizationSettings, _super);
|
|
26
|
+
function VirtualizationSettings() {
|
|
27
|
+
return _super !== null && _super.apply(this, arguments) || this;
|
|
28
|
+
}
|
|
29
|
+
__decorate([
|
|
30
|
+
Property(false)
|
|
31
|
+
], VirtualizationSettings.prototype, "enable", void 0);
|
|
32
|
+
__decorate([
|
|
33
|
+
Property(20)
|
|
34
|
+
], VirtualizationSettings.prototype, "detailsViewItemsCount", void 0);
|
|
35
|
+
__decorate([
|
|
36
|
+
Property(40)
|
|
37
|
+
], VirtualizationSettings.prototype, "largeIconsViewItemsCount", void 0);
|
|
38
|
+
return VirtualizationSettings;
|
|
39
|
+
}(ChildProperty));
|
|
40
|
+
export { VirtualizationSettings };
|
package/src/global.js
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import * as index from './index';
|
|
2
|
-
index.FileManager.Inject(index.DetailsView, index.NavigationPane, index.LargeIconsView, index.Toolbar, index.ContextMenu, index.BreadCrumbBar);
|
|
2
|
+
index.FileManager.Inject(index.DetailsView, index.NavigationPane, index.LargeIconsView, index.Toolbar, index.ContextMenu, index.BreadCrumbBar, index.Virtualization);
|
|
3
3
|
export * from './index';
|
|
@@ -228,16 +228,6 @@ ejs-filemanager {
|
|
|
228
228
|
border-bottom-style: solid;
|
|
229
229
|
border-width: 1px;
|
|
230
230
|
}
|
|
231
|
-
.e-filemanager .e-toolbar .e-toolbar-items .e-toolbar-item.e-template {
|
|
232
|
-
height: 30px;
|
|
233
|
-
}
|
|
234
|
-
.e-filemanager .e-toolbar .e-toolbar-items .e-toolbar-item.e-template .e-upload.e-fm-upload {
|
|
235
|
-
border: 0;
|
|
236
|
-
}
|
|
237
|
-
.e-filemanager .e-toolbar .e-toolbar-items .e-toolbar-item.e-template .e-upload.e-fm-upload .e-file-select-wrap {
|
|
238
|
-
padding-left: 1px;
|
|
239
|
-
padding-right: 1px;
|
|
240
|
-
}
|
|
241
231
|
.e-filemanager .e-toolbar .e-toolbar-items .e-toolbar-item .e-dropdown-btn.e-btn.e-tbar-btn {
|
|
242
232
|
border: 0;
|
|
243
233
|
box-shadow: none;
|
|
@@ -1396,14 +1386,14 @@ ejs-filemanager {
|
|
|
1396
1386
|
|
|
1397
1387
|
@media (max-width: 469px) {
|
|
1398
1388
|
.e-bigger .e-filemanager.e-fe-mobile .e-large-icons .e-list-parent .e-list-item,
|
|
1399
|
-
.e-filemanager.e-bigger.e-fe-mobile .e-large-icons .e-list-parent .e-list-item {
|
|
1389
|
+
.e-filemanager.e-bigger.e-fe-mobile .e-large-icons .e-list-parent .e-list-item {
|
|
1400
1390
|
min-width: 140px;
|
|
1401
1391
|
width: calc(50% - 17px);
|
|
1402
1392
|
}
|
|
1403
1393
|
}
|
|
1404
1394
|
@media (min-width: 470px) and (max-width: 625px) {
|
|
1405
1395
|
.e-bigger .e-filemanager.e-fe-mobile .e-large-icons .e-list-parent .e-list-item,
|
|
1406
|
-
.e-filemanager.e-bigger.e-fe-mobile .e-large-icons .e-list-parent .e-list-item {
|
|
1396
|
+
.e-filemanager.e-bigger.e-fe-mobile .e-large-icons .e-list-parent .e-list-item {
|
|
1407
1397
|
min-width: 140px;
|
|
1408
1398
|
width: calc(33.33% - 17px);
|
|
1409
1399
|
}
|
package/styles/bootstrap.css
CHANGED
|
@@ -229,16 +229,6 @@ ejs-filemanager {
|
|
|
229
229
|
border-bottom-style: solid;
|
|
230
230
|
border-width: 0 0 1px;
|
|
231
231
|
}
|
|
232
|
-
.e-filemanager .e-toolbar .e-toolbar-items .e-toolbar-item.e-template {
|
|
233
|
-
height: 30px;
|
|
234
|
-
}
|
|
235
|
-
.e-filemanager .e-toolbar .e-toolbar-items .e-toolbar-item.e-template .e-upload.e-fm-upload {
|
|
236
|
-
border: 0;
|
|
237
|
-
}
|
|
238
|
-
.e-filemanager .e-toolbar .e-toolbar-items .e-toolbar-item.e-template .e-upload.e-fm-upload .e-file-select-wrap {
|
|
239
|
-
padding-left: 1px;
|
|
240
|
-
padding-right: 1px;
|
|
241
|
-
}
|
|
242
232
|
.e-filemanager .e-toolbar .e-toolbar-items .e-toolbar-item .e-dropdown-btn.e-btn.e-tbar-btn {
|
|
243
233
|
border: 0;
|
|
244
234
|
box-shadow: none;
|
|
@@ -1396,14 +1386,14 @@ ejs-filemanager {
|
|
|
1396
1386
|
|
|
1397
1387
|
@media (max-width: 469px) {
|
|
1398
1388
|
.e-bigger .e-filemanager.e-fe-mobile .e-large-icons .e-list-parent .e-list-item,
|
|
1399
|
-
.e-filemanager.e-bigger.e-fe-mobile .e-large-icons .e-list-parent .e-list-item {
|
|
1389
|
+
.e-filemanager.e-bigger.e-fe-mobile .e-large-icons .e-list-parent .e-list-item {
|
|
1400
1390
|
min-width: 140px;
|
|
1401
1391
|
width: calc(50% - 17px);
|
|
1402
1392
|
}
|
|
1403
1393
|
}
|
|
1404
1394
|
@media (min-width: 470px) and (max-width: 625px) {
|
|
1405
1395
|
.e-bigger .e-filemanager.e-fe-mobile .e-large-icons .e-list-parent .e-list-item,
|
|
1406
|
-
.e-filemanager.e-bigger.e-fe-mobile .e-large-icons .e-list-parent .e-list-item {
|
|
1396
|
+
.e-filemanager.e-bigger.e-fe-mobile .e-large-icons .e-list-parent .e-list-item {
|
|
1407
1397
|
min-width: 140px;
|
|
1408
1398
|
width: calc(33.33% - 17px);
|
|
1409
1399
|
}
|
package/styles/bootstrap4.css
CHANGED
|
@@ -228,16 +228,6 @@ ejs-filemanager {
|
|
|
228
228
|
border-bottom-style: solid;
|
|
229
229
|
border-width: 0 0 1px;
|
|
230
230
|
}
|
|
231
|
-
.e-filemanager .e-toolbar .e-toolbar-items .e-toolbar-item.e-template {
|
|
232
|
-
height: 30px;
|
|
233
|
-
}
|
|
234
|
-
.e-filemanager .e-toolbar .e-toolbar-items .e-toolbar-item.e-template .e-upload.e-fm-upload {
|
|
235
|
-
border: 0;
|
|
236
|
-
}
|
|
237
|
-
.e-filemanager .e-toolbar .e-toolbar-items .e-toolbar-item.e-template .e-upload.e-fm-upload .e-file-select-wrap {
|
|
238
|
-
padding-left: 1px;
|
|
239
|
-
padding-right: 1px;
|
|
240
|
-
}
|
|
241
231
|
.e-filemanager .e-toolbar .e-toolbar-items .e-toolbar-item .e-dropdown-btn.e-btn.e-tbar-btn {
|
|
242
232
|
border: 0;
|
|
243
233
|
box-shadow: none;
|
|
@@ -1396,14 +1386,14 @@ ejs-filemanager {
|
|
|
1396
1386
|
|
|
1397
1387
|
@media (max-width: 469px) {
|
|
1398
1388
|
.e-bigger .e-filemanager.e-fe-mobile .e-large-icons .e-list-parent .e-list-item,
|
|
1399
|
-
.e-filemanager.e-bigger.e-fe-mobile .e-large-icons .e-list-parent .e-list-item {
|
|
1389
|
+
.e-filemanager.e-bigger.e-fe-mobile .e-large-icons .e-list-parent .e-list-item {
|
|
1400
1390
|
min-width: 140px;
|
|
1401
1391
|
width: calc(50% - 17px);
|
|
1402
1392
|
}
|
|
1403
1393
|
}
|
|
1404
1394
|
@media (min-width: 470px) and (max-width: 625px) {
|
|
1405
1395
|
.e-bigger .e-filemanager.e-fe-mobile .e-large-icons .e-list-parent .e-list-item,
|
|
1406
|
-
.e-filemanager.e-bigger.e-fe-mobile .e-large-icons .e-list-parent .e-list-item {
|
|
1396
|
+
.e-filemanager.e-bigger.e-fe-mobile .e-large-icons .e-list-parent .e-list-item {
|
|
1407
1397
|
min-width: 140px;
|
|
1408
1398
|
width: calc(33.33% - 17px);
|
|
1409
1399
|
}
|
|
@@ -237,16 +237,6 @@ ejs-filemanager {
|
|
|
237
237
|
border-bottom-style: solid;
|
|
238
238
|
border-width: 0 0 1px;
|
|
239
239
|
}
|
|
240
|
-
.e-filemanager .e-toolbar .e-toolbar-items .e-toolbar-item.e-template {
|
|
241
|
-
height: 30px;
|
|
242
|
-
}
|
|
243
|
-
.e-filemanager .e-toolbar .e-toolbar-items .e-toolbar-item.e-template .e-upload.e-fm-upload {
|
|
244
|
-
border: 0;
|
|
245
|
-
}
|
|
246
|
-
.e-filemanager .e-toolbar .e-toolbar-items .e-toolbar-item.e-template .e-upload.e-fm-upload .e-file-select-wrap {
|
|
247
|
-
padding-left: 1px;
|
|
248
|
-
padding-right: 1px;
|
|
249
|
-
}
|
|
250
240
|
.e-filemanager .e-toolbar .e-toolbar-items .e-toolbar-item .e-dropdown-btn.e-btn.e-tbar-btn {
|
|
251
241
|
border: 0;
|
|
252
242
|
box-shadow: none;
|
|
@@ -1435,14 +1425,14 @@ ejs-filemanager {
|
|
|
1435
1425
|
|
|
1436
1426
|
@media (max-width: 469px) {
|
|
1437
1427
|
.e-bigger .e-filemanager.e-fe-mobile .e-large-icons .e-list-parent .e-list-item,
|
|
1438
|
-
.e-filemanager.e-bigger.e-fe-mobile .e-large-icons .e-list-parent .e-list-item {
|
|
1428
|
+
.e-filemanager.e-bigger.e-fe-mobile .e-large-icons .e-list-parent .e-list-item {
|
|
1439
1429
|
min-width: 140px;
|
|
1440
1430
|
width: calc(50% - 17px);
|
|
1441
1431
|
}
|
|
1442
1432
|
}
|
|
1443
1433
|
@media (min-width: 470px) and (max-width: 625px) {
|
|
1444
1434
|
.e-bigger .e-filemanager.e-fe-mobile .e-large-icons .e-list-parent .e-list-item,
|
|
1445
|
-
.e-filemanager.e-bigger.e-fe-mobile .e-large-icons .e-list-parent .e-list-item {
|
|
1435
|
+
.e-filemanager.e-bigger.e-fe-mobile .e-large-icons .e-list-parent .e-list-item {
|
|
1446
1436
|
min-width: 140px;
|
|
1447
1437
|
width: calc(33.33% - 17px);
|
|
1448
1438
|
}
|
package/styles/bootstrap5.css
CHANGED
|
@@ -237,16 +237,6 @@ ejs-filemanager {
|
|
|
237
237
|
border-bottom-style: solid;
|
|
238
238
|
border-width: 0 0 1px;
|
|
239
239
|
}
|
|
240
|
-
.e-filemanager .e-toolbar .e-toolbar-items .e-toolbar-item.e-template {
|
|
241
|
-
height: 30px;
|
|
242
|
-
}
|
|
243
|
-
.e-filemanager .e-toolbar .e-toolbar-items .e-toolbar-item.e-template .e-upload.e-fm-upload {
|
|
244
|
-
border: 0;
|
|
245
|
-
}
|
|
246
|
-
.e-filemanager .e-toolbar .e-toolbar-items .e-toolbar-item.e-template .e-upload.e-fm-upload .e-file-select-wrap {
|
|
247
|
-
padding-left: 1px;
|
|
248
|
-
padding-right: 1px;
|
|
249
|
-
}
|
|
250
240
|
.e-filemanager .e-toolbar .e-toolbar-items .e-toolbar-item .e-dropdown-btn.e-btn.e-tbar-btn {
|
|
251
241
|
border: 0;
|
|
252
242
|
box-shadow: none;
|
|
@@ -1435,14 +1425,14 @@ ejs-filemanager {
|
|
|
1435
1425
|
|
|
1436
1426
|
@media (max-width: 469px) {
|
|
1437
1427
|
.e-bigger .e-filemanager.e-fe-mobile .e-large-icons .e-list-parent .e-list-item,
|
|
1438
|
-
.e-filemanager.e-bigger.e-fe-mobile .e-large-icons .e-list-parent .e-list-item {
|
|
1428
|
+
.e-filemanager.e-bigger.e-fe-mobile .e-large-icons .e-list-parent .e-list-item {
|
|
1439
1429
|
min-width: 140px;
|
|
1440
1430
|
width: calc(50% - 17px);
|
|
1441
1431
|
}
|
|
1442
1432
|
}
|
|
1443
1433
|
@media (min-width: 470px) and (max-width: 625px) {
|
|
1444
1434
|
.e-bigger .e-filemanager.e-fe-mobile .e-large-icons .e-list-parent .e-list-item,
|
|
1445
|
-
.e-filemanager.e-bigger.e-fe-mobile .e-large-icons .e-list-parent .e-list-item {
|
|
1435
|
+
.e-filemanager.e-bigger.e-fe-mobile .e-large-icons .e-list-parent .e-list-item {
|
|
1446
1436
|
min-width: 140px;
|
|
1447
1437
|
width: calc(33.33% - 17px);
|
|
1448
1438
|
}
|
package/styles/fabric-dark.css
CHANGED
|
@@ -224,16 +224,6 @@ ejs-filemanager {
|
|
|
224
224
|
border-bottom-style: solid;
|
|
225
225
|
border-width: 0 0 1px;
|
|
226
226
|
}
|
|
227
|
-
.e-filemanager .e-toolbar .e-toolbar-items .e-toolbar-item.e-template {
|
|
228
|
-
height: 30px;
|
|
229
|
-
}
|
|
230
|
-
.e-filemanager .e-toolbar .e-toolbar-items .e-toolbar-item.e-template .e-upload.e-fm-upload {
|
|
231
|
-
border: 0;
|
|
232
|
-
}
|
|
233
|
-
.e-filemanager .e-toolbar .e-toolbar-items .e-toolbar-item.e-template .e-upload.e-fm-upload .e-file-select-wrap {
|
|
234
|
-
padding-left: 1px;
|
|
235
|
-
padding-right: 1px;
|
|
236
|
-
}
|
|
237
227
|
.e-filemanager .e-toolbar .e-toolbar-items .e-toolbar-item .e-dropdown-btn.e-btn.e-tbar-btn {
|
|
238
228
|
border: 0;
|
|
239
229
|
box-shadow: none;
|
|
@@ -1390,14 +1380,14 @@ ejs-filemanager {
|
|
|
1390
1380
|
|
|
1391
1381
|
@media (max-width: 469px) {
|
|
1392
1382
|
.e-bigger .e-filemanager.e-fe-mobile .e-large-icons .e-list-parent .e-list-item,
|
|
1393
|
-
.e-filemanager.e-bigger.e-fe-mobile .e-large-icons .e-list-parent .e-list-item {
|
|
1383
|
+
.e-filemanager.e-bigger.e-fe-mobile .e-large-icons .e-list-parent .e-list-item {
|
|
1394
1384
|
min-width: 140px;
|
|
1395
1385
|
width: calc(50% - 17px);
|
|
1396
1386
|
}
|
|
1397
1387
|
}
|
|
1398
1388
|
@media (min-width: 470px) and (max-width: 625px) {
|
|
1399
1389
|
.e-bigger .e-filemanager.e-fe-mobile .e-large-icons .e-list-parent .e-list-item,
|
|
1400
|
-
.e-filemanager.e-bigger.e-fe-mobile .e-large-icons .e-list-parent .e-list-item {
|
|
1390
|
+
.e-filemanager.e-bigger.e-fe-mobile .e-large-icons .e-list-parent .e-list-item {
|
|
1401
1391
|
min-width: 140px;
|
|
1402
1392
|
width: calc(33.33% - 17px);
|
|
1403
1393
|
}
|
package/styles/fabric.css
CHANGED
|
@@ -225,16 +225,6 @@ ejs-filemanager {
|
|
|
225
225
|
border-bottom-style: solid;
|
|
226
226
|
border-width: 0 0 1px;
|
|
227
227
|
}
|
|
228
|
-
.e-filemanager .e-toolbar .e-toolbar-items .e-toolbar-item.e-template {
|
|
229
|
-
height: 30px;
|
|
230
|
-
}
|
|
231
|
-
.e-filemanager .e-toolbar .e-toolbar-items .e-toolbar-item.e-template .e-upload.e-fm-upload {
|
|
232
|
-
border: 0;
|
|
233
|
-
}
|
|
234
|
-
.e-filemanager .e-toolbar .e-toolbar-items .e-toolbar-item.e-template .e-upload.e-fm-upload .e-file-select-wrap {
|
|
235
|
-
padding-left: 1px;
|
|
236
|
-
padding-right: 1px;
|
|
237
|
-
}
|
|
238
228
|
.e-filemanager .e-toolbar .e-toolbar-items .e-toolbar-item .e-dropdown-btn.e-btn.e-tbar-btn {
|
|
239
229
|
border: 0;
|
|
240
230
|
box-shadow: none;
|
|
@@ -1391,14 +1381,14 @@ ejs-filemanager {
|
|
|
1391
1381
|
|
|
1392
1382
|
@media (max-width: 469px) {
|
|
1393
1383
|
.e-bigger .e-filemanager.e-fe-mobile .e-large-icons .e-list-parent .e-list-item,
|
|
1394
|
-
.e-filemanager.e-bigger.e-fe-mobile .e-large-icons .e-list-parent .e-list-item {
|
|
1384
|
+
.e-filemanager.e-bigger.e-fe-mobile .e-large-icons .e-list-parent .e-list-item {
|
|
1395
1385
|
min-width: 140px;
|
|
1396
1386
|
width: calc(50% - 17px);
|
|
1397
1387
|
}
|
|
1398
1388
|
}
|
|
1399
1389
|
@media (min-width: 470px) and (max-width: 625px) {
|
|
1400
1390
|
.e-bigger .e-filemanager.e-fe-mobile .e-large-icons .e-list-parent .e-list-item,
|
|
1401
|
-
.e-filemanager.e-bigger.e-fe-mobile .e-large-icons .e-list-parent .e-list-item {
|
|
1391
|
+
.e-filemanager.e-bigger.e-fe-mobile .e-large-icons .e-list-parent .e-list-item {
|
|
1402
1392
|
min-width: 140px;
|
|
1403
1393
|
width: calc(33.33% - 17px);
|
|
1404
1394
|
}
|
|
@@ -80,25 +80,6 @@
|
|
|
80
80
|
border-width: 0 0 1px;
|
|
81
81
|
}
|
|
82
82
|
|
|
83
|
-
.e-toolbar-items .e-toolbar-item.e-template {
|
|
84
|
-
height: 30px;
|
|
85
|
-
|
|
86
|
-
.e-upload.e-fm-upload {
|
|
87
|
-
border: 0;
|
|
88
|
-
|
|
89
|
-
.e-file-select-wrap {
|
|
90
|
-
padding-left: 1px;
|
|
91
|
-
padding-right: 1px;
|
|
92
|
-
|
|
93
|
-
.e-css.e-btn:hover {
|
|
94
|
-
@if $fm-skin-name == 'material' {
|
|
95
|
-
box-shadow: none;
|
|
96
|
-
}
|
|
97
|
-
}
|
|
98
|
-
}
|
|
99
|
-
}
|
|
100
|
-
}
|
|
101
|
-
|
|
102
83
|
.e-toolbar-items .e-toolbar-item .e-dropdown-btn.e-btn.e-tbar-btn {
|
|
103
84
|
border: 0;
|
|
104
85
|
box-shadow: none;
|
|
@@ -1831,6 +1812,15 @@
|
|
|
1831
1812
|
}
|
|
1832
1813
|
}
|
|
1833
1814
|
|
|
1815
|
+
@media (min-width: 360px) and (max-width: 500px) {
|
|
1816
|
+
@if $skin-name == 'FluentUI' {
|
|
1817
|
+
.e-bigger .e-filemanager .e-grid .e-checkbox-wrapper .e-frame {
|
|
1818
|
+
position: relative;
|
|
1819
|
+
right: 10px;
|
|
1820
|
+
}
|
|
1821
|
+
}
|
|
1822
|
+
}
|
|
1823
|
+
|
|
1834
1824
|
.e-content-placeholder.e-filemanager.e-placeholder-filemanager {
|
|
1835
1825
|
height: 100%;
|
|
1836
1826
|
width: 100%;
|
|
@@ -228,16 +228,6 @@ ejs-filemanager {
|
|
|
228
228
|
border-bottom-style: solid;
|
|
229
229
|
border-width: 1px;
|
|
230
230
|
}
|
|
231
|
-
.e-filemanager .e-toolbar .e-toolbar-items .e-toolbar-item.e-template {
|
|
232
|
-
height: 30px;
|
|
233
|
-
}
|
|
234
|
-
.e-filemanager .e-toolbar .e-toolbar-items .e-toolbar-item.e-template .e-upload.e-fm-upload {
|
|
235
|
-
border: 0;
|
|
236
|
-
}
|
|
237
|
-
.e-filemanager .e-toolbar .e-toolbar-items .e-toolbar-item.e-template .e-upload.e-fm-upload .e-file-select-wrap {
|
|
238
|
-
padding-left: 1px;
|
|
239
|
-
padding-right: 1px;
|
|
240
|
-
}
|
|
241
231
|
.e-filemanager .e-toolbar .e-toolbar-items .e-toolbar-item .e-dropdown-btn.e-btn.e-tbar-btn {
|
|
242
232
|
border: 0;
|
|
243
233
|
box-shadow: none;
|
|
@@ -1396,14 +1386,14 @@ ejs-filemanager {
|
|
|
1396
1386
|
|
|
1397
1387
|
@media (max-width: 469px) {
|
|
1398
1388
|
.e-bigger .e-filemanager.e-fe-mobile .e-large-icons .e-list-parent .e-list-item,
|
|
1399
|
-
.e-filemanager.e-bigger.e-fe-mobile .e-large-icons .e-list-parent .e-list-item {
|
|
1389
|
+
.e-filemanager.e-bigger.e-fe-mobile .e-large-icons .e-list-parent .e-list-item {
|
|
1400
1390
|
min-width: 140px;
|
|
1401
1391
|
width: calc(50% - 17px);
|
|
1402
1392
|
}
|
|
1403
1393
|
}
|
|
1404
1394
|
@media (min-width: 470px) and (max-width: 625px) {
|
|
1405
1395
|
.e-bigger .e-filemanager.e-fe-mobile .e-large-icons .e-list-parent .e-list-item,
|
|
1406
|
-
.e-filemanager.e-bigger.e-fe-mobile .e-large-icons .e-list-parent .e-list-item {
|
|
1396
|
+
.e-filemanager.e-bigger.e-fe-mobile .e-large-icons .e-list-parent .e-list-item {
|
|
1407
1397
|
min-width: 140px;
|
|
1408
1398
|
width: calc(33.33% - 17px);
|
|
1409
1399
|
}
|
|
@@ -229,16 +229,6 @@ ejs-filemanager {
|
|
|
229
229
|
border-bottom-style: solid;
|
|
230
230
|
border-width: 0 0 1px;
|
|
231
231
|
}
|
|
232
|
-
.e-filemanager .e-toolbar .e-toolbar-items .e-toolbar-item.e-template {
|
|
233
|
-
height: 30px;
|
|
234
|
-
}
|
|
235
|
-
.e-filemanager .e-toolbar .e-toolbar-items .e-toolbar-item.e-template .e-upload.e-fm-upload {
|
|
236
|
-
border: 0;
|
|
237
|
-
}
|
|
238
|
-
.e-filemanager .e-toolbar .e-toolbar-items .e-toolbar-item.e-template .e-upload.e-fm-upload .e-file-select-wrap {
|
|
239
|
-
padding-left: 1px;
|
|
240
|
-
padding-right: 1px;
|
|
241
|
-
}
|
|
242
232
|
.e-filemanager .e-toolbar .e-toolbar-items .e-toolbar-item .e-dropdown-btn.e-btn.e-tbar-btn {
|
|
243
233
|
border: 0;
|
|
244
234
|
box-shadow: none;
|
|
@@ -1396,14 +1386,14 @@ ejs-filemanager {
|
|
|
1396
1386
|
|
|
1397
1387
|
@media (max-width: 469px) {
|
|
1398
1388
|
.e-bigger .e-filemanager.e-fe-mobile .e-large-icons .e-list-parent .e-list-item,
|
|
1399
|
-
.e-filemanager.e-bigger.e-fe-mobile .e-large-icons .e-list-parent .e-list-item {
|
|
1389
|
+
.e-filemanager.e-bigger.e-fe-mobile .e-large-icons .e-list-parent .e-list-item {
|
|
1400
1390
|
min-width: 140px;
|
|
1401
1391
|
width: calc(50% - 17px);
|
|
1402
1392
|
}
|
|
1403
1393
|
}
|
|
1404
1394
|
@media (min-width: 470px) and (max-width: 625px) {
|
|
1405
1395
|
.e-bigger .e-filemanager.e-fe-mobile .e-large-icons .e-list-parent .e-list-item,
|
|
1406
|
-
.e-filemanager.e-bigger.e-fe-mobile .e-large-icons .e-list-parent .e-list-item {
|
|
1396
|
+
.e-filemanager.e-bigger.e-fe-mobile .e-large-icons .e-list-parent .e-list-item {
|
|
1407
1397
|
min-width: 140px;
|
|
1408
1398
|
width: calc(33.33% - 17px);
|
|
1409
1399
|
}
|
|
@@ -228,16 +228,6 @@ ejs-filemanager {
|
|
|
228
228
|
border-bottom-style: solid;
|
|
229
229
|
border-width: 0 0 1px;
|
|
230
230
|
}
|
|
231
|
-
.e-filemanager .e-toolbar .e-toolbar-items .e-toolbar-item.e-template {
|
|
232
|
-
height: 30px;
|
|
233
|
-
}
|
|
234
|
-
.e-filemanager .e-toolbar .e-toolbar-items .e-toolbar-item.e-template .e-upload.e-fm-upload {
|
|
235
|
-
border: 0;
|
|
236
|
-
}
|
|
237
|
-
.e-filemanager .e-toolbar .e-toolbar-items .e-toolbar-item.e-template .e-upload.e-fm-upload .e-file-select-wrap {
|
|
238
|
-
padding-left: 1px;
|
|
239
|
-
padding-right: 1px;
|
|
240
|
-
}
|
|
241
231
|
.e-filemanager .e-toolbar .e-toolbar-items .e-toolbar-item .e-dropdown-btn.e-btn.e-tbar-btn {
|
|
242
232
|
border: 0;
|
|
243
233
|
box-shadow: none;
|
|
@@ -1396,14 +1386,14 @@ ejs-filemanager {
|
|
|
1396
1386
|
|
|
1397
1387
|
@media (max-width: 469px) {
|
|
1398
1388
|
.e-bigger .e-filemanager.e-fe-mobile .e-large-icons .e-list-parent .e-list-item,
|
|
1399
|
-
.e-filemanager.e-bigger.e-fe-mobile .e-large-icons .e-list-parent .e-list-item {
|
|
1389
|
+
.e-filemanager.e-bigger.e-fe-mobile .e-large-icons .e-list-parent .e-list-item {
|
|
1400
1390
|
min-width: 140px;
|
|
1401
1391
|
width: calc(50% - 17px);
|
|
1402
1392
|
}
|
|
1403
1393
|
}
|
|
1404
1394
|
@media (min-width: 470px) and (max-width: 625px) {
|
|
1405
1395
|
.e-bigger .e-filemanager.e-fe-mobile .e-large-icons .e-list-parent .e-list-item,
|
|
1406
|
-
.e-filemanager.e-bigger.e-fe-mobile .e-large-icons .e-list-parent .e-list-item {
|
|
1396
|
+
.e-filemanager.e-bigger.e-fe-mobile .e-large-icons .e-list-parent .e-list-item {
|
|
1407
1397
|
min-width: 140px;
|
|
1408
1398
|
width: calc(33.33% - 17px);
|
|
1409
1399
|
}
|
|
@@ -237,16 +237,6 @@ ejs-filemanager {
|
|
|
237
237
|
border-bottom-style: solid;
|
|
238
238
|
border-width: 0 0 1px;
|
|
239
239
|
}
|
|
240
|
-
.e-filemanager .e-toolbar .e-toolbar-items .e-toolbar-item.e-template {
|
|
241
|
-
height: 30px;
|
|
242
|
-
}
|
|
243
|
-
.e-filemanager .e-toolbar .e-toolbar-items .e-toolbar-item.e-template .e-upload.e-fm-upload {
|
|
244
|
-
border: 0;
|
|
245
|
-
}
|
|
246
|
-
.e-filemanager .e-toolbar .e-toolbar-items .e-toolbar-item.e-template .e-upload.e-fm-upload .e-file-select-wrap {
|
|
247
|
-
padding-left: 1px;
|
|
248
|
-
padding-right: 1px;
|
|
249
|
-
}
|
|
250
240
|
.e-filemanager .e-toolbar .e-toolbar-items .e-toolbar-item .e-dropdown-btn.e-btn.e-tbar-btn {
|
|
251
241
|
border: 0;
|
|
252
242
|
box-shadow: none;
|
|
@@ -1435,14 +1425,14 @@ ejs-filemanager {
|
|
|
1435
1425
|
|
|
1436
1426
|
@media (max-width: 469px) {
|
|
1437
1427
|
.e-bigger .e-filemanager.e-fe-mobile .e-large-icons .e-list-parent .e-list-item,
|
|
1438
|
-
.e-filemanager.e-bigger.e-fe-mobile .e-large-icons .e-list-parent .e-list-item {
|
|
1428
|
+
.e-filemanager.e-bigger.e-fe-mobile .e-large-icons .e-list-parent .e-list-item {
|
|
1439
1429
|
min-width: 140px;
|
|
1440
1430
|
width: calc(50% - 17px);
|
|
1441
1431
|
}
|
|
1442
1432
|
}
|
|
1443
1433
|
@media (min-width: 470px) and (max-width: 625px) {
|
|
1444
1434
|
.e-bigger .e-filemanager.e-fe-mobile .e-large-icons .e-list-parent .e-list-item,
|
|
1445
|
-
.e-filemanager.e-bigger.e-fe-mobile .e-large-icons .e-list-parent .e-list-item {
|
|
1435
|
+
.e-filemanager.e-bigger.e-fe-mobile .e-large-icons .e-list-parent .e-list-item {
|
|
1446
1436
|
min-width: 140px;
|
|
1447
1437
|
width: calc(33.33% - 17px);
|
|
1448
1438
|
}
|
|
@@ -237,16 +237,6 @@ ejs-filemanager {
|
|
|
237
237
|
border-bottom-style: solid;
|
|
238
238
|
border-width: 0 0 1px;
|
|
239
239
|
}
|
|
240
|
-
.e-filemanager .e-toolbar .e-toolbar-items .e-toolbar-item.e-template {
|
|
241
|
-
height: 30px;
|
|
242
|
-
}
|
|
243
|
-
.e-filemanager .e-toolbar .e-toolbar-items .e-toolbar-item.e-template .e-upload.e-fm-upload {
|
|
244
|
-
border: 0;
|
|
245
|
-
}
|
|
246
|
-
.e-filemanager .e-toolbar .e-toolbar-items .e-toolbar-item.e-template .e-upload.e-fm-upload .e-file-select-wrap {
|
|
247
|
-
padding-left: 1px;
|
|
248
|
-
padding-right: 1px;
|
|
249
|
-
}
|
|
250
240
|
.e-filemanager .e-toolbar .e-toolbar-items .e-toolbar-item .e-dropdown-btn.e-btn.e-tbar-btn {
|
|
251
241
|
border: 0;
|
|
252
242
|
box-shadow: none;
|
|
@@ -1435,14 +1425,14 @@ ejs-filemanager {
|
|
|
1435
1425
|
|
|
1436
1426
|
@media (max-width: 469px) {
|
|
1437
1427
|
.e-bigger .e-filemanager.e-fe-mobile .e-large-icons .e-list-parent .e-list-item,
|
|
1438
|
-
.e-filemanager.e-bigger.e-fe-mobile .e-large-icons .e-list-parent .e-list-item {
|
|
1428
|
+
.e-filemanager.e-bigger.e-fe-mobile .e-large-icons .e-list-parent .e-list-item {
|
|
1439
1429
|
min-width: 140px;
|
|
1440
1430
|
width: calc(50% - 17px);
|
|
1441
1431
|
}
|
|
1442
1432
|
}
|
|
1443
1433
|
@media (min-width: 470px) and (max-width: 625px) {
|
|
1444
1434
|
.e-bigger .e-filemanager.e-fe-mobile .e-large-icons .e-list-parent .e-list-item,
|
|
1445
|
-
.e-filemanager.e-bigger.e-fe-mobile .e-large-icons .e-list-parent .e-list-item {
|
|
1435
|
+
.e-filemanager.e-bigger.e-fe-mobile .e-large-icons .e-list-parent .e-list-item {
|
|
1446
1436
|
min-width: 140px;
|
|
1447
1437
|
width: calc(33.33% - 17px);
|
|
1448
1438
|
}
|
|
@@ -224,16 +224,6 @@ ejs-filemanager {
|
|
|
224
224
|
border-bottom-style: solid;
|
|
225
225
|
border-width: 0 0 1px;
|
|
226
226
|
}
|
|
227
|
-
.e-filemanager .e-toolbar .e-toolbar-items .e-toolbar-item.e-template {
|
|
228
|
-
height: 30px;
|
|
229
|
-
}
|
|
230
|
-
.e-filemanager .e-toolbar .e-toolbar-items .e-toolbar-item.e-template .e-upload.e-fm-upload {
|
|
231
|
-
border: 0;
|
|
232
|
-
}
|
|
233
|
-
.e-filemanager .e-toolbar .e-toolbar-items .e-toolbar-item.e-template .e-upload.e-fm-upload .e-file-select-wrap {
|
|
234
|
-
padding-left: 1px;
|
|
235
|
-
padding-right: 1px;
|
|
236
|
-
}
|
|
237
227
|
.e-filemanager .e-toolbar .e-toolbar-items .e-toolbar-item .e-dropdown-btn.e-btn.e-tbar-btn {
|
|
238
228
|
border: 0;
|
|
239
229
|
box-shadow: none;
|
|
@@ -1390,14 +1380,14 @@ ejs-filemanager {
|
|
|
1390
1380
|
|
|
1391
1381
|
@media (max-width: 469px) {
|
|
1392
1382
|
.e-bigger .e-filemanager.e-fe-mobile .e-large-icons .e-list-parent .e-list-item,
|
|
1393
|
-
.e-filemanager.e-bigger.e-fe-mobile .e-large-icons .e-list-parent .e-list-item {
|
|
1383
|
+
.e-filemanager.e-bigger.e-fe-mobile .e-large-icons .e-list-parent .e-list-item {
|
|
1394
1384
|
min-width: 140px;
|
|
1395
1385
|
width: calc(50% - 17px);
|
|
1396
1386
|
}
|
|
1397
1387
|
}
|
|
1398
1388
|
@media (min-width: 470px) and (max-width: 625px) {
|
|
1399
1389
|
.e-bigger .e-filemanager.e-fe-mobile .e-large-icons .e-list-parent .e-list-item,
|
|
1400
|
-
.e-filemanager.e-bigger.e-fe-mobile .e-large-icons .e-list-parent .e-list-item {
|
|
1390
|
+
.e-filemanager.e-bigger.e-fe-mobile .e-large-icons .e-list-parent .e-list-item {
|
|
1401
1391
|
min-width: 140px;
|
|
1402
1392
|
width: calc(33.33% - 17px);
|
|
1403
1393
|
}
|
|
@@ -225,16 +225,6 @@ ejs-filemanager {
|
|
|
225
225
|
border-bottom-style: solid;
|
|
226
226
|
border-width: 0 0 1px;
|
|
227
227
|
}
|
|
228
|
-
.e-filemanager .e-toolbar .e-toolbar-items .e-toolbar-item.e-template {
|
|
229
|
-
height: 30px;
|
|
230
|
-
}
|
|
231
|
-
.e-filemanager .e-toolbar .e-toolbar-items .e-toolbar-item.e-template .e-upload.e-fm-upload {
|
|
232
|
-
border: 0;
|
|
233
|
-
}
|
|
234
|
-
.e-filemanager .e-toolbar .e-toolbar-items .e-toolbar-item.e-template .e-upload.e-fm-upload .e-file-select-wrap {
|
|
235
|
-
padding-left: 1px;
|
|
236
|
-
padding-right: 1px;
|
|
237
|
-
}
|
|
238
228
|
.e-filemanager .e-toolbar .e-toolbar-items .e-toolbar-item .e-dropdown-btn.e-btn.e-tbar-btn {
|
|
239
229
|
border: 0;
|
|
240
230
|
box-shadow: none;
|
|
@@ -1391,14 +1381,14 @@ ejs-filemanager {
|
|
|
1391
1381
|
|
|
1392
1382
|
@media (max-width: 469px) {
|
|
1393
1383
|
.e-bigger .e-filemanager.e-fe-mobile .e-large-icons .e-list-parent .e-list-item,
|
|
1394
|
-
.e-filemanager.e-bigger.e-fe-mobile .e-large-icons .e-list-parent .e-list-item {
|
|
1384
|
+
.e-filemanager.e-bigger.e-fe-mobile .e-large-icons .e-list-parent .e-list-item {
|
|
1395
1385
|
min-width: 140px;
|
|
1396
1386
|
width: calc(50% - 17px);
|
|
1397
1387
|
}
|
|
1398
1388
|
}
|
|
1399
1389
|
@media (min-width: 470px) and (max-width: 625px) {
|
|
1400
1390
|
.e-bigger .e-filemanager.e-fe-mobile .e-large-icons .e-list-parent .e-list-item,
|
|
1401
|
-
.e-filemanager.e-bigger.e-fe-mobile .e-large-icons .e-list-parent .e-list-item {
|
|
1391
|
+
.e-filemanager.e-bigger.e-fe-mobile .e-large-icons .e-list-parent .e-list-item {
|
|
1402
1392
|
min-width: 140px;
|
|
1403
1393
|
width: calc(33.33% - 17px);
|
|
1404
1394
|
}
|
|
@@ -235,16 +235,6 @@ ejs-filemanager {
|
|
|
235
235
|
border-bottom-style: solid;
|
|
236
236
|
border-width: 0 0 1px;
|
|
237
237
|
}
|
|
238
|
-
.e-filemanager .e-toolbar .e-toolbar-items .e-toolbar-item.e-template {
|
|
239
|
-
height: 30px;
|
|
240
|
-
}
|
|
241
|
-
.e-filemanager .e-toolbar .e-toolbar-items .e-toolbar-item.e-template .e-upload.e-fm-upload {
|
|
242
|
-
border: 0;
|
|
243
|
-
}
|
|
244
|
-
.e-filemanager .e-toolbar .e-toolbar-items .e-toolbar-item.e-template .e-upload.e-fm-upload .e-file-select-wrap {
|
|
245
|
-
padding-left: 1px;
|
|
246
|
-
padding-right: 1px;
|
|
247
|
-
}
|
|
248
238
|
.e-filemanager .e-toolbar .e-toolbar-items .e-toolbar-item .e-dropdown-btn.e-btn.e-tbar-btn {
|
|
249
239
|
border: 0;
|
|
250
240
|
box-shadow: none;
|
|
@@ -1403,18 +1393,24 @@ ejs-filemanager {
|
|
|
1403
1393
|
|
|
1404
1394
|
@media (max-width: 469px) {
|
|
1405
1395
|
.e-bigger .e-filemanager.e-fe-mobile .e-large-icons .e-list-parent .e-list-item,
|
|
1406
|
-
.e-filemanager.e-bigger.e-fe-mobile .e-large-icons .e-list-parent .e-list-item {
|
|
1396
|
+
.e-filemanager.e-bigger.e-fe-mobile .e-large-icons .e-list-parent .e-list-item {
|
|
1407
1397
|
min-width: 140px;
|
|
1408
1398
|
width: calc(50% - 17px);
|
|
1409
1399
|
}
|
|
1410
1400
|
}
|
|
1411
1401
|
@media (min-width: 470px) and (max-width: 625px) {
|
|
1412
1402
|
.e-bigger .e-filemanager.e-fe-mobile .e-large-icons .e-list-parent .e-list-item,
|
|
1413
|
-
.e-filemanager.e-bigger.e-fe-mobile .e-large-icons .e-list-parent .e-list-item {
|
|
1403
|
+
.e-filemanager.e-bigger.e-fe-mobile .e-large-icons .e-list-parent .e-list-item {
|
|
1414
1404
|
min-width: 140px;
|
|
1415
1405
|
width: calc(33.33% - 17px);
|
|
1416
1406
|
}
|
|
1417
1407
|
}
|
|
1408
|
+
@media (min-width: 360px) and (max-width: 500px) {
|
|
1409
|
+
.e-bigger .e-filemanager .e-grid .e-checkbox-wrapper .e-frame {
|
|
1410
|
+
position: relative;
|
|
1411
|
+
right: 10px;
|
|
1412
|
+
}
|
|
1413
|
+
}
|
|
1418
1414
|
.e-content-placeholder.e-filemanager.e-placeholder-filemanager {
|
|
1419
1415
|
height: 100%;
|
|
1420
1416
|
width: 100%;
|
|
@@ -235,16 +235,6 @@ ejs-filemanager {
|
|
|
235
235
|
border-bottom-style: solid;
|
|
236
236
|
border-width: 0 0 1px;
|
|
237
237
|
}
|
|
238
|
-
.e-filemanager .e-toolbar .e-toolbar-items .e-toolbar-item.e-template {
|
|
239
|
-
height: 30px;
|
|
240
|
-
}
|
|
241
|
-
.e-filemanager .e-toolbar .e-toolbar-items .e-toolbar-item.e-template .e-upload.e-fm-upload {
|
|
242
|
-
border: 0;
|
|
243
|
-
}
|
|
244
|
-
.e-filemanager .e-toolbar .e-toolbar-items .e-toolbar-item.e-template .e-upload.e-fm-upload .e-file-select-wrap {
|
|
245
|
-
padding-left: 1px;
|
|
246
|
-
padding-right: 1px;
|
|
247
|
-
}
|
|
248
238
|
.e-filemanager .e-toolbar .e-toolbar-items .e-toolbar-item .e-dropdown-btn.e-btn.e-tbar-btn {
|
|
249
239
|
border: 0;
|
|
250
240
|
box-shadow: none;
|
|
@@ -1403,18 +1393,24 @@ ejs-filemanager {
|
|
|
1403
1393
|
|
|
1404
1394
|
@media (max-width: 469px) {
|
|
1405
1395
|
.e-bigger .e-filemanager.e-fe-mobile .e-large-icons .e-list-parent .e-list-item,
|
|
1406
|
-
.e-filemanager.e-bigger.e-fe-mobile .e-large-icons .e-list-parent .e-list-item {
|
|
1396
|
+
.e-filemanager.e-bigger.e-fe-mobile .e-large-icons .e-list-parent .e-list-item {
|
|
1407
1397
|
min-width: 140px;
|
|
1408
1398
|
width: calc(50% - 17px);
|
|
1409
1399
|
}
|
|
1410
1400
|
}
|
|
1411
1401
|
@media (min-width: 470px) and (max-width: 625px) {
|
|
1412
1402
|
.e-bigger .e-filemanager.e-fe-mobile .e-large-icons .e-list-parent .e-list-item,
|
|
1413
|
-
.e-filemanager.e-bigger.e-fe-mobile .e-large-icons .e-list-parent .e-list-item {
|
|
1403
|
+
.e-filemanager.e-bigger.e-fe-mobile .e-large-icons .e-list-parent .e-list-item {
|
|
1414
1404
|
min-width: 140px;
|
|
1415
1405
|
width: calc(33.33% - 17px);
|
|
1416
1406
|
}
|
|
1417
1407
|
}
|
|
1408
|
+
@media (min-width: 360px) and (max-width: 500px) {
|
|
1409
|
+
.e-bigger .e-filemanager .e-grid .e-checkbox-wrapper .e-frame {
|
|
1410
|
+
position: relative;
|
|
1411
|
+
right: 10px;
|
|
1412
|
+
}
|
|
1413
|
+
}
|
|
1418
1414
|
.e-content-placeholder.e-filemanager.e-placeholder-filemanager {
|
|
1419
1415
|
height: 100%;
|
|
1420
1416
|
width: 100%;
|