@syncfusion/ej2-filemanager 20.1.47 → 20.1.52-10459
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.eslintrc.json +20 -3
- package/README.md +54 -43
- package/dist/ej2-filemanager.min.js +1 -0
- package/dist/ej2-filemanager.umd.min.js +1 -10
- package/dist/ej2-filemanager.umd.min.js.map +1 -1
- package/dist/es6/ej2-filemanager.es2015.js +2353 -659
- package/dist/es6/ej2-filemanager.es2015.js.map +1 -1
- package/dist/es6/ej2-filemanager.es5.js +2422 -709
- package/dist/es6/ej2-filemanager.es5.js.map +1 -1
- package/dist/global/ej2-filemanager.min.js +1 -10
- package/dist/global/ej2-filemanager.min.js.map +1 -1
- package/dist/global/index.d.ts +0 -9
- package/helpers/e2e/filemanagerHelper.js +183 -166
- package/package.json +71 -71
- package/src/file-manager/actions/breadcrumb-bar.js +1 -5
- package/src/file-manager/actions/index.d.ts +1 -0
- package/src/file-manager/actions/index.js +1 -0
- package/src/file-manager/actions/toolbar.d.ts +1 -0
- package/src/file-manager/actions/toolbar.js +129 -17
- package/src/file-manager/actions/virtualization.d.ts +93 -0
- package/src/file-manager/actions/virtualization.js +279 -0
- package/src/file-manager/base/file-manager-model.d.ts +154 -28
- package/src/file-manager/base/file-manager.d.ts +176 -27
- package/src/file-manager/base/file-manager.js +244 -28
- package/src/file-manager/base/interface.d.ts +329 -3
- package/src/file-manager/base/interface.js +0 -1
- package/src/file-manager/common/operations.d.ts +7 -0
- package/src/file-manager/common/operations.js +830 -185
- package/src/file-manager/common/utility.d.ts +46 -3
- package/src/file-manager/common/utility.js +249 -73
- package/src/file-manager/index.d.ts +1 -0
- package/src/file-manager/index.js +1 -0
- package/src/file-manager/layout/details-view.d.ts +10 -0
- package/src/file-manager/layout/details-view.js +203 -94
- package/src/file-manager/layout/large-icons-view.d.ts +4 -2
- package/src/file-manager/layout/large-icons-view.js +122 -73
- package/src/file-manager/layout/navigation-pane.d.ts +2 -0
- package/src/file-manager/layout/navigation-pane.js +97 -73
- package/src/file-manager/models/column-model.d.ts +23 -5
- package/src/file-manager/models/column.d.ts +21 -2
- package/src/file-manager/models/column.js +6 -0
- package/src/file-manager/models/default-locale.js +0 -1
- package/src/file-manager/models/details-view-settings-model.d.ts +1 -1
- package/src/file-manager/models/details-view-settings.js +8 -3
- package/src/file-manager/models/search-settings.d.ts +5 -0
- package/src/file-manager/models/toolbar-settings-model.d.ts +177 -2
- package/src/file-manager/models/toolbar-settings.d.ts +157 -2
- package/src/file-manager/models/toolbar-settings.js +64 -2
- package/src/file-manager/models/upload-settings-model.d.ts +13 -0
- package/src/file-manager/models/upload-settings.d.ts +12 -0
- package/src/file-manager/models/upload-settings.js +3 -0
- package/src/file-manager/pop-up/context-menu.d.ts +2 -1
- package/src/file-manager/pop-up/context-menu.js +111 -36
- package/src/file-manager/pop-up/dialog.d.ts +1 -2
- package/src/file-manager/pop-up/dialog.js +19 -40
- package/src/global.js +1 -1
- package/styles/bootstrap-dark-lite.css +1058 -0
- package/styles/bootstrap-dark-lite.scss +16 -0
- package/styles/bootstrap-dark.css +371 -665
- package/styles/bootstrap-dark.scss +17 -1
- package/styles/bootstrap-lite.css +1040 -0
- package/styles/bootstrap-lite.scss +16 -0
- package/styles/bootstrap.css +353 -644
- package/styles/bootstrap.scss +17 -1
- package/styles/bootstrap4-lite.css +1068 -0
- package/styles/bootstrap4-lite.scss +16 -0
- package/styles/bootstrap4.css +381 -680
- package/styles/bootstrap4.scss +17 -1
- package/styles/bootstrap5-dark-lite.css +1078 -0
- package/styles/bootstrap5-dark-lite.scss +16 -0
- package/styles/bootstrap5-dark.css +376 -694
- package/styles/bootstrap5-dark.scss +17 -1
- package/styles/bootstrap5-lite.css +1078 -0
- package/styles/bootstrap5-lite.scss +16 -0
- package/styles/bootstrap5.3-lite.css +1035 -0
- package/styles/bootstrap5.3-lite.scss +16 -0
- package/styles/bootstrap5.3.css +1603 -0
- package/styles/bootstrap5.3.scss +17 -0
- package/styles/bootstrap5.css +376 -694
- package/styles/bootstrap5.scss +17 -1
- package/styles/fabric-dark-lite.css +1039 -0
- package/styles/fabric-dark-lite.scss +16 -0
- package/styles/fabric-dark.css +358 -642
- package/styles/fabric-dark.scss +17 -1
- package/styles/fabric-lite.css +1039 -0
- package/styles/fabric-lite.scss +16 -0
- package/styles/fabric.css +357 -641
- package/styles/fabric.scss +17 -1
- package/styles/file-manager/_all.scss +1 -1
- package/styles/file-manager/_bds-definition.scss +236 -0
- package/styles/file-manager/_bigger.scss +758 -0
- package/styles/file-manager/_bootstrap-dark-definition.scss +6 -2
- package/styles/file-manager/_bootstrap-definition.scss +6 -2
- package/styles/file-manager/_bootstrap4-definition.scss +6 -2
- package/styles/file-manager/_bootstrap5-definition.scss +20 -15
- package/styles/file-manager/_bootstrap5.3-definition.scss +242 -0
- package/styles/file-manager/_fabric-dark-definition.scss +6 -2
- package/styles/file-manager/_fabric-definition.scss +6 -2
- package/styles/file-manager/_fluent-definition.scss +20 -16
- package/styles/file-manager/_fluent2-definition.scss +255 -0
- package/styles/file-manager/_fusionnew-definition.scss +241 -0
- package/styles/file-manager/_highcontrast-definition.scss +6 -2
- package/styles/file-manager/_highcontrast-light-definition.scss +6 -2
- package/styles/file-manager/_layout.scss +367 -921
- package/styles/file-manager/_material-dark-definition.scss +7 -2
- package/styles/file-manager/_material-definition.scss +7 -2
- package/styles/file-manager/_material3-dark-definition.scss +1 -0
- package/styles/file-manager/_material3-definition.scss +235 -0
- package/styles/file-manager/_tailwind-definition.scss +20 -16
- package/styles/file-manager/_theme.scss +126 -102
- package/styles/file-manager/bootstrap-dark.css +371 -665
- package/styles/file-manager/bootstrap-dark.scss +2 -1
- package/styles/file-manager/bootstrap.css +353 -644
- package/styles/file-manager/bootstrap.scss +2 -1
- package/styles/file-manager/bootstrap4.css +381 -680
- package/styles/file-manager/bootstrap4.scss +2 -1
- package/styles/file-manager/bootstrap5-dark.css +376 -694
- package/styles/file-manager/bootstrap5-dark.scss +2 -1
- package/styles/file-manager/bootstrap5.3.css +1603 -0
- package/styles/file-manager/bootstrap5.3.scss +17 -0
- package/styles/file-manager/bootstrap5.css +376 -694
- package/styles/file-manager/bootstrap5.scss +2 -1
- package/styles/file-manager/fabric-dark.css +358 -642
- package/styles/file-manager/fabric-dark.scss +2 -1
- package/styles/file-manager/fabric.css +357 -641
- package/styles/file-manager/fabric.scss +2 -1
- package/styles/file-manager/fluent-dark.css +359 -641
- package/styles/file-manager/fluent-dark.scss +2 -1
- package/styles/file-manager/fluent.css +358 -641
- package/styles/file-manager/fluent.scss +2 -1
- package/styles/file-manager/fluent2.css +1886 -0
- package/styles/file-manager/fluent2.scss +17 -0
- package/styles/file-manager/highcontrast-light.css +354 -644
- package/styles/file-manager/highcontrast-light.scss +2 -1
- package/styles/file-manager/highcontrast.css +377 -647
- package/styles/file-manager/highcontrast.scss +2 -1
- package/styles/file-manager/icons/_bds.scss +235 -0
- package/styles/file-manager/icons/_bootstrap.scss +0 -1
- package/styles/file-manager/icons/_bootstrap4.scss +0 -1
- package/styles/file-manager/icons/_bootstrap5.3.scss +235 -0
- package/styles/file-manager/icons/_fabric-dark.scss +0 -1
- package/styles/file-manager/icons/_fabric.scss +0 -1
- package/styles/file-manager/icons/_fluent2.scss +235 -0
- package/styles/file-manager/icons/_fusionnew.scss +235 -0
- package/styles/file-manager/icons/_material3-dark.scss +1 -0
- package/styles/file-manager/icons/_material3.scss +235 -0
- package/styles/file-manager/material-dark.css +392 -671
- package/styles/file-manager/material-dark.scss +2 -1
- package/styles/file-manager/material.css +391 -654
- package/styles/file-manager/material.scss +2 -1
- package/styles/file-manager/material3-dark.css +1633 -0
- package/styles/file-manager/material3-dark.scss +18 -0
- package/styles/file-manager/material3.css +1635 -0
- package/styles/file-manager/material3.scss +18 -0
- package/styles/file-manager/tailwind-dark.css +347 -664
- package/styles/file-manager/tailwind-dark.scss +2 -1
- package/styles/file-manager/tailwind.css +347 -664
- package/styles/file-manager/tailwind.scss +2 -1
- package/styles/fluent-dark-lite.css +1037 -0
- package/styles/fluent-dark-lite.scss +16 -0
- package/styles/fluent-dark.css +359 -641
- package/styles/fluent-dark.scss +17 -1
- package/styles/fluent-lite.css +1036 -0
- package/styles/fluent-lite.scss +16 -0
- package/styles/fluent.css +358 -641
- package/styles/fluent.scss +17 -1
- package/styles/fluent2-lite.css +1272 -0
- package/styles/fluent2-lite.scss +16 -0
- package/styles/fluent2.css +1886 -0
- package/styles/fluent2.scss +17 -0
- package/styles/highcontrast-light-lite.css +1039 -0
- package/styles/highcontrast-light-lite.scss +16 -0
- package/styles/highcontrast-light.css +354 -644
- package/styles/highcontrast-light.scss +17 -1
- package/styles/highcontrast-lite.css +1059 -0
- package/styles/highcontrast-lite.scss +16 -0
- package/styles/highcontrast.css +377 -647
- package/styles/highcontrast.scss +17 -1
- package/styles/material-dark-lite.css +1092 -0
- package/styles/material-dark-lite.scss +16 -0
- package/styles/material-dark.css +392 -671
- package/styles/material-dark.scss +17 -1
- package/styles/material-lite.css +1097 -0
- package/styles/material-lite.scss +16 -0
- package/styles/material.css +391 -654
- package/styles/material.scss +17 -1
- package/styles/material3-dark-lite.css +1090 -0
- package/styles/material3-dark-lite.scss +16 -0
- package/styles/material3-dark.css +1633 -0
- package/styles/material3-dark.scss +19 -0
- package/styles/material3-lite.css +1092 -0
- package/styles/material3-lite.scss +16 -0
- package/styles/material3.css +1635 -0
- package/styles/material3.scss +19 -0
- package/styles/tailwind-dark-lite.css +1060 -0
- package/styles/tailwind-dark-lite.scss +16 -0
- package/styles/tailwind-dark.css +347 -664
- package/styles/tailwind-dark.scss +17 -1
- package/styles/tailwind-lite.css +1060 -0
- package/styles/tailwind-lite.scss +16 -0
- package/styles/tailwind.css +347 -664
- package/styles/tailwind.scss +17 -1
- package/CHANGELOG.md +0 -404
package/styles/fluent-dark.css
CHANGED
@@ -1,410 +1,335 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
|
4
|
-
|
1
|
+
/* stylelint-disable property-no-vendor-prefix */
|
2
|
+
/* stylelint-disable-line no-empty-source */
|
3
|
+
/* stylelint-disable property-no-vendor-prefix */
|
4
|
+
@-webkit-keyframes material-spinner-rotate {
|
5
|
+
0% {
|
6
|
+
-webkit-transform: rotate(0);
|
7
|
+
transform: rotate(0);
|
8
|
+
}
|
9
|
+
100% {
|
10
|
+
-webkit-transform: rotate(360deg);
|
11
|
+
transform: rotate(360deg);
|
12
|
+
}
|
5
13
|
}
|
6
|
-
|
7
14
|
@keyframes material-spinner-rotate {
|
8
15
|
0% {
|
16
|
+
-webkit-transform: rotate(0);
|
9
17
|
transform: rotate(0);
|
10
18
|
}
|
11
19
|
100% {
|
20
|
+
-webkit-transform: rotate(360deg);
|
21
|
+
transform: rotate(360deg);
|
22
|
+
}
|
23
|
+
}
|
24
|
+
@-webkit-keyframes fabric-spinner-rotate {
|
25
|
+
0% {
|
26
|
+
-webkit-transform: rotate(0);
|
27
|
+
transform: rotate(0);
|
28
|
+
}
|
29
|
+
100% {
|
30
|
+
-webkit-transform: rotate(360deg);
|
12
31
|
transform: rotate(360deg);
|
13
32
|
}
|
14
33
|
}
|
15
|
-
|
16
34
|
@keyframes fabric-spinner-rotate {
|
17
35
|
0% {
|
36
|
+
-webkit-transform: rotate(0);
|
18
37
|
transform: rotate(0);
|
19
38
|
}
|
20
39
|
100% {
|
40
|
+
-webkit-transform: rotate(360deg);
|
21
41
|
transform: rotate(360deg);
|
22
42
|
}
|
23
43
|
}
|
24
|
-
|
25
44
|
/*! TreeView's bootstrap5 theme wise override definitions and variables */
|
45
|
+
/* stylelint-disable */
|
26
46
|
/*! FileManager's tailwind theme wise override definitions and variables */
|
27
47
|
.e-filemanager .e-fe-icon,
|
28
48
|
.e-filemanager .e-list-icon {
|
29
49
|
background-repeat: no-repeat;
|
30
50
|
}
|
31
|
-
|
32
51
|
.e-filemanager .e-fe-access-error {
|
33
52
|
background-image: url('data:image/svg+xml,%3Csvg width="auto" height="auto" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M16.6609 3.84609C17.9756 1.38463 22.0244 1.38464 23.3392 3.84609L39.6572 34.3961C40.7819 36.5017 39.0019 38.9055 36.318 38.9055H3.68198C0.998067 38.9055 -0.781888 36.5017 0.342825 34.3961L16.6609 3.84609Z" fill="%23FDDD35"/%3E%3Cpath d="M20 22.5025V25.8794M20 29.2564H20.0097M28.75 25.8794C28.75 30.0758 24.8325 33.4776 20 33.4776C15.1675 33.4776 11.25 30.0758 11.25 25.8794C11.25 21.6831 15.1675 18.2812 20 18.2812C24.8325 18.2812 28.75 21.6831 28.75 25.8794Z" stroke="%23212529" stroke-linecap="round" stroke-linejoin="round"/%3E%3C/svg%3E%0A');
|
34
53
|
}
|
35
|
-
|
36
54
|
.e-filemanager .e-fe-docx,
|
37
55
|
.e-filemanager .e-fe-doc {
|
38
56
|
background-image: url('data:image/svg+xml,%3Csvg width="auto" height="auto" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg"%3E%3Cg clip-path="url(%23clip0)"%3E%3Cg filter="url(%23filter0_i)"%3E%3Cpath d="M9 40H31C33.2091 40 35 38.2091 35 36V10L25 0H9C6.79086 0 5 1.79086 5 4V36C5 38.2091 6.79086 40 9 40Z" fill="%2300B0FF"/%3E%3C/g%3E%3Cg filter="url(%23filter1_d)"%3E%3Cpath d="M27 10H35L25 0V8C25 9.10457 25.8954 10 27 10Z" fill="white" fill-opacity="0.5"/%3E%3C/g%3E%3Cline x1="10.5" y1="15.75" x2="22" y2="15.75" stroke="white" stroke-linecap="round" stroke-linejoin="round"/%3E%3Cpath d="M11.25 22.5L30 22.5" stroke="white" stroke-linecap="round" stroke-linejoin="round"/%3E%3Cpath d="M11.25 30L30 30" stroke="white" stroke-linecap="round" stroke-linejoin="round"/%3E%3C/g%3E%3Cdefs%3E%3Cfilter id="filter0_i" x="5" y="0" width="30" height="42" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"%3E%3CfeFlood flood-opacity="0" result="BackgroundImageFix"/%3E%3CfeBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/%3E%3CfeColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/%3E%3CfeOffset dy="2"/%3E%3CfeGaussianBlur stdDeviation="2"/%3E%3CfeComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/%3E%3CfeColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.06 0"/%3E%3CfeBlend mode="normal" in2="shape" result="effect1_innerShadow"/%3E%3C/filter%3E%3Cfilter id="filter1_d" x="23" y="-1" width="14" height="14" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"%3E%3CfeFlood flood-opacity="0" result="BackgroundImageFix"/%3E%3CfeColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/%3E%3CfeOffset dy="1"/%3E%3CfeGaussianBlur stdDeviation="1"/%3E%3CfeColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.05 0"/%3E%3CfeBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/%3E%3CfeBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/%3E%3C/filter%3E%3CclipPath id="clip0"%3E%3Crect width="40" height="40" fill="white"/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A');
|
39
57
|
}
|
40
|
-
|
41
58
|
.e-filemanager .e-fe-pptx,
|
42
59
|
.e-filemanager .e-fe-ppt {
|
43
60
|
background-image: url('data:image/svg+xml,%3Csvg width="auto" height="auto" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg"%3E%3Cg clip-path="url(%23clip0)"%3E%3Cg filter="url(%23filter0_i)"%3E%3Cpath d="M9 40H30.9997C33.2088 40 34.9997 38.2091 34.9997 36V10L24.9998 0H9C6.79086 0 5 1.79086 5 4V36C5 38.2091 6.79086 40 9 40Z" fill="%23FF8E47"/%3E%3C/g%3E%3Cg filter="url(%23filter1_d)"%3E%3Cpath d="M27 10H34.9999L25 0V8C25 9.10457 25.8954 10 27 10Z" fill="white" fill-opacity="0.5"/%3E%3C/g%3E%3Cpath d="M11.249 32.499L29.9988 32.499" stroke="white" stroke-linecap="round" stroke-linejoin="round"/%3E%3Cellipse cx="19.9994" cy="20" rx="7.49991" ry="7.5" fill="%23FFA153" stroke="white"/%3E%3Cpath d="M27.5 20H20L20.0001 12.5C24.1422 12.5 27.5 15.8579 27.5 20Z" fill="white"/%3E%3Cpath d="M27.5 20V20.5H28V20H27.5ZM20 20L19.5 20C19.5 20.1326 19.5527 20.2598 19.6464 20.3536C19.7402 20.4473 19.8674 20.5 20 20.5V20ZM20.0001 12.5V12H19.5001L19.5001 12.5L20.0001 12.5ZM20.5 20L20.5001 12.5L19.5001 12.5L19.5 20L20.5 20ZM20.0001 13C23.866 13 27 16.134 27 20H28C28 15.5817 24.4183 12 20.0001 12V13ZM27.5 19.5H20V20.5H27.5V19.5Z" fill="white"/%3E%3C/g%3E%3Cdefs%3E%3Cfilter id="filter0_i" x="5" y="0" width="29.9997" height="40" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"%3E%3CfeFlood flood-opacity="0" result="BackgroundImageFix"/%3E%3CfeBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/%3E%3CfeColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/%3E%3CfeOffset/%3E%3CfeGaussianBlur stdDeviation="2"/%3E%3CfeComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/%3E%3CfeColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.1 0"/%3E%3CfeBlend mode="normal" in2="shape" result="effect1_innerShadow"/%3E%3C/filter%3E%3Cfilter id="filter1_d" x="23" y="-1" width="13.9999" height="14" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"%3E%3CfeFlood flood-opacity="0" result="BackgroundImageFix"/%3E%3CfeColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/%3E%3CfeOffset dy="1"/%3E%3CfeGaussianBlur stdDeviation="1"/%3E%3CfeColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.05 0"/%3E%3CfeBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/%3E%3CfeBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/%3E%3C/filter%3E%3CclipPath id="clip0"%3E%3Crect width="40" height="40" fill="white"/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A');
|
44
61
|
}
|
45
|
-
|
46
62
|
.e-filemanager .e-fe-xlsx,
|
47
63
|
.e-filemanager .e-fe-xls {
|
48
64
|
background-image: url('data:image/svg+xml,%3Csvg width="auto" height="auto" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg"%3E%3Cg clip-path="url(%23clip0)"%3E%3Cg filter="url(%23filter0_i)"%3E%3Cpath d="M9 40H31C33.2091 40 35 38.2091 35 36V10L25 0H9C6.79086 0 5 1.79086 5 4V36C5 38.2091 6.79086 40 9 40Z" fill="%2337E170"/%3E%3C/g%3E%3Cg filter="url(%23filter1_d)"%3E%3Cpath d="M27 10H35L25 0V8C25 9.10457 25.8954 10 27 10Z" fill="white" fill-opacity="0.5"/%3E%3C/g%3E%3Cpath d="M11.25 25L30 25" stroke="white" stroke-linecap="round" stroke-linejoin="round"/%3E%3Cpath d="M20 16.875L20 33.125" stroke="white" stroke-linecap="round" stroke-linejoin="round"/%3E%3Cpath d="M30 33.75H11.25V16.25H30V33.75Z" stroke="white" stroke-linecap="round" stroke-linejoin="round"/%3E%3C/g%3E%3Cdefs%3E%3Cfilter id="filter0_i" x="5" y="0" width="30" height="40" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"%3E%3CfeFlood flood-opacity="0" result="BackgroundImageFix"/%3E%3CfeBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/%3E%3CfeColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/%3E%3CfeOffset/%3E%3CfeGaussianBlur stdDeviation="2"/%3E%3CfeComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/%3E%3CfeColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.1 0"/%3E%3CfeBlend mode="normal" in2="shape" result="effect1_innerShadow"/%3E%3C/filter%3E%3Cfilter id="filter1_d" x="23" y="-1" width="14" height="14" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"%3E%3CfeFlood flood-opacity="0" result="BackgroundImageFix"/%3E%3CfeColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/%3E%3CfeOffset dy="1"/%3E%3CfeGaussianBlur stdDeviation="1"/%3E%3CfeColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.05 0"/%3E%3CfeBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/%3E%3CfeBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/%3E%3C/filter%3E%3CclipPath id="clip0"%3E%3Crect width="40" height="40" fill="white"/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A');
|
49
65
|
}
|
50
|
-
|
51
66
|
.e-filemanager .e-fe-pdf {
|
52
67
|
background-image: url('data:image/svg+xml,%3Csvg width="auto" height="auto" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg"%3E%3Cg clip-path="url(%23clip0)"%3E%3Cg filter="url(%23filter0_i)"%3E%3Cpath d="M9 40H31C33.2091 40 35 38.2091 35 36V10L25 0H9C6.79086 0 5 1.79086 5 4V36C5 38.2091 6.79086 40 9 40Z" fill="%23FF8484"/%3E%3C/g%3E%3Cg filter="url(%23filter1_d)"%3E%3Cpath d="M27 10H35L25 0V8C25 9.10457 25.8954 10 27 10Z" fill="white" fill-opacity="0.5"/%3E%3C/g%3E%3Cpath d="M8.75 28.75V23.75M8.75 23.75V18.75H11.75C12.8546 18.75 13.75 19.6454 13.75 20.75V21.75C13.75 22.8546 12.8546 23.75 11.75 23.75H8.75Z" stroke="white" stroke-linecap="round" stroke-linejoin="round"/%3E%3Cpath d="M26.25 28.75V23.75V18.75H32.5" stroke="white" stroke-linecap="round" stroke-linejoin="round"/%3E%3Cpath d="M26.25 23.75H31.25" stroke="white" stroke-linecap="round" stroke-linejoin="round"/%3E%3Cpath d="M20.5 18.75H17.5V28.75H20.5C21.6046 28.75 22.5 27.8546 22.5 26.75V20.75C22.5 19.6454 21.6046 18.75 20.5 18.75Z" stroke="white" stroke-linecap="round" stroke-linejoin="round"/%3E%3C/g%3E%3Cdefs%3E%3Cfilter id="filter0_i" x="5" y="0" width="30" height="40" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"%3E%3CfeFlood flood-opacity="0" result="BackgroundImageFix"/%3E%3CfeBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/%3E%3CfeColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/%3E%3CfeOffset/%3E%3CfeGaussianBlur stdDeviation="2"/%3E%3CfeComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/%3E%3CfeColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.1 0"/%3E%3CfeBlend mode="normal" in2="shape" result="effect1_innerShadow"/%3E%3C/filter%3E%3Cfilter id="filter1_d" x="23" y="-1" width="14" height="14" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"%3E%3CfeFlood flood-opacity="0" result="BackgroundImageFix"/%3E%3CfeColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/%3E%3CfeOffset dy="1"/%3E%3CfeGaussianBlur stdDeviation="1"/%3E%3CfeColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.05 0"/%3E%3CfeBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/%3E%3CfeBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/%3E%3C/filter%3E%3CclipPath id="clip0"%3E%3Crect width="40" height="40" fill="white"/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A');
|
53
68
|
}
|
54
|
-
|
55
69
|
.e-filemanager .e-fe-image {
|
56
70
|
background-image: url('data:image/svg+xml,%3Csvg width="auto" height="auto" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg"%3E%3Cg clip-path="url(%23clip0)"%3E%3Cg filter="url(%23filter0_i)"%3E%3Cpath d="M9 40H31C33.2091 40 35 38.2091 35 36V10L25 0H9C6.79086 0 5 1.79086 5 4V36C5 38.2091 6.79086 40 9 40Z" fill="%238799FB"/%3E%3C/g%3E%3Cg filter="url(%23filter1_d)"%3E%3Cpath d="M27 10H35L25 0V8C25 9.10457 25.8954 10 27 10Z" fill="white" fill-opacity="0.5"/%3E%3C/g%3E%3Cpath d="M11.25 29.25L16.624 24.2821C17.5393 23.4359 19.0232 23.4359 19.9385 24.2821L25.3125 29.25M22.9688 27.0833L24.8271 25.3654C25.7424 24.5193 27.2264 24.5193 28.1417 25.3654L30 27.0833M22.9688 20.5833H22.9805M13.5938 32.5H27.6562C28.9507 32.5 30 31.5299 30 30.3333V18.4167C30 17.22 28.9507 16.25 27.6562 16.25H13.5938C12.2993 16.25 11.25 17.22 11.25 18.4167V30.3333C11.25 31.5299 12.2993 32.5 13.5938 32.5Z" stroke="white" stroke-linecap="round" stroke-linejoin="round"/%3E%3C/g%3E%3Cdefs%3E%3Cfilter id="filter0_i" x="5" y="0" width="30" height="40" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"%3E%3CfeFlood flood-opacity="0" result="BackgroundImageFix"/%3E%3CfeBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/%3E%3CfeColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/%3E%3CfeOffset/%3E%3CfeGaussianBlur stdDeviation="2"/%3E%3CfeComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/%3E%3CfeColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.1 0"/%3E%3CfeBlend mode="normal" in2="shape" result="effect1_innerShadow"/%3E%3C/filter%3E%3Cfilter id="filter1_d" x="23" y="-1" width="14" height="14" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"%3E%3CfeFlood flood-opacity="0" result="BackgroundImageFix"/%3E%3CfeColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/%3E%3CfeOffset dy="1"/%3E%3CfeGaussianBlur stdDeviation="1"/%3E%3CfeColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.05 0"/%3E%3CfeBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/%3E%3CfeBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/%3E%3C/filter%3E%3CclipPath id="clip0"%3E%3Crect width="40" height="40" fill="white"/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A');
|
57
71
|
}
|
58
|
-
|
59
72
|
.e-filemanager .e-fe-rar {
|
60
73
|
background-image: url('data:image/svg+xml,%3Csvg width="auto" height="auto" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg"%3E%3Cg clip-path="url(%23clip0)"%3E%3Cg filter="url(%23filter0_i)"%3E%3Cpath d="M9 40H31C33.2091 40 35 38.2091 35 36V10L25 0H9C6.79086 0 5 1.79086 5 4V36C5 38.2091 6.79086 40 9 40Z" fill="%23B870FF"/%3E%3C/g%3E%3Cpath d="M8.75 28.75V23.75M8.75 23.75V18.75H11.75C12.8546 18.75 13.75 19.6454 13.75 20.75V21.75C13.75 22.8546 12.8546 23.75 11.75 23.75H8.75Z" stroke="white" stroke-linecap="round" stroke-linejoin="round"/%3E%3Cpath d="M9.47102 23.817L13.7497 28.749" stroke="white" stroke-linecap="round" stroke-linejoin="round"/%3E%3Cpath d="M17.5 28.75V20.75C17.5 19.6454 18.3954 18.75 19.5 18.75H20.5C21.6046 18.75 22.5 19.6454 22.5 20.75V28.75" stroke="white" stroke-linecap="round" stroke-linejoin="round"/%3E%3Cpath d="M26.25 28.75V23.75M26.25 23.75V18.75H29.25C30.3546 18.75 31.25 19.6454 31.25 20.75V21.75C31.25 22.8546 30.3546 23.75 29.25 23.75H26.25Z" stroke="white" stroke-linecap="round" stroke-linejoin="round"/%3E%3Cpath d="M26.971 23.817L31.2497 28.749" stroke="white" stroke-linecap="round" stroke-linejoin="round"/%3E%3Cline x1="17.5" y1="25.75" x2="22.5" y2="25.75" stroke="white"/%3E%3Cg filter="url(%23filter1_d)"%3E%3Cpath d="M27 10H35L25 0V8C25 9.10457 25.8954 10 27 10Z" fill="white" fill-opacity="0.5"/%3E%3C/g%3E%3C/g%3E%3Cdefs%3E%3Cfilter id="filter0_i" x="5" y="0" width="30" height="40" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"%3E%3CfeFlood flood-opacity="0" result="BackgroundImageFix"/%3E%3CfeBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/%3E%3CfeColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/%3E%3CfeOffset/%3E%3CfeGaussianBlur stdDeviation="2"/%3E%3CfeComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/%3E%3CfeColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.1 0"/%3E%3CfeBlend mode="normal" in2="shape" result="effect1_innerShadow"/%3E%3C/filter%3E%3Cfilter id="filter1_d" x="23" y="-1" width="14" height="14" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"%3E%3CfeFlood flood-opacity="0" result="BackgroundImageFix"/%3E%3CfeColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/%3E%3CfeOffset dy="1"/%3E%3CfeGaussianBlur stdDeviation="1"/%3E%3CfeColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.05 0"/%3E%3CfeBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/%3E%3CfeBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/%3E%3C/filter%3E%3CclipPath id="clip0"%3E%3Crect width="40" height="40" fill="white"/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A');
|
61
74
|
}
|
62
|
-
|
63
75
|
.e-filemanager .e-fe-zip {
|
64
76
|
background-image: url('data:image/svg+xml,%3Csvg width="auto" height="auto" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg"%3E%3Cg clip-path="url(%23clip0)"%3E%3Cg filter="url(%23filter0_i)"%3E%3Cpath d="M9 40H31C33.2091 40 35 38.2091 35 36V10L25 0H9C6.79086 0 5 1.79086 5 4V36C5 38.2091 6.79086 40 9 40Z" fill="%23FFCB45"/%3E%3C/g%3E%3Cg filter="url(%23filter1_d)"%3E%3Cpath d="M27 10H35L25 0V8C25 9.10457 25.8954 10 27 10Z" fill="white" fill-opacity="0.5"/%3E%3C/g%3E%3Cpath d="M10 16.25L22.5 16.25" stroke="white" stroke-linecap="round" stroke-linejoin="round"/%3E%3Cpath d="M10 10.001L22.5 10.001" stroke="white" stroke-linecap="round" stroke-linejoin="round"/%3E%3Cpath d="M10 22.5L22.5 22.5" stroke="white" stroke-linecap="round" stroke-linejoin="round"/%3E%3Cpath d="M22.5 28.75H10L16.25 35L22.5 28.75Z" stroke="white" stroke-linecap="round" stroke-linejoin="round"/%3E%3C/g%3E%3Cdefs%3E%3Cfilter id="filter0_i" x="5" y="0" width="30" height="40" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"%3E%3CfeFlood flood-opacity="0" result="BackgroundImageFix"/%3E%3CfeBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/%3E%3CfeColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/%3E%3CfeOffset/%3E%3CfeGaussianBlur stdDeviation="2"/%3E%3CfeComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/%3E%3CfeColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.1 0"/%3E%3CfeBlend mode="normal" in2="shape" result="effect1_innerShadow"/%3E%3C/filter%3E%3Cfilter id="filter1_d" x="23" y="-1" width="14" height="14" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"%3E%3CfeFlood flood-opacity="0" result="BackgroundImageFix"/%3E%3CfeColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/%3E%3CfeOffset dy="1"/%3E%3CfeGaussianBlur stdDeviation="1"/%3E%3CfeColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.05 0"/%3E%3CfeBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/%3E%3CfeBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/%3E%3C/filter%3E%3CclipPath id="clip0"%3E%3Crect width="40" height="40" fill="white"/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A');
|
65
77
|
}
|
66
|
-
|
67
78
|
.e-filemanager .e-fe-txt {
|
68
79
|
background-image: url('data:image/svg+xml,%3Csvg width="auto" height="auto" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg"%3E%3Cg clip-path="url(%23clip0)"%3E%3Cg filter="url(%23filter0_i)"%3E%3Cpath d="M9 40H31C33.2091 40 35 38.2091 35 36V10L25 0H9C6.79086 0 5 1.79086 5 4V36C5 38.2091 6.79086 40 9 40Z" fill="%239A9DA2"/%3E%3C/g%3E%3Cg filter="url(%23filter1_d)"%3E%3Cpath d="M27 10H35L25 0V8C25 9.10457 25.8954 10 27 10Z" fill="white" fill-opacity="0.5"/%3E%3C/g%3E%3Cline x1="11.75" y1="17" x2="23.25" y2="17" stroke="white" stroke-linecap="round" stroke-linejoin="round"/%3E%3Cpath d="M11.25 23.75L30 23.75" stroke="white" stroke-linecap="round" stroke-linejoin="round"/%3E%3Cpath d="M11.25 31.25L30 31.25" stroke="white" stroke-linecap="round" stroke-linejoin="round"/%3E%3C/g%3E%3Cdefs%3E%3Cfilter id="filter0_i" x="5" y="0" width="30" height="40" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"%3E%3CfeFlood flood-opacity="0" result="BackgroundImageFix"/%3E%3CfeBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/%3E%3CfeColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/%3E%3CfeOffset/%3E%3CfeGaussianBlur stdDeviation="2"/%3E%3CfeComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/%3E%3CfeColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.1 0"/%3E%3CfeBlend mode="normal" in2="shape" result="effect1_innerShadow"/%3E%3C/filter%3E%3Cfilter id="filter1_d" x="23" y="-1" width="14" height="14" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"%3E%3CfeFlood flood-opacity="0" result="BackgroundImageFix"/%3E%3CfeColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/%3E%3CfeOffset dy="1"/%3E%3CfeGaussianBlur stdDeviation="1"/%3E%3CfeColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.05 0"/%3E%3CfeBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/%3E%3CfeBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/%3E%3C/filter%3E%3CclipPath id="clip0"%3E%3Crect width="40" height="40" fill="white"/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A');
|
69
80
|
}
|
70
|
-
|
71
81
|
.e-filemanager .e-fe-music {
|
72
82
|
background-image: url('data:image/svg+xml,%3Csvg width="auto" height="auto" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg"%3E%3Cg clip-path="url(%23clip0)"%3E%3Cg filter="url(%23filter0_i)"%3E%3Cpath d="M9 40H31C33.2091 40 35 38.2091 35 36V10L25 0H9C6.79086 0 5 1.79086 5 4V36C5 38.2091 6.79086 40 9 40Z" fill="%2333C0FF"/%3E%3C/g%3E%3Cg filter="url(%23filter1_d)"%3E%3Cpath d="M27 10H35L25 0V8C25 9.10457 25.8954 10 27 10Z" fill="white" fill-opacity="0.5"/%3E%3C/g%3E%3Cpath d="M15.4167 31.5278V17.0833L28.75 13.75V28.1944M15.4167 31.5278C15.4167 32.7551 13.9243 33.75 12.0833 33.75C10.2424 33.75 8.75 32.7551 8.75 31.5278C8.75 30.3005 10.2424 29.3056 12.0833 29.3056C13.9243 29.3056 15.4167 30.3005 15.4167 31.5278ZM28.75 28.1944C28.75 29.4217 27.2576 30.4167 25.4167 30.4167C23.5757 30.4167 22.0833 29.4217 22.0833 28.1944C22.0833 26.9671 23.5757 25.9722 25.4167 25.9722C27.2576 25.9722 28.75 26.9671 28.75 28.1944ZM15.4167 21.5278L28.75 18.1944" stroke="white" stroke-linecap="round" stroke-linejoin="round"/%3E%3C/g%3E%3Cdefs%3E%3Cfilter id="filter0_i" x="5" y="0" width="30" height="40" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"%3E%3CfeFlood flood-opacity="0" result="BackgroundImageFix"/%3E%3CfeBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/%3E%3CfeColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/%3E%3CfeOffset/%3E%3CfeGaussianBlur stdDeviation="2"/%3E%3CfeComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/%3E%3CfeColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.1 0"/%3E%3CfeBlend mode="normal" in2="shape" result="effect1_innerShadow"/%3E%3C/filter%3E%3Cfilter id="filter1_d" x="23" y="-1" width="14" height="14" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"%3E%3CfeFlood flood-opacity="0" result="BackgroundImageFix"/%3E%3CfeColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/%3E%3CfeOffset dy="1"/%3E%3CfeGaussianBlur stdDeviation="1"/%3E%3CfeColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.05 0"/%3E%3CfeBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/%3E%3CfeBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/%3E%3C/filter%3E%3CclipPath id="clip0"%3E%3Crect width="40" height="40" fill="white"/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A');
|
73
83
|
}
|
74
|
-
|
75
84
|
.e-filemanager .e-fe-video {
|
76
85
|
background-image: url('data:image/svg+xml,%3Csvg width="auto" height="auto" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg"%3E%3Cg clip-path="url(%23clip0)"%3E%3Cg filter="url(%23filter0_i)"%3E%3Cpath d="M9 40H31C33.2091 40 35 38.2091 35 36V10L25 0H9C6.79086 0 5 1.79086 5 4V36C5 38.2091 6.79086 40 9 40Z" fill="%23FF8484"/%3E%3C/g%3E%3Cg filter="url(%23filter1_d)"%3E%3Cpath d="M27 10H35L25 0V8C25 9.10457 25.8954 10 27 10Z" fill="white" fill-opacity="0.5"/%3E%3C/g%3E%3Cpath d="M23.4916 23.5073L20.1611 21.287C19.4689 20.8255 18.5417 21.3218 18.5417 22.1537V26.5943C18.5417 27.4263 19.4689 27.9225 20.1611 27.461L23.4916 25.2407C24.1101 24.8284 24.1101 23.9196 23.4916 23.5073Z" stroke="white" stroke-linecap="round" stroke-linejoin="round"/%3E%3Cpath d="M30 24.374C30 29.5517 25.8027 33.749 20.625 33.749C15.4473 33.749 11.25 29.5517 11.25 24.374C11.25 19.1964 15.4473 14.999 20.625 14.999C25.8027 14.999 30 19.1964 30 24.374Z" stroke="white" stroke-linecap="round" stroke-linejoin="round"/%3E%3C/g%3E%3Cdefs%3E%3Cfilter id="filter0_i" x="5" y="0" width="30" height="40" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"%3E%3CfeFlood flood-opacity="0" result="BackgroundImageFix"/%3E%3CfeBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/%3E%3CfeColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/%3E%3CfeOffset/%3E%3CfeGaussianBlur stdDeviation="2"/%3E%3CfeComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/%3E%3CfeColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.1 0"/%3E%3CfeBlend mode="normal" in2="shape" result="effect1_innerShadow"/%3E%3C/filter%3E%3Cfilter id="filter1_d" x="23" y="-1" width="14" height="14" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"%3E%3CfeFlood flood-opacity="0" result="BackgroundImageFix"/%3E%3CfeColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/%3E%3CfeOffset dy="1"/%3E%3CfeGaussianBlur stdDeviation="1"/%3E%3CfeColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.05 0"/%3E%3CfeBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/%3E%3CfeBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/%3E%3C/filter%3E%3CclipPath id="clip0"%3E%3Crect width="40" height="40" fill="white"/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A');
|
77
86
|
}
|
78
|
-
|
79
87
|
.e-filemanager .e-fe-js {
|
80
88
|
background-image: url('data:image/svg+xml,%3Csvg width="auto" height="auto" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg"%3E%3Cg clip-path="url(%23clip0)"%3E%3Cg filter="url(%23filter0_i)"%3E%3Cpath d="M9 40H31C33.2091 40 35 38.2091 35 36V10L25 0H9C6.79086 0 5 1.79086 5 4V36C5 38.2091 6.79086 40 9 40Z" fill="%23A0DA40"/%3E%3C/g%3E%3Cg filter="url(%23filter1_d)"%3E%3Cpath d="M27 10H35L25 0V8C25 9.10457 25.8954 10 27 10Z" fill="white" fill-opacity="0.5"/%3E%3C/g%3E%3Cpath d="M22.5 28.75H26.75C27.8546 28.75 28.75 27.8546 28.75 26.75V25.125C28.75 24.0204 27.8546 23.125 26.75 23.125H24.5C23.3954 23.125 22.5 22.2296 22.5 21.125V19.5C22.5 18.3954 23.3954 17.5 24.5 17.5H28.75" stroke="white" stroke-linecap="round" stroke-linejoin="round"/%3E%3Cpath d="M17.5 17.5V26.75C17.5 27.8546 16.6046 28.75 15.5 28.75H13.25C12.1454 28.75 11.25 27.8546 11.25 26.75V24.5312" stroke="white" stroke-linecap="round" stroke-linejoin="round"/%3E%3C/g%3E%3Cdefs%3E%3Cfilter id="filter0_i" x="5" y="0" width="30" height="40" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"%3E%3CfeFlood flood-opacity="0" result="BackgroundImageFix"/%3E%3CfeBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/%3E%3CfeColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/%3E%3CfeOffset/%3E%3CfeGaussianBlur stdDeviation="2"/%3E%3CfeComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/%3E%3CfeColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.1 0"/%3E%3CfeBlend mode="normal" in2="shape" result="effect1_innerShadow"/%3E%3C/filter%3E%3Cfilter id="filter1_d" x="23" y="-1" width="14" height="14" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"%3E%3CfeFlood flood-opacity="0" result="BackgroundImageFix"/%3E%3CfeColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/%3E%3CfeOffset dy="1"/%3E%3CfeGaussianBlur stdDeviation="1"/%3E%3CfeColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.05 0"/%3E%3CfeBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/%3E%3CfeBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/%3E%3C/filter%3E%3CclipPath id="clip0"%3E%3Crect width="40" height="40" fill="white"/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A');
|
81
89
|
}
|
82
|
-
|
83
90
|
.e-filemanager .e-fe-css {
|
84
91
|
background-image: url('data:image/svg+xml,%3Csvg width="auto" height="auto" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg"%3E%3Cg clip-path="url(%23clip0)"%3E%3Cg filter="url(%23filter0_i)"%3E%3Cpath d="M9 40H31C33.2091 40 35 38.2091 35 36V10L25 0H9C6.79086 0 5 1.79086 5 4V36C5 38.2091 6.79086 40 9 40Z" fill="%23F4A839"/%3E%3C/g%3E%3Cg filter="url(%23filter1_d)"%3E%3Cpath d="M27 10H35L25 0V8C25 9.10457 25.8954 10 27 10Z" fill="white" fill-opacity="0.5"/%3E%3C/g%3E%3Cpath d="M26.25 30H30.5C31.6046 30 32.5 29.1046 32.5 28V26.375C32.5 25.2704 31.6046 24.375 30.5 24.375H28.25C27.1454 24.375 26.25 23.4796 26.25 22.375V20.75C26.25 19.6454 27.1454 18.75 28.25 18.75H32.5" stroke="white" stroke-linecap="round" stroke-linejoin="round"/%3E%3Cpath d="M17.5 30H21.75C22.8546 30 23.75 29.1046 23.75 28V26.375C23.75 25.2704 22.8546 24.375 21.75 24.375H19.5C18.3954 24.375 17.5 23.4796 17.5 22.375V20.75C17.5 19.6454 18.3954 18.75 19.5 18.75H23.75" stroke="white" stroke-linecap="round" stroke-linejoin="round"/%3E%3Cpath d="M15 18.75H10.75C9.64543 18.75 8.75 19.6454 8.75 20.75V28C8.75 29.1046 9.64543 30 10.75 30H15" stroke="white" stroke-linecap="round" stroke-linejoin="round"/%3E%3C/g%3E%3Cdefs%3E%3Cfilter id="filter0_i" x="5" y="0" width="30" height="40" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"%3E%3CfeFlood flood-opacity="0" result="BackgroundImageFix"/%3E%3CfeBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/%3E%3CfeColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/%3E%3CfeOffset/%3E%3CfeGaussianBlur stdDeviation="2"/%3E%3CfeComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/%3E%3CfeColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.1 0"/%3E%3CfeBlend mode="normal" in2="shape" result="effect1_innerShadow"/%3E%3C/filter%3E%3Cfilter id="filter1_d" x="23" y="-1" width="14" height="14" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"%3E%3CfeFlood flood-opacity="0" result="BackgroundImageFix"/%3E%3CfeColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/%3E%3CfeOffset dy="1"/%3E%3CfeGaussianBlur stdDeviation="1"/%3E%3CfeColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.05 0"/%3E%3CfeBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/%3E%3CfeBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/%3E%3C/filter%3E%3CclipPath id="clip0"%3E%3Crect width="40" height="40" fill="white"/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A');
|
85
92
|
}
|
86
|
-
|
87
93
|
.e-filemanager .e-fe-html {
|
88
94
|
background-image: url('data:image/svg+xml,%3Csvg width="auto" height="auto" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg"%3E%3Cg clip-path="url(%23clip0)"%3E%3Cg filter="url(%23filter0_i)"%3E%3Cpath d="M9 40H31C33.2091 40 35 38.2091 35 36V10L25 0H9C6.79086 0 5 1.79086 5 4V36C5 38.2091 6.79086 40 9 40Z" fill="%23B653C6"/%3E%3C/g%3E%3Cg filter="url(%23filter1_d)"%3E%3Cpath d="M27 10H35L25 0V8C25 9.10457 25.8954 10 27 10Z" fill="white" fill-opacity="0.5"/%3E%3C/g%3E%3Cpath d="M17.5 33.75L22.5 13.75M26.25 18.75L31.25 23.75L26.25 28.75M13.75 28.75L8.75 23.75L13.75 18.75" stroke="white" stroke-linecap="round" stroke-linejoin="round"/%3E%3C/g%3E%3Cdefs%3E%3Cfilter id="filter0_i" x="5" y="0" width="30" height="40" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"%3E%3CfeFlood flood-opacity="0" result="BackgroundImageFix"/%3E%3CfeBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/%3E%3CfeColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/%3E%3CfeOffset/%3E%3CfeGaussianBlur stdDeviation="2"/%3E%3CfeComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/%3E%3CfeColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.1 0"/%3E%3CfeBlend mode="normal" in2="shape" result="effect1_innerShadow"/%3E%3C/filter%3E%3Cfilter id="filter1_d" x="23" y="-1" width="14" height="14" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"%3E%3CfeFlood flood-opacity="0" result="BackgroundImageFix"/%3E%3CfeColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/%3E%3CfeOffset dy="1"/%3E%3CfeGaussianBlur stdDeviation="1"/%3E%3CfeColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.05 0"/%3E%3CfeBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/%3E%3CfeBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/%3E%3C/filter%3E%3CclipPath id="clip0"%3E%3Crect width="40" height="40" fill="white"/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A');
|
89
95
|
}
|
90
|
-
|
91
96
|
.e-filemanager .e-fe-php {
|
92
97
|
background-image: url('data:image/svg+xml,%3Csvg width="auto" height="auto" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg"%3E%3Cg clip-path="url(%23clip0)"%3E%3Cg filter="url(%23filter0_i)"%3E%3Cpath d="M9 40H31C33.2091 40 35 38.2091 35 36V10L25 0H9C6.79086 0 5 1.79086 5 4V36C5 38.2091 6.79086 40 9 40Z" fill="%23A080FF"/%3E%3C/g%3E%3Cg filter="url(%23filter1_d)"%3E%3Cpath d="M27 10H35L25 0V8C25 9.10457 25.8954 10 27 10Z" fill="white" fill-opacity="0.5"/%3E%3C/g%3E%3Cpath d="M8.75 28.75V25M8.75 25V20H11.75C12.8546 20 13.75 20.8954 13.75 22V23C13.75 24.1046 12.8546 25 11.75 25H8.75Z" stroke="white" stroke-linecap="round" stroke-linejoin="round"/%3E%3Cpath d="M26.25 28.75V25M26.25 25V20H29.25C30.3546 20 31.25 20.8954 31.25 22V23C31.25 24.1046 30.3546 25 29.25 25H26.25Z" stroke="white" stroke-linecap="round" stroke-linejoin="round"/%3E%3Cpath d="M17.5 28.75V25V20" stroke="white" stroke-linecap="round" stroke-linejoin="round"/%3E%3Cpath d="M22.5 28.75V25V20" stroke="white" stroke-linecap="round" stroke-linejoin="round"/%3E%3Cpath d="M17.5 23.75H22.5" stroke="white" stroke-linecap="round" stroke-linejoin="round"/%3E%3C/g%3E%3Cdefs%3E%3Cfilter id="filter0_i" x="5" y="0" width="30" height="40" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"%3E%3CfeFlood flood-opacity="0" result="BackgroundImageFix"/%3E%3CfeBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/%3E%3CfeColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/%3E%3CfeOffset/%3E%3CfeGaussianBlur stdDeviation="2"/%3E%3CfeComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/%3E%3CfeColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.1 0"/%3E%3CfeBlend mode="normal" in2="shape" result="effect1_innerShadow"/%3E%3C/filter%3E%3Cfilter id="filter1_d" x="23" y="-1" width="14" height="14" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"%3E%3CfeFlood flood-opacity="0" result="BackgroundImageFix"/%3E%3CfeColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/%3E%3CfeOffset dy="1"/%3E%3CfeGaussianBlur stdDeviation="1"/%3E%3CfeColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.05 0"/%3E%3CfeBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/%3E%3CfeBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/%3E%3C/filter%3E%3CclipPath id="clip0"%3E%3Crect width="40" height="40" fill="white"/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A');
|
93
98
|
}
|
94
|
-
|
95
99
|
.e-filemanager .e-fe-exe {
|
96
100
|
background-image: url('data:image/svg+xml,%3Csvg width="auto" height="auto" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg"%3E%3Cg clip-path="url(%23clip0)"%3E%3Cg filter="url(%23filter0_i)"%3E%3Cpath d="M9 40H31C33.2091 40 35 38.2091 35 36V10L25 0H9C6.79086 0 5 1.79086 5 4V36C5 38.2091 6.79086 40 9 40Z" fill="%239B9DA2"/%3E%3C/g%3E%3Cg filter="url(%23filter1_d)"%3E%3Cpath d="M27 10H35L25 0V8C25 9.10457 25.8954 10 27 10Z" fill="white" fill-opacity="0.5"/%3E%3C/g%3E%3Cpath d="M27.5 30V25V20H32.5" stroke="white" stroke-linecap="round" stroke-linejoin="round"/%3E%3Cpath d="M8.75 30V25V20H13.75" stroke="white" stroke-linecap="round" stroke-linejoin="round"/%3E%3Cpath d="M17.5 30L23.75 20" stroke="white" stroke-linecap="round" stroke-linejoin="round"/%3E%3Cpath d="M23.75 30L17.5 20" stroke="white" stroke-linecap="round" stroke-linejoin="round"/%3E%3Cpath d="M27.5 25H31.25" stroke="white" stroke-linecap="round" stroke-linejoin="round"/%3E%3Cpath d="M8.75 25H12.5" stroke="white" stroke-linecap="round" stroke-linejoin="round"/%3E%3Cpath d="M27.5 30H32.5" stroke="white" stroke-linecap="round" stroke-linejoin="round"/%3E%3Cpath d="M8.75 30H13.75" stroke="white" stroke-linecap="round" stroke-linejoin="round"/%3E%3C/g%3E%3Cdefs%3E%3Cfilter id="filter0_i" x="5" y="0" width="30" height="40" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"%3E%3CfeFlood flood-opacity="0" result="BackgroundImageFix"/%3E%3CfeBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/%3E%3CfeColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/%3E%3CfeOffset/%3E%3CfeGaussianBlur stdDeviation="2"/%3E%3CfeComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/%3E%3CfeColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.1 0"/%3E%3CfeBlend mode="normal" in2="shape" result="effect1_innerShadow"/%3E%3C/filter%3E%3Cfilter id="filter1_d" x="23" y="-1" width="14" height="14" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"%3E%3CfeFlood flood-opacity="0" result="BackgroundImageFix"/%3E%3CfeColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/%3E%3CfeOffset dy="1"/%3E%3CfeGaussianBlur stdDeviation="1"/%3E%3CfeColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.05 0"/%3E%3CfeBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/%3E%3CfeBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/%3E%3C/filter%3E%3CclipPath id="clip0"%3E%3Crect width="40" height="40" fill="white"/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A');
|
97
101
|
}
|
98
|
-
|
99
102
|
.e-filemanager .e-fe-msi {
|
100
103
|
background-image: url('data:image/svg+xml,%3Csvg width="auto" height="auto" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg"%3E%3Cg clip-path="url(%23clip0)"%3E%3Cg filter="url(%23filter0_i)"%3E%3Cpath d="M9 40H31C33.2091 40 35 38.2091 35 36V10L25 0H9C6.79086 0 5 1.79086 5 4V36C5 38.2091 6.79086 40 9 40Z" fill="%232ACBB7"/%3E%3C/g%3E%3Cg filter="url(%23filter1_d)"%3E%3Cpath d="M27 10H35L25 0V8C25 9.10457 25.8954 10 27 10Z" fill="white" fill-opacity="0.5"/%3E%3C/g%3E%3Cpath d="M31.25 31.25V25.625V20" stroke="white" stroke-linecap="round" stroke-linejoin="round"/%3E%3Cpath d="M17.5 31.25V25.625V20" stroke="white" stroke-linecap="round" stroke-linejoin="round"/%3E%3Cpath d="M8.75 31.25V25.625V20" stroke="white" stroke-linecap="round" stroke-linejoin="round"/%3E%3Cpath d="M21.25 31.25H25.5C26.6046 31.25 27.5 30.3546 27.5 29.25V27.625C27.5 26.5204 26.6046 25.625 25.5 25.625H23.25C22.1454 25.625 21.25 24.7296 21.25 23.625V22C21.25 20.8954 22.1454 20 23.25 20H27.5" stroke="white" stroke-linecap="round" stroke-linejoin="round"/%3E%3Cpath d="M17.5 20L13.125 25.625L8.75 20" stroke="white" stroke-linecap="round" stroke-linejoin="round"/%3E%3C/g%3E%3Cdefs%3E%3Cfilter id="filter0_i" x="5" y="0" width="30" height="40" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"%3E%3CfeFlood flood-opacity="0" result="BackgroundImageFix"/%3E%3CfeBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/%3E%3CfeColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/%3E%3CfeOffset/%3E%3CfeGaussianBlur stdDeviation="2"/%3E%3CfeComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/%3E%3CfeColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.1 0"/%3E%3CfeBlend mode="normal" in2="shape" result="effect1_innerShadow"/%3E%3C/filter%3E%3Cfilter id="filter1_d" x="23" y="-1" width="14" height="14" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"%3E%3CfeFlood flood-opacity="0" result="BackgroundImageFix"/%3E%3CfeColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/%3E%3CfeOffset dy="1"/%3E%3CfeGaussianBlur stdDeviation="1"/%3E%3CfeColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.05 0"/%3E%3CfeBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/%3E%3CfeBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/%3E%3C/filter%3E%3CclipPath id="clip0"%3E%3Crect width="40" height="40" fill="white"/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A');
|
101
104
|
}
|
102
|
-
|
103
105
|
.e-filemanager .e-fe-unknown {
|
104
106
|
background-image: url('data:image/svg+xml,%3Csvg width="auto" height="auto" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg"%3E%3Cg clip-path="url(%23clip0)"%3E%3Cg filter="url(%23filter0_i)"%3E%3Cpath d="M9 40H31C33.2091 40 35 38.2091 35 36V10L25 0H9C6.79086 0 5 1.79086 5 4V36C5 38.2091 6.79086 40 9 40Z" fill="%23DD6BBA"/%3E%3C/g%3E%3Cg filter="url(%23filter1_d)"%3E%3Cpath d="M27 10H35L25 0V8C25 9.10457 25.8954 10 27 10Z" fill="white" fill-opacity="0.5"/%3E%3C/g%3E%3Cpath d="M20.625 20.2074V24.374M20.625 28.5407H20.6354M30 24.374C30 29.5517 25.8027 33.749 20.625 33.749C15.4473 33.749 11.25 29.5517 11.25 24.374C11.25 19.1964 15.4473 14.999 20.625 14.999C25.8027 14.999 30 19.1964 30 24.374Z" stroke="white" stroke-linecap="round" stroke-linejoin="round"/%3E%3C/g%3E%3Cdefs%3E%3Cfilter id="filter0_i" x="5" y="0" width="30" height="40" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"%3E%3CfeFlood flood-opacity="0" result="BackgroundImageFix"/%3E%3CfeBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/%3E%3CfeColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/%3E%3CfeOffset/%3E%3CfeGaussianBlur stdDeviation="2"/%3E%3CfeComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/%3E%3CfeColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.1 0"/%3E%3CfeBlend mode="normal" in2="shape" result="effect1_innerShadow"/%3E%3C/filter%3E%3Cfilter id="filter1_d" x="23" y="-1" width="14" height="14" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"%3E%3CfeFlood flood-opacity="0" result="BackgroundImageFix"/%3E%3CfeColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/%3E%3CfeOffset dy="1"/%3E%3CfeGaussianBlur stdDeviation="1"/%3E%3CfeColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.05 0"/%3E%3CfeBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/%3E%3CfeBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/%3E%3C/filter%3E%3CclipPath id="clip0"%3E%3Crect width="40" height="40" fill="white"/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A');
|
105
107
|
}
|
106
|
-
|
107
108
|
.e-filemanager .e-fe-rtf {
|
108
109
|
background-image: url('data:image/svg+xml,%3Csvg width="auto" height="auto" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg"%3E%3Cg clip-path="url(%23clip0)"%3E%3Cg filter="url(%23filter0_i)"%3E%3Cpath d="M9 40H31C33.2091 40 35 38.2091 35 36V10L25 0H9C6.79086 0 5 1.79086 5 4V36C5 38.2091 6.79086 40 9 40Z" fill="%235FDBF7"/%3E%3C/g%3E%3Cg filter="url(%23filter1_d)"%3E%3Cpath d="M27 10H35L25 0V8C25 9.10457 25.8954 10 27 10Z" fill="white" fill-opacity="0.5"/%3E%3C/g%3E%3Cpath d="M26.25 27.5V22.5V17.5H32.5" stroke="white" stroke-linecap="round" stroke-linejoin="round"/%3E%3Cpath d="M20 27.5V22.5V17.5" stroke="white" stroke-linecap="round" stroke-linejoin="round"/%3E%3Cpath d="M26.25 22.5H31.25" stroke="white" stroke-linecap="round" stroke-linejoin="round"/%3E%3Cpath d="M16.25 17.5H23.75" stroke="white" stroke-linecap="round" stroke-linejoin="round"/%3E%3Cpath d="M8.75 27.5V22.5M8.75 22.5V17.5H11.75C12.8546 17.5 13.75 18.3954 13.75 19.5V20.5C13.75 21.6046 12.8546 22.5 11.75 22.5H8.75Z" stroke="white" stroke-linecap="round" stroke-linejoin="round"/%3E%3Cpath d="M9.47102 22.568L13.7497 27.5" stroke="white" stroke-linecap="round" stroke-linejoin="round"/%3E%3C/g%3E%3Cdefs%3E%3Cfilter id="filter0_i" x="5" y="0" width="30" height="40" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"%3E%3CfeFlood flood-opacity="0" result="BackgroundImageFix"/%3E%3CfeBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/%3E%3CfeColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/%3E%3CfeOffset/%3E%3CfeGaussianBlur stdDeviation="2"/%3E%3CfeComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/%3E%3CfeColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.1 0"/%3E%3CfeBlend mode="normal" in2="shape" result="effect1_innerShadow"/%3E%3C/filter%3E%3Cfilter id="filter1_d" x="23" y="-1" width="14" height="14" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"%3E%3CfeFlood flood-opacity="0" result="BackgroundImageFix"/%3E%3CfeColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/%3E%3CfeOffset dy="1"/%3E%3CfeGaussianBlur stdDeviation="1"/%3E%3CfeColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.05 0"/%3E%3CfeBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/%3E%3CfeBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/%3E%3C/filter%3E%3CclipPath id="clip0"%3E%3Crect width="40" height="40" fill="white"/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A');
|
109
110
|
}
|
110
|
-
|
111
111
|
.e-filemanager .e-fe-xml {
|
112
112
|
background-image: url('data:image/svg+xml,%3Csvg width="auto" height="auto" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg"%3E%3Cg clip-path="url(%23clip0)"%3E%3Cg filter="url(%23filter0_i)"%3E%3Cpath d="M9 40H31C33.2091 40 35 38.2091 35 36V10L25 0H9C6.79086 0 5 1.79086 5 4V36C5 38.2091 6.79086 40 9 40Z" fill="%23A0DA40"/%3E%3C/g%3E%3Cg filter="url(%23filter1_d)"%3E%3Cpath d="M27 10H35L25 0V8C25 9.10457 25.8954 10 27 10Z" fill="white" fill-opacity="0.5"/%3E%3C/g%3E%3Cpath d="M28.75 17.501V22.501V27.501H33.75" stroke="white" stroke-linecap="round" stroke-linejoin="round"/%3E%3Cpath d="M7.5 27.5L13.75 17.5" stroke="white" stroke-linecap="round" stroke-linejoin="round"/%3E%3Cpath d="M13.75 27.5L7.5 17.5" stroke="white" stroke-linecap="round" stroke-linejoin="round"/%3E%3Cpath d="M16.25 27.5V23.125V17.5" stroke="white" stroke-linecap="round" stroke-linejoin="round"/%3E%3Cpath d="M25 27.5V23.125V17.5" stroke="white" stroke-linecap="round" stroke-linejoin="round"/%3E%3Cpath d="M25 17.5L20.625 23.125L16.25 17.5" stroke="white" stroke-linecap="round" stroke-linejoin="round"/%3E%3C/g%3E%3Cdefs%3E%3Cfilter id="filter0_i" x="5" y="0" width="30" height="40" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"%3E%3CfeFlood flood-opacity="0" result="BackgroundImageFix"/%3E%3CfeBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/%3E%3CfeColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/%3E%3CfeOffset/%3E%3CfeGaussianBlur stdDeviation="2"/%3E%3CfeComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/%3E%3CfeColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.1 0"/%3E%3CfeBlend mode="normal" in2="shape" result="effect1_innerShadow"/%3E%3C/filter%3E%3Cfilter id="filter1_d" x="23" y="-1" width="14" height="14" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"%3E%3CfeFlood flood-opacity="0" result="BackgroundImageFix"/%3E%3CfeColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/%3E%3CfeOffset dy="1"/%3E%3CfeGaussianBlur stdDeviation="1"/%3E%3CfeColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.05 0"/%3E%3CfeBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/%3E%3CfeBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/%3E%3C/filter%3E%3CclipPath id="clip0"%3E%3Crect width="40" height="40" fill="white"/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A');
|
113
113
|
}
|
114
|
-
|
115
114
|
.e-filemanager .e-fe-folder {
|
116
115
|
background-image: url('data:image/svg+xml,%3Csvg width="auto" height="auto" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M0.269631 16.0936C0.126239 14.9028 1.05591 13.8545 2.25529 13.8545H37.7447C38.9441 13.8545 39.8738 14.9028 39.7304 16.0936L37.7574 32.4777C37.5154 34.4873 35.8103 35.9994 33.7861 35.9994H6.21389C4.18972 35.9994 2.48458 34.4873 2.24258 32.4777L0.269631 16.0936Z" fill="%23FDDD35"/%3E%3Cpath d="M2.5 8V14.1587H37.5V11.9798C37.5 10.8753 36.6046 9.97984 35.5 9.97984H21.4809C21.0683 9.97984 20.6657 9.85221 20.3285 9.61445L15.7199 6.36538C15.3826 6.12763 14.9801 6 14.5675 6H4.5C3.39543 6 2.5 6.89543 2.5 8Z" fill="%23FAC800"/%3E%3C/svg%3E%0A');
|
117
116
|
}
|
118
|
-
|
119
|
-
.e-filemanager .e-fe-locked > .e-text-content .e-fe-folder,
|
120
|
-
.e-filemanager .e-fe-locked > .e-fe-grid-icon .e-fe-folder {
|
117
|
+
.e-filemanager .e-fe-locked > .e-text-content .e-fe-folder, .e-filemanager .e-fe-locked > .e-fe-grid-icon .e-fe-folder {
|
121
118
|
background-image: url('data:image/svg+xml,%3Csvg width="auto" height="auto" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M0.272644 16.3177C0.127709 15.1261 1.05767 14.0762 2.25801 14.0762H37.742C38.9423 14.0762 39.8723 15.1261 39.7274 16.3177L37.7611 32.4827C37.5169 34.4902 35.8127 35.9997 33.7904 35.9997H6.20961C4.18727 35.9997 2.48306 34.4902 2.23887 32.4826L0.272644 16.3177Z" fill="%23FDDD35"/%3E%3Cpath d="M2.5 8V14.0771H37.5V11.94C37.5 10.8355 36.6046 9.94004 35.5 9.94004H21.4757C21.0663 9.94004 20.6668 9.8144 20.331 9.58008L15.7173 6.35996C15.3816 6.12564 14.9821 6 14.5727 6H4.5C3.39543 6 2.5 6.89543 2.5 8Z" fill="%23FAC800"/%3E%3Cpath d="M23.125 23.693V24.193H23.625V23.693H23.125ZM16.875 23.693H16.375V24.193H16.875V23.693ZM20.5 26.77C20.5 26.4939 20.2761 26.27 20 26.27C19.7239 26.27 19.5 26.4939 19.5 26.77H20.5ZM19.5 28.3085C19.5 28.5846 19.7239 28.8085 20 28.8085C20.2761 28.8085 20.5 28.5846 20.5 28.3085H19.5ZM15.3125 24.193H24.6875V23.193H15.3125V24.193ZM25.75 25.2315V29.847H26.75V25.2315H25.75ZM24.6875 30.8855H15.3125V31.8855H24.6875V30.8855ZM14.25 29.847V25.2315H13.25V29.847H14.25ZM15.3125 30.8855C14.7184 30.8855 14.25 30.4133 14.25 29.847H13.25C13.25 30.9801 14.1807 31.8855 15.3125 31.8855V30.8855ZM25.75 29.847C25.75 30.4133 25.2816 30.8855 24.6875 30.8855V31.8855C25.8193 31.8855 26.75 30.9801 26.75 29.847H25.75ZM24.6875 24.193C25.2816 24.193 25.75 24.6652 25.75 25.2315H26.75C26.75 24.0984 25.8193 23.193 24.6875 23.193V24.193ZM15.3125 23.193C14.1807 23.193 13.25 24.0984 13.25 25.2315H14.25C14.25 24.6652 14.7184 24.193 15.3125 24.193V23.193ZM22.625 20.616V23.693H23.625V20.616H22.625ZM23.125 23.193H16.875V24.193H23.125V23.193ZM17.375 23.693V20.616H16.375V23.693H17.375ZM20 18.0391C21.4571 18.0391 22.625 19.2001 22.625 20.616H23.625C23.625 18.6333 21.9947 17.0391 20 17.0391V18.0391ZM20 17.0391C18.0053 17.0391 16.375 18.6333 16.375 20.616H17.375C17.375 19.2001 18.5429 18.0391 20 18.0391V17.0391ZM19.5 26.77V28.3085H20.5V26.77H19.5Z" fill="%23998100"/%3E%3C/svg%3E%0A');
|
122
119
|
}
|
123
|
-
|
124
120
|
.e-filemanager .e-address .e-address-list-item .e-icons::before {
|
125
|
-
content:
|
121
|
+
content: "\e748";
|
126
122
|
}
|
127
123
|
|
128
124
|
.e-filemanager .e-fe-open::before,
|
129
125
|
.e-fe-popup .e-fe-open::before {
|
130
|
-
content:
|
126
|
+
content: "\e760";
|
131
127
|
}
|
132
|
-
|
133
128
|
.e-filemanager .e-fe-cut::before,
|
134
129
|
.e-fe-popup .e-fe-cut::before {
|
135
|
-
content:
|
130
|
+
content: "\e7fb";
|
136
131
|
}
|
137
|
-
|
138
132
|
.e-filemanager .e-fe-copy::before,
|
139
133
|
.e-fe-popup .e-fe-copy::before {
|
140
|
-
content:
|
134
|
+
content: "\e77c";
|
141
135
|
}
|
142
|
-
|
143
136
|
.e-filemanager .e-fe-paste::before,
|
144
137
|
.e-fe-popup .e-fe-paste::before {
|
145
|
-
content:
|
138
|
+
content: "\e70b";
|
146
139
|
}
|
147
|
-
|
148
140
|
.e-filemanager .e-fe-delete::before,
|
149
141
|
.e-fe-popup .e-fe-delete::before {
|
150
|
-
content:
|
142
|
+
content: "\e820";
|
151
143
|
}
|
152
|
-
|
153
144
|
.e-filemanager .e-fe-rename::before,
|
154
145
|
.e-fe-popup .e-fe-rename::before {
|
155
|
-
content:
|
146
|
+
content: "\e76d";
|
156
147
|
}
|
157
|
-
|
158
148
|
.e-filemanager .e-fe-newfolder::before,
|
159
149
|
.e-fe-popup .e-fe-newfolder::before {
|
160
|
-
content:
|
150
|
+
content: "\e805";
|
161
151
|
}
|
162
|
-
|
163
152
|
.e-filemanager .e-fe-refresh::before,
|
164
153
|
.e-fe-popup .e-fe-refresh::before {
|
165
|
-
content:
|
154
|
+
content: "\e772";
|
166
155
|
}
|
167
|
-
|
168
156
|
.e-filemanager .e-fe-upload::before,
|
169
157
|
.e-fe-popup .e-fe-upload::before {
|
170
|
-
content:
|
158
|
+
content: "\e712";
|
171
159
|
}
|
172
|
-
|
173
160
|
.e-filemanager .e-fe-download::before,
|
174
161
|
.e-fe-popup .e-fe-download::before {
|
175
|
-
content:
|
162
|
+
content: "\e7a1";
|
176
163
|
}
|
177
|
-
|
178
164
|
.e-filemanager .e-fe-grid::before,
|
179
165
|
.e-fe-popup .e-fe-grid::before {
|
180
|
-
content:
|
166
|
+
content: "\e77e";
|
181
167
|
}
|
182
|
-
|
183
168
|
.e-filemanager .e-fe-large::before,
|
184
169
|
.e-fe-popup .e-fe-large::before {
|
185
|
-
content:
|
170
|
+
content: "\e82d";
|
186
171
|
}
|
187
|
-
|
188
172
|
.e-filemanager .e-fe-select::before,
|
189
173
|
.e-fe-popup .e-fe-select::before {
|
190
|
-
content:
|
174
|
+
content: "\e78e";
|
191
175
|
}
|
192
|
-
|
193
176
|
.e-filemanager .e-fe-details::before,
|
194
177
|
.e-fe-popup .e-fe-details::before {
|
195
|
-
content:
|
178
|
+
content: "\e800";
|
196
179
|
}
|
197
|
-
|
198
180
|
.e-filemanager .e-fe-sort::before,
|
199
181
|
.e-fe-popup .e-fe-sort::before {
|
200
|
-
content:
|
182
|
+
content: "\e87c";
|
201
183
|
}
|
202
|
-
|
203
184
|
.e-filemanager .e-fe-search::before,
|
204
185
|
.e-fe-popup .e-fe-search::before {
|
205
|
-
content:
|
186
|
+
content: "\e754";
|
206
187
|
}
|
207
|
-
|
208
188
|
.e-filemanager .e-fe-clear::before,
|
209
189
|
.e-fe-popup .e-fe-clear::before {
|
210
|
-
content:
|
190
|
+
content: "\e7e7";
|
211
191
|
}
|
212
|
-
|
213
192
|
.e-filemanager .e-fe-breadcrumb::before,
|
214
193
|
.e-fe-popup .e-fe-breadcrumb::before {
|
215
|
-
content:
|
194
|
+
content: "\e71c";
|
216
195
|
}
|
217
|
-
|
218
196
|
.e-filemanager .e-fe-drop-in::before,
|
219
197
|
.e-fe-popup .e-fe-drop-in::before {
|
220
|
-
content:
|
198
|
+
content: "\e768";
|
221
199
|
}
|
222
|
-
|
223
200
|
.e-filemanager .e-fe-drop-out::before,
|
224
201
|
.e-fe-popup .e-fe-drop-out::before {
|
225
|
-
content:
|
202
|
+
content: "\e736";
|
226
203
|
}
|
227
|
-
|
228
204
|
.e-filemanager .e-fe-no-drop::before,
|
229
205
|
.e-fe-popup .e-fe-no-drop::before {
|
230
|
-
content:
|
206
|
+
content: "\e839";
|
231
207
|
}
|
232
|
-
|
233
208
|
.e-filemanager .e-toolbar .e-hor-nav .e-popup-up-icon::before,
|
234
209
|
.e-fe-popup .e-toolbar .e-hor-nav .e-popup-up-icon::before {
|
235
|
-
content:
|
210
|
+
content: "\e770";
|
236
211
|
}
|
237
|
-
|
238
212
|
.e-filemanager .e-toolbar .e-hor-nav .e-popup-down-icon::before,
|
239
213
|
.e-fe-popup .e-toolbar .e-hor-nav .e-popup-down-icon::before {
|
240
|
-
content:
|
214
|
+
content: "\e770";
|
241
215
|
}
|
242
|
-
|
243
216
|
.e-filemanager.e-fe-m-filter .e-fe-search::before,
|
244
217
|
.e-fe-popup.e-fe-m-filter .e-fe-search::before {
|
245
|
-
content:
|
218
|
+
content: "\e773";
|
246
219
|
}
|
247
220
|
|
248
221
|
.e-fe-popup .e-fe-dot::before {
|
249
|
-
content:
|
222
|
+
content: "\e774";
|
250
223
|
}
|
251
|
-
|
252
224
|
.e-fe-popup .e-fe-tick::before {
|
253
|
-
content:
|
225
|
+
content: "\e774";
|
254
226
|
}
|
255
227
|
|
228
|
+
/* stylelint-disable property-no-vendor-prefix */
|
256
229
|
ejs-filemanager {
|
257
230
|
display: block;
|
258
231
|
}
|
259
232
|
|
260
233
|
.e-filemanager {
|
234
|
+
-moz-user-select: none;
|
261
235
|
-ms-user-select: none;
|
262
236
|
-webkit-user-select: none;
|
263
237
|
user-select: none;
|
264
238
|
border: 1px solid;
|
265
239
|
position: relative;
|
266
240
|
}
|
267
|
-
|
268
241
|
.e-filemanager .e-blur {
|
269
|
-
opacity: .5;
|
270
|
-
}
|
271
|
-
|
272
|
-
.e-filemanager .e-display-none {
|
273
|
-
display: none;
|
242
|
+
opacity: 0.5;
|
274
243
|
}
|
275
|
-
|
276
|
-
|
277
|
-
.e-filemanager.e-fe-drop .e-treeview .e-text-content,
|
278
|
-
.e-filemanager.e-fe-drop .e-treeview .e-fullrow,
|
279
|
-
.e-filemanager.e-fe-drop .e-address .e-address-list-item:last-child .e-list-text,
|
280
|
-
.e-filemanager.e-fe-drop .e-grid .e-columnheader {
|
244
|
+
.e-filemanager.e-fe-drop, .e-filemanager.e-fe-drop .e-treeview .e-text-content, .e-filemanager.e-fe-drop .e-treeview .e-fullrow, .e-filemanager.e-fe-drop .e-address .e-address-list-item:last-child .e-list-text, .e-filemanager.e-fe-drop .e-grid .e-columnheader {
|
245
|
+
cursor: -webkit-grab;
|
281
246
|
cursor: grab;
|
282
247
|
}
|
283
|
-
|
284
248
|
.e-filemanager.e-no-drop {
|
285
249
|
cursor: no-drop;
|
286
250
|
}
|
287
|
-
|
288
251
|
.e-filemanager .e-toolbar {
|
289
252
|
border-bottom-style: solid;
|
290
253
|
border-width: 0 0 1px;
|
291
254
|
}
|
292
|
-
|
293
255
|
.e-filemanager .e-toolbar .e-toolbar-items .e-toolbar-item .e-dropdown-btn.e-btn.e-tbar-btn {
|
294
256
|
border: 0;
|
295
|
-
box-shadow: none;
|
296
|
-
|
257
|
+
-webkit-box-shadow: none;
|
258
|
+
box-shadow: none;
|
259
|
+
font-weight: normal;
|
297
260
|
height: calc(100% - 18px);
|
298
261
|
padding: 0;
|
299
262
|
}
|
300
|
-
|
301
263
|
.e-filemanager .e-toolbar .e-toolbar-items .e-toolbar-item .e-dropdown-btn.e-btn.e-tbar-btn .e-btn-icon.e-icons:not(.e-icon-left):not(.e-icon-right) {
|
302
264
|
padding: 0;
|
303
265
|
}
|
304
|
-
|
305
266
|
.e-filemanager .e-toolbar .e-toolbar-items .e-toolbar-item .e-dropdown-btn.e-btn.e-tbar-btn .e-btn-icon.e-icons.e-caret {
|
306
267
|
font-size: 8px;
|
307
268
|
padding: 0 8px;
|
308
269
|
}
|
309
|
-
|
310
270
|
.e-filemanager .e-toolbar .e-toolbar-items .e-toolbar-item .e-dropdown-btn.e-btn.e-tbar-btn .e-tbar-btn-text.e-tbar-ddb-text {
|
311
271
|
padding-right: 0;
|
312
272
|
}
|
313
|
-
|
314
|
-
.e-filemanager .e-toolbar .e-toolbar-items .e-toolbar-item .e-dropdown-btn.e-btn.e-tbar-btn.e-active {
|
315
|
-
border: 0;
|
316
|
-
padding: 0;
|
317
|
-
}
|
318
|
-
|
319
|
-
.e-filemanager .e-toolbar .e-toolbar-items .e-toolbar-item .e-dropdown-btn.e-btn.e-tbar-btn:hover {
|
320
|
-
border: 0;
|
321
|
-
padding: 0;
|
322
|
-
}
|
323
|
-
|
324
|
-
.e-filemanager .e-toolbar .e-toolbar-items .e-toolbar-item .e-dropdown-btn.e-btn.e-tbar-btn:focus {
|
273
|
+
.e-filemanager .e-toolbar .e-toolbar-items .e-toolbar-item .e-dropdown-btn.e-btn.e-tbar-btn.e-active, .e-filemanager .e-toolbar .e-toolbar-items .e-toolbar-item .e-dropdown-btn.e-btn.e-tbar-btn:hover, .e-filemanager .e-toolbar .e-toolbar-items .e-toolbar-item .e-dropdown-btn.e-btn.e-tbar-btn:focus {
|
325
274
|
border: 0;
|
326
275
|
padding: 0;
|
327
276
|
}
|
328
|
-
|
329
277
|
.e-filemanager .e-toolbar .e-toolbar-pop .e-toolbar-item .e-dropdown-btn .e-icons.e-caret {
|
330
278
|
font-size: 8px;
|
331
279
|
min-width: 0;
|
332
280
|
padding: 0 8px;
|
333
281
|
}
|
334
|
-
|
335
282
|
.e-filemanager .e-toolbar .e-toolbar-pop .e-toolbar-item .e-dropdown-btn .e-tbar-btn-text.e-tbar-ddb-text {
|
336
283
|
padding-right: 0;
|
337
284
|
}
|
338
|
-
|
339
285
|
.e-filemanager .e-toolbar .e-toolbar-pop {
|
286
|
+
width: -webkit-max-content;
|
287
|
+
width: -moz-max-content;
|
340
288
|
width: max-content;
|
341
289
|
}
|
342
|
-
|
343
290
|
.e-filemanager .e-treeview > .e-ul {
|
344
291
|
overflow: initial;
|
345
292
|
padding-left: 8px;
|
346
293
|
}
|
347
|
-
|
348
|
-
.e-filemanager .e-treeview .e-icons .e-treeview-spinner {
|
349
|
-
display: none;
|
350
|
-
}
|
351
|
-
|
352
294
|
.e-filemanager .e-treeview .e-list-parent {
|
353
295
|
margin-bottom: 0;
|
354
296
|
margin-top: 0;
|
355
297
|
}
|
356
|
-
|
357
298
|
.e-filemanager .e-treeview .e-list-parent .e-list-item {
|
358
299
|
padding-bottom: 0;
|
359
300
|
padding-top: 0;
|
360
301
|
}
|
361
|
-
|
362
302
|
.e-filemanager .e-treeview .e-list-parent .e-list-item .e-fullrow {
|
363
303
|
height: 38px;
|
364
304
|
}
|
365
|
-
|
366
305
|
.e-filemanager .e-treeview .e-list-parent .e-list-item .e-list-text {
|
367
306
|
height: 36px;
|
368
307
|
line-height: 36px;
|
369
308
|
}
|
370
|
-
|
371
309
|
.e-filemanager .e-treeview .e-list-parent .e-list-item.e-fe-drop-folder > .e-fullrow {
|
372
310
|
border: 1px solid;
|
373
|
-
box-sizing: border-box;
|
311
|
+
-webkit-box-sizing: border-box;
|
312
|
+
box-sizing: border-box;
|
374
313
|
}
|
375
|
-
|
376
314
|
.e-filemanager .e-treeview .e-text-content {
|
377
315
|
overflow: hidden;
|
378
316
|
text-overflow: ellipsis;
|
379
317
|
white-space: nowrap;
|
380
318
|
}
|
381
|
-
|
382
319
|
.e-filemanager .e-treeview .e-list-text {
|
383
320
|
display: initial;
|
384
321
|
}
|
385
|
-
|
386
322
|
.e-filemanager .e-splitter {
|
387
323
|
border-width: 0;
|
388
324
|
}
|
389
|
-
|
390
|
-
.e-filemanager .e-splitter .e-split-bar .e-resize-handler {
|
391
|
-
display: none;
|
392
|
-
}
|
393
|
-
|
394
|
-
.e-filemanager .e-splitter .e-display-none {
|
395
|
-
display: none;
|
396
|
-
}
|
397
|
-
|
398
325
|
.e-filemanager .e-address {
|
399
326
|
border-bottom: 1px solid;
|
400
327
|
height: 40px;
|
401
328
|
position: relative;
|
402
329
|
}
|
403
|
-
|
404
330
|
.e-filemanager .e-address .e-fe-breadcrumb.e-icons {
|
405
331
|
padding-bottom: 6px;
|
406
332
|
}
|
407
|
-
|
408
333
|
.e-filemanager .e-address .e-search-wrap {
|
409
334
|
float: right;
|
410
335
|
padding: 4px 8px 5px 0;
|
@@ -413,35 +338,29 @@ ejs-filemanager {
|
|
413
338
|
top: 0;
|
414
339
|
width: 200px;
|
415
340
|
}
|
416
|
-
|
417
341
|
.e-filemanager .e-address .e-search-wrap .e-input-group {
|
418
342
|
border-bottom-width: 1px;
|
419
343
|
height: 32px;
|
420
344
|
margin: 0;
|
421
345
|
}
|
422
|
-
|
423
346
|
.e-filemanager .e-address .e-search-wrap .e-input-group .e-input {
|
424
347
|
margin: 0 0 0 38px;
|
425
348
|
padding: 0;
|
426
349
|
}
|
427
|
-
|
428
350
|
.e-filemanager .e-address .e-search-wrap .e-input-group .e-clear-icon {
|
429
351
|
margin: 0;
|
430
352
|
padding: 10px;
|
431
353
|
}
|
432
|
-
|
433
354
|
.e-filemanager .e-address .e-fe-search {
|
434
|
-
font-size:
|
435
|
-
margin:
|
355
|
+
font-size: 16px;
|
356
|
+
margin: 4px;
|
436
357
|
padding: 5px;
|
437
358
|
position: absolute;
|
438
359
|
z-index: 1;
|
439
360
|
}
|
440
|
-
|
441
361
|
.e-filemanager .e-address .e-fe-search::before {
|
442
362
|
display: inline-block;
|
443
363
|
}
|
444
|
-
|
445
364
|
.e-filemanager .e-address .e-addressbar-ul {
|
446
365
|
overflow: hidden;
|
447
366
|
text-overflow: ellipsis;
|
@@ -449,17 +368,13 @@ ejs-filemanager {
|
|
449
368
|
list-style: none;
|
450
369
|
margin: 0;
|
451
370
|
padding: 9px 8px 9px 8px;
|
452
|
-
visibility: visible;
|
453
371
|
}
|
454
|
-
|
455
372
|
.e-filemanager .e-address .e-addressbar-ul .e-breadcrumb-menu {
|
456
373
|
display: inline;
|
457
374
|
}
|
458
|
-
|
459
375
|
.e-filemanager .e-address .e-addressbar-ul .e-breadcrumb-menu .e-breadcrumb-submenu {
|
460
376
|
height: 26px;
|
461
377
|
}
|
462
|
-
|
463
378
|
.e-filemanager .e-address .e-list-text {
|
464
379
|
cursor: pointer;
|
465
380
|
font-size: 12px;
|
@@ -467,305 +382,240 @@ ejs-filemanager {
|
|
467
382
|
padding: 0;
|
468
383
|
text-decoration: none;
|
469
384
|
}
|
470
|
-
|
471
385
|
.e-filemanager .e-address .e-list-text:hover {
|
472
386
|
text-decoration: none;
|
473
387
|
}
|
474
|
-
|
475
388
|
.e-filemanager .e-address .e-address-list-item {
|
476
389
|
display: inline-block;
|
477
390
|
height: 22px;
|
478
391
|
}
|
479
|
-
|
480
392
|
.e-filemanager .e-address .e-address-list-item:last-child .e-list-text {
|
481
393
|
cursor: default;
|
482
394
|
}
|
483
|
-
|
484
395
|
.e-filemanager .e-address .e-address-list-item:last-child .e-list-text:hover {
|
485
396
|
text-decoration: none;
|
486
397
|
}
|
487
|
-
|
488
398
|
.e-filemanager .e-address .e-address-list-item .e-icons {
|
489
399
|
font-size: 8px;
|
490
400
|
margin: 16px 14px;
|
491
401
|
}
|
492
|
-
|
493
402
|
.e-filemanager .e-address .e-address-list-item .e-icons::before {
|
494
403
|
padding: 5px;
|
495
404
|
}
|
496
|
-
|
497
405
|
.e-filemanager .e-view-container .e-grid .e-gridcontent .e-emptyrow {
|
498
406
|
display: table-row;
|
499
407
|
}
|
500
|
-
|
501
408
|
.e-filemanager .e-grid {
|
502
409
|
border-width: 0;
|
503
410
|
float: left;
|
504
411
|
}
|
505
|
-
|
506
412
|
.e-filemanager .e-grid .e-checkbox-wrapper .e-frame {
|
507
413
|
border-width: 1px;
|
508
414
|
line-height: 16px;
|
509
415
|
}
|
510
|
-
|
511
|
-
.e-filemanager .e-grid .e-spin-show {
|
512
|
-
display: none;
|
513
|
-
}
|
514
|
-
|
515
416
|
.e-filemanager .e-grid .e-gridcontent tr.e-emptyrow td.e-lastrowcell:first-child:empty {
|
516
417
|
height: 0;
|
517
418
|
padding: 0;
|
518
419
|
}
|
519
|
-
|
520
420
|
.e-filemanager .e-grid .e-gridheader {
|
521
421
|
border-width: 0 1px 1px;
|
522
422
|
}
|
523
|
-
|
524
423
|
.e-filemanager .e-grid .e-gridheader .e-headercell {
|
525
424
|
height: 36px;
|
526
425
|
}
|
527
|
-
|
528
426
|
.e-filemanager .e-grid .e-gridheader .e-headercell.e-fe-grid-icon .e-sortfilterdiv {
|
529
427
|
margin-right: 0;
|
530
428
|
}
|
531
|
-
|
532
429
|
.e-filemanager .e-grid .e-gridheader .e-headercell .e-headertext {
|
533
430
|
font-size: 14px;
|
534
431
|
}
|
535
|
-
|
536
432
|
.e-filemanager .e-grid .e-gridheader .e-headercell .e-rcursor {
|
537
433
|
border: 0;
|
538
434
|
}
|
539
|
-
|
540
435
|
.e-filemanager .e-grid .e-gridheader .e-checkbox-wrapper {
|
541
436
|
visibility: hidden;
|
542
437
|
}
|
543
|
-
|
544
438
|
.e-filemanager .e-grid .e-gridheader:hover .e-checkbox-wrapper,
|
545
439
|
.e-filemanager .e-grid .e-gridheader .e-active .e-checkbox-wrapper {
|
546
440
|
visibility: visible;
|
547
441
|
}
|
548
|
-
|
549
442
|
.e-filemanager .e-grid.e-headercheck .e-gridheader .e-headercontent .e-checkbox-wrapper {
|
550
443
|
visibility: visible;
|
551
444
|
}
|
552
|
-
|
553
445
|
.e-filemanager .e-grid .e-checkbox-wrapper:hover .e-frame {
|
554
446
|
font-size: 10px;
|
555
447
|
}
|
556
|
-
|
557
448
|
.e-filemanager .e-grid .e-content {
|
558
|
-
overflow-y: auto !important;
|
449
|
+
overflow-y: auto !important; /* stylelint-disable-line declaration-no-important */
|
559
450
|
}
|
560
|
-
|
561
451
|
.e-filemanager .e-grid .e-content .e-table {
|
562
452
|
border-spacing: 0;
|
563
453
|
}
|
564
|
-
|
565
454
|
.e-filemanager .e-grid .e-content .e-rowcell {
|
566
455
|
border: 0;
|
567
456
|
font-size: 14px;
|
568
457
|
padding: 8px;
|
569
458
|
}
|
570
|
-
|
571
|
-
.e-filemanager .e-grid .e-content .e-rowcell .e-fe-text {
|
572
|
-
font-size: 14px;
|
573
|
-
}
|
574
|
-
|
575
459
|
.e-filemanager .e-grid .e-content tr.e-row.e-fe-drop-folder .e-rowcell:first-child {
|
576
|
-
box-shadow: 1px 0 0 1px #0078d4 inset;
|
460
|
+
-webkit-box-shadow: 1px 0 0 1px #0078d4 inset;
|
461
|
+
box-shadow: 1px 0 0 1px #0078d4 inset;
|
577
462
|
}
|
578
|
-
|
579
463
|
.e-filemanager .e-grid .e-content tr.e-row.e-fe-drop-folder .e-rowcell:last-child {
|
580
|
-
box-shadow: -1px 0 0 1px #0078d4 inset;
|
464
|
+
-webkit-box-shadow: -1px 0 0 1px #0078d4 inset;
|
465
|
+
box-shadow: -1px 0 0 1px #0078d4 inset;
|
581
466
|
}
|
582
|
-
|
583
467
|
.e-filemanager .e-grid .e-content tr.e-row.e-fe-drop-folder .e-rowcell {
|
584
|
-
box-shadow: 0 2px 0 -1px #0078d4 inset, 0 -2px 0 -1px #0078d4 inset;
|
468
|
+
-webkit-box-shadow: 0 2px 0 -1px #0078d4 inset, 0 -2px 0 -1px #0078d4 inset;
|
469
|
+
box-shadow: 0 2px 0 -1px #0078d4 inset, 0 -2px 0 -1px #0078d4 inset;
|
585
470
|
}
|
586
|
-
|
587
471
|
.e-filemanager .e-grid .e-empty {
|
588
472
|
min-width: 200px;
|
589
473
|
}
|
590
|
-
|
591
474
|
.e-filemanager .e-grid .e-empty-content {
|
592
475
|
font-size: 14px;
|
593
476
|
margin: 0 auto;
|
594
477
|
padding: 8px 0 8px 0;
|
595
478
|
text-align: center;
|
596
479
|
}
|
597
|
-
|
598
480
|
.e-filemanager .e-grid .e-empty-icon {
|
599
481
|
height: 52px;
|
600
482
|
margin: 0 auto;
|
601
483
|
width: 52px;
|
602
484
|
}
|
603
|
-
|
604
485
|
.e-filemanager .e-grid .e-empty-inner-content {
|
605
486
|
font-size: 14px;
|
606
487
|
margin: 0 auto;
|
607
|
-
opacity: 0.5;
|
608
488
|
padding: 0;
|
609
489
|
text-align: center;
|
490
|
+
opacity: 0.5;
|
610
491
|
}
|
611
|
-
|
612
492
|
.e-filemanager .e-grid .e-gridpopup {
|
613
|
-
display: none !important;
|
614
|
-
}
|
615
|
-
|
616
|
-
.e-filemanager .e-grid .e-gridheader .e-emptyrow,
|
617
|
-
.e-filemanager .e-grid .e-gridcontent .e-emptyrow {
|
618
|
-
display: none;
|
493
|
+
display: none !important; /* stylelint-disable-line declaration-no-important */
|
619
494
|
}
|
620
|
-
|
621
495
|
.e-filemanager .e-grid .e-gridheader .e-fe-checkbox,
|
622
496
|
.e-filemanager .e-grid .e-gridcontent .e-fe-checkbox {
|
623
497
|
overflow: inherit;
|
624
498
|
padding-left: 5px;
|
625
499
|
padding-right: 0;
|
500
|
+
-webkit-box-shadow: none;
|
501
|
+
box-shadow: none;
|
626
502
|
}
|
627
|
-
|
628
503
|
.e-filemanager .e-grid .e-gridheader .e-fe-grid-icon,
|
629
504
|
.e-filemanager .e-grid .e-gridcontent .e-fe-grid-icon {
|
630
505
|
padding: 0 0 0 12px;
|
631
506
|
}
|
632
|
-
|
633
507
|
.e-filemanager .e-grid .e-gridheader .e-fe-grid-icon .e-headercelldiv,
|
634
508
|
.e-filemanager .e-grid .e-gridcontent .e-fe-grid-icon .e-headercelldiv {
|
635
509
|
text-overflow: unset;
|
636
510
|
}
|
637
|
-
|
638
|
-
.e-filemanager .e-grid .e-gridheader .e-fe-grid-icon + .e-rowcell,
|
639
|
-
.e-filemanager .e-grid .e-gridheader .e-fe-grid-icon + .e-headercell,
|
511
|
+
.e-filemanager .e-grid .e-gridheader .e-fe-grid-icon + .e-rowcell, .e-filemanager .e-grid .e-gridheader .e-fe-grid-icon + .e-headercell,
|
640
512
|
.e-filemanager .e-grid .e-gridcontent .e-fe-grid-icon + .e-rowcell,
|
641
513
|
.e-filemanager .e-grid .e-gridcontent .e-fe-grid-icon + .e-headercell {
|
642
514
|
padding-left: 0;
|
643
515
|
}
|
644
|
-
|
645
|
-
.e-filemanager .e-grid .e-gridheader .e-fe-grid-icon + .e-rowcell.e-fe-grid-name,
|
646
|
-
.e-filemanager .e-grid .e-gridheader .e-fe-grid-icon + .e-headercell.e-fe-grid-name,
|
516
|
+
.e-filemanager .e-grid .e-gridheader .e-fe-grid-icon + .e-rowcell.e-fe-grid-name, .e-filemanager .e-grid .e-gridheader .e-fe-grid-icon + .e-headercell.e-fe-grid-name,
|
647
517
|
.e-filemanager .e-grid .e-gridcontent .e-fe-grid-icon + .e-rowcell.e-fe-grid-name,
|
648
518
|
.e-filemanager .e-grid .e-gridcontent .e-fe-grid-icon + .e-headercell.e-fe-grid-name {
|
649
519
|
padding-left: 6px;
|
650
520
|
}
|
651
|
-
|
652
521
|
.e-filemanager .e-grid .e-row .e-checkbox-wrapper {
|
653
522
|
visibility: hidden;
|
654
523
|
}
|
655
|
-
|
656
524
|
.e-filemanager .e-grid .e-row.e-focused {
|
657
|
-
box-shadow: none;
|
525
|
+
-webkit-box-shadow: none;
|
526
|
+
box-shadow: none;
|
658
527
|
}
|
659
|
-
|
660
528
|
.e-filemanager .e-grid .e-row:hover .e-checkbox-wrapper,
|
661
529
|
.e-filemanager .e-grid .e-row .e-active .e-checkbox-wrapper {
|
662
530
|
visibility: visible;
|
663
531
|
}
|
664
|
-
|
665
532
|
.e-filemanager .e-grid .e-row.e-fe-drop-file:hover .e-checkbox-wrapper {
|
666
533
|
visibility: hidden;
|
667
534
|
}
|
668
|
-
|
669
535
|
.e-filemanager .e-grid.e-horizontallines .e-rowcell.e-lastrowcell, .e-filemanager .e-grid.e-verticallines .e-rowcell.e-lastrowcell, .e-filemanager .e-grid.e-hidelines .e-rowcell.e-lastrowcell {
|
670
536
|
border-bottom-width: 0;
|
671
537
|
}
|
672
|
-
|
673
538
|
.e-filemanager .e-grid.e-resize-lines .e-headercell .e-rsuppress {
|
674
539
|
border-width: 0;
|
675
540
|
}
|
676
|
-
|
677
541
|
.e-filemanager .e-grid .e-fe-icon {
|
678
542
|
display: inline-block;
|
679
543
|
height: 20px;
|
680
544
|
margin: 0;
|
681
|
-
vertical-align: middle;
|
682
545
|
width: 20px;
|
546
|
+
vertical-align: middle;
|
683
547
|
}
|
684
|
-
|
685
548
|
.e-filemanager .e-view-container .e-grid .e-gridheader {
|
686
|
-
padding-right: 0 !important;
|
549
|
+
padding-right: 0 !important; /* stylelint-disable-line declaration-no-important */
|
687
550
|
}
|
688
|
-
|
689
551
|
.e-filemanager.e-rtl .e-view-container .e-grid .e-gridheader {
|
690
|
-
padding-left: 0 !important;
|
552
|
+
padding-left: 0 !important; /* stylelint-disable-line declaration-no-important */
|
691
553
|
}
|
692
|
-
|
693
554
|
.e-filemanager .e-large-icons {
|
694
555
|
float: left;
|
695
556
|
overflow: auto;
|
696
557
|
width: 100%;
|
558
|
+
height: calc(100% - 40px);
|
697
559
|
}
|
698
|
-
|
699
560
|
.e-filemanager .e-large-icons .e-checkbox-wrapper .e-frame {
|
700
561
|
border-width: 1px;
|
701
562
|
line-height: 16px;
|
702
563
|
}
|
703
|
-
|
704
564
|
.e-filemanager .e-large-icons .e-empty {
|
705
565
|
min-width: 200px;
|
706
566
|
}
|
707
|
-
|
708
567
|
.e-filemanager .e-large-icons .e-empty-content {
|
709
568
|
font-size: 14px;
|
710
569
|
margin: 0 auto;
|
711
570
|
padding: 8px 0 8px 0;
|
712
571
|
text-align: center;
|
713
572
|
}
|
714
|
-
|
715
573
|
.e-filemanager .e-large-icons .e-empty-icon {
|
716
574
|
height: 52px;
|
717
575
|
margin: 0 auto;
|
718
576
|
width: 52px;
|
719
577
|
}
|
720
|
-
|
721
578
|
.e-filemanager .e-large-icons .e-empty-inner-content {
|
722
579
|
font-size: 14px;
|
723
580
|
margin: 0 auto;
|
724
|
-
opacity: 0.5;
|
725
581
|
padding: 0;
|
726
582
|
text-align: center;
|
583
|
+
opacity: 0.5;
|
727
584
|
}
|
728
|
-
|
729
585
|
.e-filemanager .e-large-icons .e-list-parent {
|
730
586
|
display: block;
|
731
587
|
height: 100%;
|
732
588
|
margin: 0;
|
733
|
-
overflow: auto;
|
734
589
|
padding: 0 12px;
|
590
|
+
overflow: auto;
|
735
591
|
}
|
736
|
-
|
737
592
|
.e-filemanager .e-large-icons .e-checkbox-wrapper {
|
738
593
|
float: left;
|
739
594
|
position: absolute;
|
740
595
|
top: 0;
|
741
596
|
visibility: hidden;
|
742
597
|
}
|
743
|
-
|
744
598
|
.e-filemanager .e-large-icons .e-list-item {
|
745
599
|
border: 1px solid;
|
746
600
|
float: left;
|
747
601
|
height: 94px;
|
748
602
|
margin: 12px 8px;
|
603
|
+
width: 94px;
|
749
604
|
overflow: hidden;
|
750
605
|
padding: 2px;
|
751
|
-
width: 94px;
|
752
606
|
}
|
753
|
-
|
754
607
|
.e-filemanager .e-large-icons .e-list-item.e-fe-drop-folder {
|
755
608
|
border: 2px dashed #0078d4;
|
756
609
|
}
|
757
|
-
|
758
|
-
.e-filemanager .e-large-icons .e-list-item.e-active .e-checkbox-wrapper, .e-filemanager .e-large-icons .e-list-item.e-hover .e-checkbox-wrapper {
|
610
|
+
.e-filemanager .e-large-icons .e-list-item.e-active .e-checkbox-wrapper, .e-filemanager .e-large-icons .e-list-item.e-hover .e-checkbox-wrapper, .e-filemanager .e-large-icons .e-list-item:hover .e-checkbox-wrapper {
|
759
611
|
visibility: visible;
|
760
612
|
}
|
761
|
-
|
762
613
|
.e-filemanager .e-large-icons .e-text-content {
|
763
614
|
display: table-cell;
|
764
615
|
height: 74px;
|
765
616
|
position: relative;
|
766
617
|
vertical-align: bottom;
|
767
618
|
}
|
768
|
-
|
769
619
|
.e-filemanager .e-large-icons .e-list-text {
|
770
620
|
overflow: hidden;
|
771
621
|
text-overflow: ellipsis;
|
@@ -776,38 +626,45 @@ ejs-filemanager {
|
|
776
626
|
text-align: center;
|
777
627
|
width: 90px;
|
778
628
|
}
|
779
|
-
|
780
629
|
.e-filemanager .e-large-icons .e-list-img {
|
781
630
|
border: 2px solid;
|
782
|
-
box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.05);
|
631
|
+
-webkit-box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.05);
|
632
|
+
box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.05);
|
783
633
|
display: block;
|
784
634
|
margin: 0 auto;
|
785
635
|
max-height: 40px;
|
786
636
|
max-width: 100%;
|
787
637
|
min-height: 20px;
|
788
638
|
}
|
789
|
-
|
790
639
|
.e-filemanager .e-large-icons .e-list-icon {
|
791
640
|
display: block;
|
792
641
|
height: 40px;
|
793
642
|
margin: 18px 25px 8px;
|
794
643
|
width: 40px;
|
795
644
|
}
|
796
|
-
|
645
|
+
.e-filemanager.e-drag-select {
|
646
|
+
position: absolute;
|
647
|
+
background-color: #0078d4;
|
648
|
+
opacity: 0.3;
|
649
|
+
border: none;
|
650
|
+
width: 0;
|
651
|
+
height: 0;
|
652
|
+
z-index: 1;
|
653
|
+
}
|
797
654
|
.e-filemanager .e-fe-clone {
|
798
655
|
pointer-events: none;
|
799
656
|
z-index: 20;
|
800
657
|
}
|
801
|
-
|
802
658
|
.e-filemanager .e-fe-clone .e-fe-content {
|
803
659
|
border: none;
|
804
|
-
box-shadow: 0 1.6px 3.6px 0 rgba(0, 0, 0, 0.132), 0 0.3px 0.9px 0 rgba(0, 0, 0, 0.108);
|
660
|
+
-webkit-box-shadow: 0 1.6px 3.6px 0 rgba(0, 0, 0, 0.132), 0 0.3px 0.9px 0 rgba(0, 0, 0, 0.108);
|
661
|
+
box-shadow: 0 1.6px 3.6px 0 rgba(0, 0, 0, 0.132), 0 0.3px 0.9px 0 rgba(0, 0, 0, 0.108);
|
662
|
+
display: -webkit-inline-box;
|
805
663
|
display: -ms-inline-flexbox;
|
806
664
|
display: inline-flex;
|
807
665
|
height: 36px;
|
808
666
|
padding: 4px 8px;
|
809
667
|
}
|
810
|
-
|
811
668
|
.e-filemanager .e-fe-clone .e-fe-content .e-fe-name {
|
812
669
|
display: inline-block;
|
813
670
|
font-size: 13px;
|
@@ -817,152 +674,134 @@ ejs-filemanager {
|
|
817
674
|
text-overflow: ellipsis;
|
818
675
|
white-space: nowrap;
|
819
676
|
}
|
820
|
-
|
821
677
|
.e-filemanager .e-fe-clone .e-fe-content .e-fe-icon {
|
822
678
|
display: inline-block;
|
823
679
|
height: 18px;
|
824
680
|
margin: auto 8px;
|
825
681
|
width: 18px;
|
826
682
|
}
|
827
|
-
|
828
683
|
.e-filemanager .e-fe-clone .e-fe-count {
|
829
684
|
border: 1px solid;
|
830
685
|
border-radius: 50%;
|
831
686
|
font-size: 12px;
|
832
687
|
height: 22px;
|
688
|
+
width: 22px;
|
833
689
|
line-height: 22px;
|
834
690
|
margin-left: -12px;
|
835
|
-
|
836
|
-
position: absolute;
|
691
|
+
position: relative;
|
837
692
|
text-align: center;
|
838
693
|
top: 0;
|
839
694
|
}
|
840
|
-
|
841
695
|
.e-filemanager.e-rtl .e-treeview > .e-ul {
|
842
696
|
padding: 0 8px 0 0;
|
843
697
|
}
|
844
|
-
|
845
698
|
.e-filemanager.e-rtl .e-toolbar .e-fe-grid {
|
846
699
|
display: inline-table;
|
847
|
-
transform: rotate(180deg);
|
700
|
+
-webkit-transform: rotate(180deg);
|
701
|
+
transform: rotate(180deg);
|
702
|
+
}
|
703
|
+
.e-filemanager.e-rtl .e-toolbar .e-toolbar-items .e-toolbar-right .e-toolbar-item .e-dropdown-btn .e-icon-left {
|
704
|
+
line-height: 16px;
|
848
705
|
}
|
849
|
-
|
850
706
|
.e-filemanager.e-rtl .e-splitter.e-splitter-horizontal {
|
851
707
|
-ms-flex-direction: row-reverse;
|
852
|
-
|
708
|
+
-webkit-box-orient: horizontal;
|
709
|
+
-webkit-box-direction: reverse;
|
710
|
+
flex-direction: row-reverse;
|
853
711
|
}
|
854
|
-
|
855
712
|
.e-filemanager.e-rtl .e-address .e-search-wrap {
|
856
713
|
float: left;
|
857
714
|
left: 0;
|
858
715
|
right: auto;
|
859
716
|
}
|
860
|
-
|
861
717
|
.e-filemanager.e-rtl .e-address .e-search-wrap .e-input-group .e-input {
|
862
718
|
margin: 0 24px 0 0;
|
863
719
|
padding: 0;
|
864
720
|
}
|
865
|
-
|
866
721
|
.e-filemanager.e-rtl .e-address .e-addressbar-ul {
|
722
|
+
display: -webkit-box;
|
867
723
|
display: -ms-flexbox;
|
868
724
|
display: flex;
|
869
725
|
}
|
870
|
-
|
871
726
|
.e-filemanager.e-rtl .e-address .e-addressbar-ul .e-icons::before {
|
872
727
|
display: inline-block;
|
873
|
-
transform: rotate(180deg);
|
728
|
+
-webkit-transform: rotate(180deg);
|
729
|
+
transform: rotate(180deg);
|
874
730
|
}
|
875
|
-
|
876
731
|
.e-filemanager.e-rtl .e-grid.e-rtl .e-gridheader .e-fe-checkbox,
|
877
732
|
.e-filemanager.e-rtl .e-grid.e-rtl .e-gridcontent .e-fe-checkbox {
|
878
733
|
padding-left: 0;
|
879
734
|
padding-right: 12px;
|
880
735
|
}
|
881
|
-
|
882
736
|
.e-filemanager.e-rtl .e-grid.e-rtl .e-gridheader .e-fe-grid-icon,
|
883
737
|
.e-filemanager.e-rtl .e-grid.e-rtl .e-gridcontent .e-fe-grid-icon {
|
884
738
|
padding-left: 0;
|
885
739
|
padding-right: 12px;
|
886
740
|
}
|
887
|
-
|
888
|
-
.e-filemanager.e-rtl .e-grid.e-rtl .e-gridheader .e-fe-grid-icon + .e-rowcell,
|
889
|
-
.e-filemanager.e-rtl .e-grid.e-rtl .e-gridheader .e-fe-grid-icon + .e-headercell,
|
741
|
+
.e-filemanager.e-rtl .e-grid.e-rtl .e-gridheader .e-fe-grid-icon + .e-rowcell, .e-filemanager.e-rtl .e-grid.e-rtl .e-gridheader .e-fe-grid-icon + .e-headercell,
|
890
742
|
.e-filemanager.e-rtl .e-grid.e-rtl .e-gridcontent .e-fe-grid-icon + .e-rowcell,
|
891
743
|
.e-filemanager.e-rtl .e-grid.e-rtl .e-gridcontent .e-fe-grid-icon + .e-headercell {
|
892
744
|
padding-left: 21px;
|
893
745
|
padding-right: 0;
|
894
746
|
}
|
895
|
-
|
896
|
-
.e-filemanager.e-rtl .e-grid.e-rtl .e-gridheader .e-fe-grid-icon + .e-rowcell.e-fe-grid-name,
|
897
|
-
.e-filemanager.e-rtl .e-grid.e-rtl .e-gridheader .e-fe-grid-icon + .e-headercell.e-fe-grid-name,
|
747
|
+
.e-filemanager.e-rtl .e-grid.e-rtl .e-gridheader .e-fe-grid-icon + .e-rowcell.e-fe-grid-name, .e-filemanager.e-rtl .e-grid.e-rtl .e-gridheader .e-fe-grid-icon + .e-headercell.e-fe-grid-name,
|
898
748
|
.e-filemanager.e-rtl .e-grid.e-rtl .e-gridcontent .e-fe-grid-icon + .e-rowcell.e-fe-grid-name,
|
899
749
|
.e-filemanager.e-rtl .e-grid.e-rtl .e-gridcontent .e-fe-grid-icon + .e-headercell.e-fe-grid-name {
|
900
750
|
padding-right: 12px;
|
901
751
|
}
|
902
|
-
|
903
752
|
.e-filemanager.e-rtl .e-grid.e-rtl .e-fe-icon {
|
904
753
|
margin: 0 0 0 8px;
|
905
754
|
}
|
906
|
-
|
907
755
|
.e-filemanager.e-rtl .e-large-icons .e-list-item {
|
908
756
|
float: right;
|
909
757
|
}
|
910
|
-
|
911
758
|
.e-filemanager.e-rtl .e-fe-clone .e-fe-count {
|
912
759
|
margin-left: 0;
|
913
760
|
margin-right: -12px;
|
914
761
|
}
|
915
|
-
|
916
762
|
.e-filemanager .e-layout-content {
|
917
763
|
position: relative;
|
918
764
|
}
|
919
|
-
|
765
|
+
.e-filemanager .e-pager {
|
766
|
+
border-width: 1px 0 0;
|
767
|
+
}
|
920
768
|
.e-filemanager .e-fe-overlay {
|
921
769
|
border: 2px dashed #0078d4;
|
922
770
|
bottom: 0;
|
923
771
|
display: block;
|
924
772
|
height: calc(100% - 34px);
|
773
|
+
width: 100%;
|
925
774
|
pointer-events: none;
|
926
775
|
position: absolute;
|
927
776
|
visibility: hidden;
|
928
|
-
width: 100%;
|
929
777
|
}
|
930
|
-
|
931
778
|
.e-filemanager .e-upload-drag-hover {
|
932
779
|
outline: none;
|
933
780
|
}
|
934
|
-
|
935
781
|
.e-filemanager .e-upload-drag-hover .e-fe-overlay {
|
936
782
|
visibility: visible;
|
937
783
|
}
|
938
784
|
|
939
785
|
.e-fe-popup.e-dropdown-popup ul .e-item .e-fe-dot,
|
940
|
-
.e-fe-popup.e-dropdown-popup ul .e-item .e-fe-tick,
|
941
|
-
.e-fe-popup.e-contextmenu-wrapper ul .e-menu-item .e-fe-dot,
|
942
|
-
.e-fe-popup.e-contextmenu-wrapper ul .e-menu-item .e-fe-tick,
|
943
|
-
.e-fe-popup.e-contextmenu-container ul .e-menu-item .e-fe-dot,
|
786
|
+
.e-fe-popup.e-dropdown-popup ul .e-item .e-fe-tick, .e-fe-popup.e-contextmenu-wrapper ul .e-menu-item .e-fe-dot,
|
787
|
+
.e-fe-popup.e-contextmenu-wrapper ul .e-menu-item .e-fe-tick, .e-fe-popup.e-contextmenu-container ul .e-menu-item .e-fe-dot,
|
944
788
|
.e-fe-popup.e-contextmenu-container ul .e-menu-item .e-fe-tick {
|
945
789
|
font-size: 14px;
|
946
790
|
}
|
947
|
-
|
948
791
|
.e-fe-popup.e-dlg-resizable .e-dlg-content {
|
949
792
|
overflow: hidden;
|
950
793
|
}
|
951
|
-
|
952
794
|
.e-fe-popup.e-dialog.e-fe-upload-dialog .e-dlg-content {
|
953
795
|
overflow: auto;
|
954
796
|
}
|
955
|
-
|
956
|
-
.e-fe-popup.e-contextmenu-wrapper ul .e-menu-item.e-separator,
|
957
|
-
.e-fe-popup.e-contextmenu-container ul .e-menu-item.e-separator {
|
797
|
+
.e-fe-popup.e-contextmenu-wrapper ul .e-menu-item.e-separator, .e-fe-popup.e-contextmenu-container ul .e-menu-item.e-separator {
|
958
798
|
margin: 0 0;
|
959
799
|
}
|
960
|
-
|
961
800
|
.e-fe-popup.e-rtl .e-fe-grid {
|
962
801
|
display: inline-table;
|
963
|
-
transform: rotate(180deg);
|
802
|
+
-webkit-transform: rotate(180deg);
|
803
|
+
transform: rotate(180deg);
|
964
804
|
}
|
965
|
-
|
966
805
|
.e-fe-popup.e-dialog td {
|
967
806
|
overflow: hidden;
|
968
807
|
text-overflow: ellipsis;
|
@@ -972,170 +811,309 @@ ejs-filemanager {
|
|
972
811
|
min-width: 51px;
|
973
812
|
padding: 4px 24px 4px 0;
|
974
813
|
}
|
975
|
-
|
976
814
|
.e-fe-popup.e-dialog td.e-fe-value {
|
977
815
|
white-space: unset;
|
978
816
|
word-break: break-word;
|
979
817
|
}
|
980
|
-
|
981
818
|
.e-fe-popup.e-dialog .e-fe-errorcontent {
|
982
819
|
white-space: normal;
|
983
820
|
word-break: break-word;
|
984
821
|
}
|
985
|
-
|
986
822
|
.e-fe-popup.e-dialog .e-fe-icon {
|
987
823
|
display: inline-block;
|
988
824
|
height: 18px;
|
989
825
|
margin: 0 8px -2px 0;
|
990
826
|
width: 18px;
|
991
827
|
}
|
992
|
-
|
993
828
|
.e-fe-popup.e-dialog .e-fe-access-header {
|
994
829
|
display: inline-block;
|
995
830
|
}
|
996
|
-
|
997
831
|
.e-fe-popup.e-dialog .e-fe-retrycontent {
|
998
832
|
padding: 16px 0;
|
999
833
|
}
|
1000
|
-
|
1001
834
|
.e-fe-popup.e-dialog .e-image {
|
1002
835
|
height: 100%;
|
1003
836
|
width: 100%;
|
1004
837
|
}
|
1005
|
-
|
1006
838
|
.e-fe-popup.e-dialog .e-dlg-content {
|
1007
839
|
padding-top: 2px;
|
1008
840
|
}
|
1009
|
-
|
1010
841
|
.e-fe-popup.e-dialog.e-rtl td {
|
1011
842
|
padding: 8px 0 8px 24px;
|
1012
843
|
}
|
1013
|
-
|
1014
844
|
.e-fe-popup.e-dialog.e-rtl .e-fe-icon {
|
1015
845
|
margin: 0 0 -2px 8px;
|
1016
846
|
}
|
1017
|
-
|
1018
847
|
.e-fe-popup.e-dialog.e-popup.e-dlg-resizable {
|
1019
848
|
min-height: 200px;
|
1020
849
|
}
|
1021
|
-
|
1022
850
|
.e-fe-popup .e-fe-error {
|
1023
851
|
font-size: 12px;
|
1024
852
|
line-height: 1.5;
|
1025
853
|
}
|
1026
|
-
|
1027
854
|
.e-fe-popup .e-upload {
|
1028
855
|
border-bottom-width: 0;
|
1029
856
|
border-top-width: 0;
|
1030
857
|
}
|
1031
|
-
|
1032
|
-
|
1033
|
-
display: none;
|
858
|
+
.e-fe-popup .e-upload .e-upload-actions {
|
859
|
+
border-bottom: 1px solid;
|
1034
860
|
}
|
1035
861
|
|
862
|
+
.e-filemanager .e-display-none,
|
863
|
+
.e-filemanager .e-treeview .e-icons .e-treeview-spinner,
|
864
|
+
.e-filemanager .e-splitter .e-split-bar .e-resize-handler,
|
865
|
+
.e-filemanager .e-splitter .e-display-none,
|
866
|
+
.e-filemanager .e-grid .e-spin-show,
|
867
|
+
.e-filemanager .e-grid .e-gridheader .e-emptyrow,
|
868
|
+
.e-filemanager .e-grid .e-gridcontent .e-emptyrow,
|
869
|
+
.e-fe-popup .e-upload .e-file-select-wrap,
|
1036
870
|
.e-fe-popup .e-upload .e-icons.e-file-delete-btn {
|
1037
871
|
display: none;
|
1038
872
|
}
|
1039
873
|
|
874
|
+
@media (max-width: 469px) {
|
875
|
+
.e-bigger .e-filemanager.e-fe-mobile .e-large-icons .e-list-parent .e-list-item,
|
876
|
+
.e-filemanager.e-bigger.e-fe-mobile .e-large-icons .e-list-parent .e-list-item {
|
877
|
+
min-width: 140px;
|
878
|
+
width: calc(50% - 17px);
|
879
|
+
}
|
880
|
+
}
|
881
|
+
@media (min-width: 470px) and (max-width: 625px) {
|
882
|
+
.e-bigger .e-filemanager.e-fe-mobile .e-large-icons .e-list-parent .e-list-item,
|
883
|
+
.e-filemanager.e-bigger.e-fe-mobile .e-large-icons .e-list-parent .e-list-item {
|
884
|
+
min-width: 140px;
|
885
|
+
width: calc(33.33% - 17px);
|
886
|
+
}
|
887
|
+
}
|
888
|
+
@media (min-width: 360px) and (max-width: 500px) {
|
889
|
+
.e-bigger .e-filemanager .e-grid .e-checkbox-wrapper .e-frame {
|
890
|
+
position: relative;
|
891
|
+
right: 10px;
|
892
|
+
}
|
893
|
+
}
|
894
|
+
.e-content-placeholder.e-filemanager.e-placeholder-filemanager {
|
895
|
+
height: 100%;
|
896
|
+
width: 100%;
|
897
|
+
}
|
898
|
+
|
899
|
+
.e-filemanager {
|
900
|
+
background: transparent;
|
901
|
+
border-color: #292827;
|
902
|
+
}
|
903
|
+
.e-filemanager .e-toolbar {
|
904
|
+
border-bottom-color: #292827;
|
905
|
+
}
|
906
|
+
.e-filemanager .e-toolbar .e-toolbar-items .e-toolbar-item .e-dropdown-btn.e-btn.e-tbar-btn.e-active {
|
907
|
+
background: #252423;
|
908
|
+
border-color: #8a8886;
|
909
|
+
}
|
910
|
+
.e-filemanager .e-toolbar .e-toolbar-items .e-toolbar-item .e-dropdown-btn.e-btn.e-tbar-btn:hover {
|
911
|
+
background: #252423;
|
912
|
+
border-color: #8a8886;
|
913
|
+
}
|
914
|
+
.e-filemanager .e-toolbar .e-toolbar-items .e-toolbar-item .e-dropdown-btn.e-btn.e-tbar-btn:focus {
|
915
|
+
background: #252423;
|
916
|
+
border-color: #8a8886;
|
917
|
+
}
|
918
|
+
.e-filemanager .e-address {
|
919
|
+
border-bottom-color: #292827;
|
920
|
+
}
|
921
|
+
.e-filemanager .e-address .e-icons {
|
922
|
+
color: #a19f9d;
|
923
|
+
}
|
924
|
+
.e-filemanager .e-address .e-list-text {
|
925
|
+
color: #c8c6c4;
|
926
|
+
}
|
927
|
+
.e-filemanager .e-address .e-address-list-item {
|
928
|
+
color: #c8c6c4;
|
929
|
+
}
|
930
|
+
.e-filemanager .e-address .e-address-list-item:focus .e-list-text {
|
931
|
+
background: #252423;
|
932
|
+
color: #f3f2f1;
|
933
|
+
}
|
934
|
+
.e-filemanager .e-address .e-address-list-item:last-child .e-list-text {
|
935
|
+
color: #d2d0ce;
|
936
|
+
}
|
937
|
+
.e-filemanager .e-address .e-address-list-item:not(:last-child) .e-list-text:hover, .e-filemanager .e-address .e-address-list-item:not(:last-child) .e-list-text:active, .e-filemanager .e-address .e-address-list-item:not(:last-child) .e-list-text:focus {
|
938
|
+
background: #252423;
|
939
|
+
color: #f3f2f1;
|
940
|
+
}
|
941
|
+
.e-filemanager .e-address .e-address-list-item:focus .e-list-text {
|
942
|
+
color: #f3f2f1;
|
943
|
+
}
|
944
|
+
.e-filemanager .e-address .e-search-wrap .e-input-group.e-control-wrapper:not(.e-success) {
|
945
|
+
background: #1b1a19;
|
946
|
+
border-color: #292827;
|
947
|
+
border-color: #a19f9d;
|
948
|
+
}
|
949
|
+
.e-filemanager .e-treeview .e-list-item.e-active > .e-fullrow {
|
950
|
+
border: #292827;
|
951
|
+
}
|
952
|
+
.e-filemanager .e-treeview .e-list-parent .e-list-item.e-fe-drop-folder.e-hover > .e-fullrow {
|
953
|
+
border-color: #0078d4;
|
954
|
+
}
|
955
|
+
.e-filemanager .e-grid .e-gridheader .e-headercell:not(.e-fe-grid-icon):hover, .e-filemanager .e-grid .e-gridheader .e-headercell.e-fe-grid-icon .e-headercelldiv:hover {
|
956
|
+
background: #252423;
|
957
|
+
}
|
958
|
+
.e-filemanager .e-grid .e-gridheader .e-headercell.e-fe-checkbox:hover {
|
959
|
+
background: #1b1a19;
|
960
|
+
}
|
961
|
+
.e-filemanager .e-grid td.e-active {
|
962
|
+
background-color: #292827;
|
963
|
+
color: #fff;
|
964
|
+
}
|
965
|
+
.e-filemanager .e-grid.e-gridhover .e-row.e-fe-drop-file:not(.e-editedrow):hover .e-rowcell:not(.e-cellselectionbackground):not(.e-active):not(.e-updatedtd):not(.e-indentcell) {
|
966
|
+
background-color: transparent;
|
967
|
+
}
|
968
|
+
.e-filemanager .e-large-icons .e-list-img {
|
969
|
+
border-color: #292827;
|
970
|
+
}
|
971
|
+
.e-filemanager .e-large-icons .e-active {
|
972
|
+
color: #fff;
|
973
|
+
}
|
974
|
+
.e-filemanager .e-large-icons .e-large-icon {
|
975
|
+
border-color: transparent;
|
976
|
+
}
|
977
|
+
.e-filemanager .e-large-icons .e-large-icon.e-active {
|
978
|
+
background: #292827;
|
979
|
+
border-color: #292827;
|
980
|
+
}
|
981
|
+
.e-filemanager .e-large-icons .e-large-icon.e-hover, .e-filemanager .e-large-icons .e-large-icon:hover {
|
982
|
+
background: #252423;
|
983
|
+
border-color: #252423;
|
984
|
+
}
|
985
|
+
.e-filemanager .e-large-icons .e-large-icon.e-active.e-hover, .e-filemanager .e-large-icons .e-large-icon.e-active:hover {
|
986
|
+
background: #292827;
|
987
|
+
border-color: #292827;
|
988
|
+
}
|
989
|
+
.e-filemanager .e-large-icons .e-large-icon.e-focus {
|
990
|
+
border-color: #292827;
|
991
|
+
}
|
992
|
+
.e-filemanager .e-large-icons .e-large-icon.e-hover.e-fe-drop-folder, .e-filemanager .e-large-icons .e-large-icon:hover.e-fe-drop-folder {
|
993
|
+
border-color: #0078d4;
|
994
|
+
}
|
995
|
+
.e-filemanager .e-large-icons .e-checkbox-wrapper .e-icons.e-check {
|
996
|
+
background-color: #0078d4;
|
997
|
+
color: #1b1a19;
|
998
|
+
}
|
999
|
+
.e-filemanager .e-fe-clone .e-fe-content {
|
1000
|
+
background-color: #252423;
|
1001
|
+
color: #d2d0ce;
|
1002
|
+
}
|
1003
|
+
.e-filemanager .e-fe-clone .e-fe-count {
|
1004
|
+
background-color: #0078d4;
|
1005
|
+
border-color: #1b1a19;
|
1006
|
+
color: #1b1a19;
|
1007
|
+
}
|
1008
|
+
.e-filemanager.e-fe-mobile .e-large-icons .e-large-icon.e-hover, .e-filemanager.e-fe-mobile .e-large-icons .e-large-icon:hover {
|
1009
|
+
background: transparent;
|
1010
|
+
border-color: transparent;
|
1011
|
+
}
|
1012
|
+
.e-filemanager.e-fe-mobile .e-large-icons .e-large-icon.e-focus {
|
1013
|
+
border-color: transparent;
|
1014
|
+
}
|
1015
|
+
.e-filemanager.e-fe-mobile .e-large-icons .e-large-icon.e-active {
|
1016
|
+
background: #292827;
|
1017
|
+
border-color: #292827;
|
1018
|
+
}
|
1019
|
+
|
1020
|
+
.e-fe-popup.e-dropdown-popup ul .e-item .e-fe-dot,
|
1021
|
+
.e-fe-popup.e-dropdown-popup ul .e-item .e-fe-tick, .e-fe-popup.e-contextmenu-wrapper ul .e-menu-item .e-fe-dot,
|
1022
|
+
.e-fe-popup.e-contextmenu-wrapper ul .e-menu-item .e-fe-tick, .e-fe-popup.e-contextmenu-container ul .e-menu-item .e-fe-dot,
|
1023
|
+
.e-fe-popup.e-contextmenu-container ul .e-menu-item .e-fe-tick {
|
1024
|
+
color: #a19f9d;
|
1025
|
+
}
|
1026
|
+
.e-fe-popup.e-dialog td {
|
1027
|
+
color: #f3f2f1;
|
1028
|
+
}
|
1029
|
+
.e-fe-popup.e-dialog td:first-child {
|
1030
|
+
color: #c8c6c4;
|
1031
|
+
}
|
1032
|
+
.e-fe-popup .e-fe-error {
|
1033
|
+
color: #d13438;
|
1034
|
+
}
|
1040
1035
|
.e-fe-popup .e-upload .e-upload-actions {
|
1041
|
-
border-bottom:
|
1036
|
+
border-bottom-color: #292827;
|
1042
1037
|
}
|
1043
1038
|
|
1039
|
+
.e-filemanager.e-fe-mobile .e-toolbar .e-popup-up-icon.e-icons,
|
1040
|
+
.e-filemanager.e-fe-mobile .e-toolbar .e-popup-down-icon.e-icons,
|
1044
1041
|
.e-filemanager.e-fe-mobile .e-toolbar-items .e-toolbar-item .e-btn-icon.e-icons,
|
1042
|
+
.e-bigger .e-filemanager.e-fe-mobile .e-toolbar .e-popup-up-icon.e-icons,
|
1043
|
+
.e-bigger .e-filemanager.e-fe-mobile .e-toolbar .e-popup-down-icon.e-icons,
|
1045
1044
|
.e-bigger .e-filemanager.e-fe-mobile .e-toolbar-items .e-toolbar-item .e-btn-icon.e-icons,
|
1045
|
+
.e-filemanager.e-bigger.e-fe-mobile .e-toolbar .e-popup-up-icon.e-icons,
|
1046
|
+
.e-filemanager.e-bigger.e-fe-mobile .e-toolbar .e-popup-down-icon.e-icons,
|
1046
1047
|
.e-filemanager.e-bigger.e-fe-mobile .e-toolbar-items .e-toolbar-item .e-btn-icon.e-icons {
|
1047
1048
|
font-size: 20px;
|
1048
1049
|
}
|
1049
|
-
|
1050
1050
|
.e-filemanager.e-fe-mobile .e-toolbar .e-toolbar-items .e-toolbar-item.e-popup-text .e-tbar-btn.e-btn.e-tbtn-txt .e-icons.e-btn-icon.e-fe-newfolder,
|
1051
1051
|
.e-bigger .e-filemanager.e-fe-mobile .e-toolbar .e-toolbar-items .e-toolbar-item.e-popup-text .e-tbar-btn.e-btn.e-tbtn-txt .e-icons.e-btn-icon.e-fe-newfolder,
|
1052
1052
|
.e-filemanager.e-bigger.e-fe-mobile .e-toolbar .e-toolbar-items .e-toolbar-item.e-popup-text .e-tbar-btn.e-btn.e-tbtn-txt .e-icons.e-btn-icon.e-fe-newfolder {
|
1053
1053
|
padding-top: 0;
|
1054
1054
|
}
|
1055
|
-
|
1056
1055
|
.e-filemanager.e-fe-mobile .e-toolbar .e-toolbar-items .e-toolbar-item.e-popup-text .e-tbar-btn.e-btn.e-tbtn-txt .e-icons.e-btn-icon.e-fe-upload,
|
1057
1056
|
.e-bigger .e-filemanager.e-fe-mobile .e-toolbar .e-toolbar-items .e-toolbar-item.e-popup-text .e-tbar-btn.e-btn.e-tbtn-txt .e-icons.e-btn-icon.e-fe-upload,
|
1058
1057
|
.e-filemanager.e-bigger.e-fe-mobile .e-toolbar .e-toolbar-items .e-toolbar-item.e-popup-text .e-tbar-btn.e-btn.e-tbtn-txt .e-icons.e-btn-icon.e-fe-upload {
|
1059
1058
|
padding-left: 0;
|
1060
1059
|
}
|
1061
|
-
|
1062
1060
|
.e-filemanager.e-fe-mobile .e-toolbar .e-toolbar-items .e-toolbar-item.e-popup-text .e-tbar-btn.e-btn.e-tbtn-txt .e-icons.e-btn-icon.e-fe-sort,
|
1063
1061
|
.e-bigger .e-filemanager.e-fe-mobile .e-toolbar .e-toolbar-items .e-toolbar-item.e-popup-text .e-tbar-btn.e-btn.e-tbtn-txt .e-icons.e-btn-icon.e-fe-sort,
|
1064
1062
|
.e-filemanager.e-bigger.e-fe-mobile .e-toolbar .e-toolbar-items .e-toolbar-item.e-popup-text .e-tbar-btn.e-btn.e-tbtn-txt .e-icons.e-btn-icon.e-fe-sort {
|
1065
1063
|
padding-top: 3px;
|
1066
1064
|
}
|
1067
|
-
|
1068
1065
|
.e-filemanager.e-fe-mobile .e-toolbar .e-toolbar-items .e-toolbar-item.e-popup-text .e-tbar-btn.e-btn.e-tbtn-txt .e-icons.e-btn-icon.e-fe-refresh,
|
1069
1066
|
.e-bigger .e-filemanager.e-fe-mobile .e-toolbar .e-toolbar-items .e-toolbar-item.e-popup-text .e-tbar-btn.e-btn.e-tbtn-txt .e-icons.e-btn-icon.e-fe-refresh,
|
1070
1067
|
.e-filemanager.e-bigger.e-fe-mobile .e-toolbar .e-toolbar-items .e-toolbar-item.e-popup-text .e-tbar-btn.e-btn.e-tbtn-txt .e-icons.e-btn-icon.e-fe-refresh {
|
1071
1068
|
padding-top: 3px;
|
1072
1069
|
}
|
1073
|
-
|
1074
1070
|
.e-filemanager.e-fe-mobile .e-toolbar .e-toolbar-items .e-toolbar-item.e-popup-text .e-tbar-btn.e-btn.e-tbtn-txt .e-icons.e-btn-icon.e-fe-select,
|
1075
1071
|
.e-bigger .e-filemanager.e-fe-mobile .e-toolbar .e-toolbar-items .e-toolbar-item.e-popup-text .e-tbar-btn.e-btn.e-tbtn-txt .e-icons.e-btn-icon.e-fe-select,
|
1076
1072
|
.e-filemanager.e-bigger.e-fe-mobile .e-toolbar .e-toolbar-items .e-toolbar-item.e-popup-text .e-tbar-btn.e-btn.e-tbtn-txt .e-icons.e-btn-icon.e-fe-select {
|
1077
1073
|
padding-top: 2px;
|
1078
1074
|
}
|
1079
|
-
|
1080
1075
|
.e-filemanager.e-fe-mobile .e-toolbar .e-toolbar-items .e-toolbar-item.e-popup-text .e-tbar-btn.e-btn.e-tbtn-txt .e-icons.e-btn-icon.e-fe-large,
|
1081
1076
|
.e-bigger .e-filemanager.e-fe-mobile .e-toolbar .e-toolbar-items .e-toolbar-item.e-popup-text .e-tbar-btn.e-btn.e-tbtn-txt .e-icons.e-btn-icon.e-fe-large,
|
1082
1077
|
.e-filemanager.e-bigger.e-fe-mobile .e-toolbar .e-toolbar-items .e-toolbar-item.e-popup-text .e-tbar-btn.e-btn.e-tbtn-txt .e-icons.e-btn-icon.e-fe-large {
|
1083
|
-
padding:
|
1078
|
+
padding: 0 0 0 2px;
|
1084
1079
|
}
|
1085
|
-
|
1086
1080
|
.e-filemanager.e-fe-mobile .e-toolbar .e-toolbar-items .e-toolbar-item.e-popup-text .e-tbar-btn.e-btn.e-tbtn-txt .e-icons.e-btn-icon.e-fe-grid,
|
1087
1081
|
.e-bigger .e-filemanager.e-fe-mobile .e-toolbar .e-toolbar-items .e-toolbar-item.e-popup-text .e-tbar-btn.e-btn.e-tbtn-txt .e-icons.e-btn-icon.e-fe-grid,
|
1088
1082
|
.e-filemanager.e-bigger.e-fe-mobile .e-toolbar .e-toolbar-items .e-toolbar-item.e-popup-text .e-tbar-btn.e-btn.e-tbtn-txt .e-icons.e-btn-icon.e-fe-grid {
|
1089
1083
|
padding: 4px 2px 0 2px;
|
1090
1084
|
}
|
1091
|
-
|
1092
1085
|
.e-filemanager.e-fe-mobile .e-toolbar .e-toolbar-items .e-toolbar-item.e-popup-text .e-tbar-btn.e-btn.e-tbtn-txt .e-icons.e-btn-icon.e-fe-details,
|
1093
1086
|
.e-bigger .e-filemanager.e-fe-mobile .e-toolbar .e-toolbar-items .e-toolbar-item.e-popup-text .e-tbar-btn.e-btn.e-tbtn-txt .e-icons.e-btn-icon.e-fe-details,
|
1094
1087
|
.e-filemanager.e-bigger.e-fe-mobile .e-toolbar .e-toolbar-items .e-toolbar-item.e-popup-text .e-tbar-btn.e-btn.e-tbtn-txt .e-icons.e-btn-icon.e-fe-details {
|
1095
1088
|
padding-top: 3px;
|
1096
1089
|
}
|
1097
|
-
|
1098
1090
|
.e-filemanager.e-fe-mobile .e-toolbar .e-toolbar-items .e-toolbar-item.e-popup-text .e-tbar-btn.e-btn.e-tbtn-txt .e-icons.e-btn-icon.e-fe-delete,
|
1099
1091
|
.e-bigger .e-filemanager.e-fe-mobile .e-toolbar .e-toolbar-items .e-toolbar-item.e-popup-text .e-tbar-btn.e-btn.e-tbtn-txt .e-icons.e-btn-icon.e-fe-delete,
|
1100
1092
|
.e-filemanager.e-bigger.e-fe-mobile .e-toolbar .e-toolbar-items .e-toolbar-item.e-popup-text .e-tbar-btn.e-btn.e-tbtn-txt .e-icons.e-btn-icon.e-fe-delete {
|
1101
1093
|
padding-left: 4px;
|
1102
1094
|
}
|
1103
|
-
|
1104
1095
|
.e-filemanager.e-fe-mobile .e-toolbar .e-toolbar-items .e-toolbar-item.e-popup-text .e-tbar-btn.e-btn.e-tbtn-txt .e-icons.e-btn-icon.e-fe-rename,
|
1105
1096
|
.e-bigger .e-filemanager.e-fe-mobile .e-toolbar .e-toolbar-items .e-toolbar-item.e-popup-text .e-tbar-btn.e-btn.e-tbtn-txt .e-icons.e-btn-icon.e-fe-rename,
|
1106
1097
|
.e-filemanager.e-bigger.e-fe-mobile .e-toolbar .e-toolbar-items .e-toolbar-item.e-popup-text .e-tbar-btn.e-btn.e-tbtn-txt .e-icons.e-btn-icon.e-fe-rename {
|
1107
1098
|
padding-left: 2px;
|
1108
1099
|
padding-top: 3px;
|
1109
1100
|
}
|
1110
|
-
|
1111
1101
|
.e-filemanager.e-fe-mobile .e-toolbar .e-toolbar-items .e-toolbar-item.e-popup-text .e-tbar-btn.e-btn.e-tbtn-txt .e-icons.e-btn-icon.e-fe-download,
|
1112
1102
|
.e-bigger .e-filemanager.e-fe-mobile .e-toolbar .e-toolbar-items .e-toolbar-item.e-popup-text .e-tbar-btn.e-btn.e-tbtn-txt .e-icons.e-btn-icon.e-fe-download,
|
1113
1103
|
.e-filemanager.e-bigger.e-fe-mobile .e-toolbar .e-toolbar-items .e-toolbar-item.e-popup-text .e-tbar-btn.e-btn.e-tbtn-txt .e-icons.e-btn-icon.e-fe-download {
|
1114
1104
|
padding-left: 4px;
|
1115
1105
|
}
|
1116
|
-
|
1117
1106
|
.e-filemanager.e-fe-mobile .e-toolbar .e-toolbar-items .e-toolbar-item.e-popup-text .e-tbar-btn.e-btn.e-tbtn-txt .e-icons.e-btn-icon.e-fe-cut,
|
1118
1107
|
.e-bigger .e-filemanager.e-fe-mobile .e-toolbar .e-toolbar-items .e-toolbar-item.e-popup-text .e-tbar-btn.e-btn.e-tbtn-txt .e-icons.e-btn-icon.e-fe-cut,
|
1119
1108
|
.e-filemanager.e-bigger.e-fe-mobile .e-toolbar .e-toolbar-items .e-toolbar-item.e-popup-text .e-tbar-btn.e-btn.e-tbtn-txt .e-icons.e-btn-icon.e-fe-cut {
|
1120
1109
|
padding-left: 2px;
|
1121
1110
|
padding-top: 1px;
|
1122
1111
|
}
|
1123
|
-
|
1124
1112
|
.e-filemanager.e-fe-mobile .e-toolbar .e-toolbar-items .e-toolbar-item.e-popup-text .e-tbar-btn.e-btn.e-tbtn-txt .e-icons.e-btn-icon.e-fe-copy,
|
1125
1113
|
.e-bigger .e-filemanager.e-fe-mobile .e-toolbar .e-toolbar-items .e-toolbar-item.e-popup-text .e-tbar-btn.e-btn.e-tbtn-txt .e-icons.e-btn-icon.e-fe-copy,
|
1126
1114
|
.e-filemanager.e-bigger.e-fe-mobile .e-toolbar .e-toolbar-items .e-toolbar-item.e-popup-text .e-tbar-btn.e-btn.e-tbtn-txt .e-icons.e-btn-icon.e-fe-copy {
|
1127
1115
|
padding-left: 4px;
|
1128
1116
|
}
|
1129
|
-
|
1130
|
-
.e-filemanager.e-fe-mobile .e-toolbar .e-popup-up-icon.e-icons,
|
1131
|
-
.e-filemanager.e-fe-mobile .e-toolbar .e-popup-down-icon.e-icons,
|
1132
|
-
.e-bigger .e-filemanager.e-fe-mobile .e-toolbar .e-popup-up-icon.e-icons,
|
1133
|
-
.e-bigger .e-filemanager.e-fe-mobile .e-toolbar .e-popup-down-icon.e-icons,
|
1134
|
-
.e-filemanager.e-bigger.e-fe-mobile .e-toolbar .e-popup-up-icon.e-icons,
|
1135
|
-
.e-filemanager.e-bigger.e-fe-mobile .e-toolbar .e-popup-down-icon.e-icons {
|
1136
|
-
font-size: 20px;
|
1137
|
-
}
|
1138
|
-
|
1139
1117
|
.e-filemanager.e-fe-mobile .e-toolbar-left .e-icons.e-fe-sort,
|
1140
1118
|
.e-bigger .e-filemanager.e-fe-mobile .e-toolbar-left .e-icons.e-fe-sort,
|
1141
1119
|
.e-filemanager.e-bigger.e-fe-mobile .e-toolbar-left .e-icons.e-fe-sort {
|
@@ -1143,56 +1121,45 @@ ejs-filemanager {
|
|
1143
1121
|
margin: 0;
|
1144
1122
|
width: 14px;
|
1145
1123
|
}
|
1146
|
-
|
1147
1124
|
.e-filemanager.e-fe-mobile .e-toolbar-left .e-tbar-ddb-text,
|
1148
|
-
.e-bigger .e-filemanager.e-fe-mobile .e-toolbar-left .e-tbar-ddb-text,
|
1149
|
-
.e-filemanager.e-bigger.e-fe-mobile .e-toolbar-left .e-tbar-ddb-text {
|
1150
|
-
display: none;
|
1151
|
-
}
|
1152
|
-
|
1153
1125
|
.e-filemanager.e-fe-mobile .e-toolbar-left .e-toolbar-item .e-tbar-btn-text,
|
1126
|
+
.e-bigger .e-filemanager.e-fe-mobile .e-toolbar-left .e-tbar-ddb-text,
|
1154
1127
|
.e-bigger .e-filemanager.e-fe-mobile .e-toolbar-left .e-toolbar-item .e-tbar-btn-text,
|
1128
|
+
.e-filemanager.e-bigger.e-fe-mobile .e-toolbar-left .e-tbar-ddb-text,
|
1155
1129
|
.e-filemanager.e-bigger.e-fe-mobile .e-toolbar-left .e-toolbar-item .e-tbar-btn-text {
|
1156
1130
|
display: none;
|
1157
1131
|
}
|
1158
|
-
|
1159
1132
|
.e-filemanager.e-fe-mobile .e-splitter .e-split-bar,
|
1160
1133
|
.e-bigger .e-filemanager.e-fe-mobile .e-splitter .e-split-bar,
|
1161
1134
|
.e-filemanager.e-bigger.e-fe-mobile .e-splitter .e-split-bar {
|
1162
1135
|
display: none;
|
1163
1136
|
}
|
1164
|
-
|
1165
1137
|
.e-filemanager.e-fe-mobile .e-address,
|
1166
1138
|
.e-bigger .e-filemanager.e-fe-mobile .e-address,
|
1167
1139
|
.e-filemanager.e-bigger.e-fe-mobile .e-address {
|
1168
1140
|
height: 40px;
|
1169
1141
|
}
|
1170
|
-
|
1171
1142
|
.e-filemanager.e-fe-mobile .e-address .e-addressbar-ul,
|
1172
1143
|
.e-bigger .e-filemanager.e-fe-mobile .e-address .e-addressbar-ul,
|
1173
1144
|
.e-filemanager.e-bigger.e-fe-mobile .e-address .e-addressbar-ul {
|
1174
1145
|
height: 40px;
|
1175
1146
|
}
|
1176
|
-
|
1177
1147
|
.e-filemanager.e-fe-mobile .e-address .e-address-list-item .e-icons,
|
1178
1148
|
.e-bigger .e-filemanager.e-fe-mobile .e-address .e-address-list-item .e-icons,
|
1179
1149
|
.e-filemanager.e-bigger.e-fe-mobile .e-address .e-address-list-item .e-icons {
|
1180
1150
|
font-size: 10px;
|
1181
1151
|
}
|
1182
|
-
|
1183
1152
|
.e-filemanager.e-fe-mobile .e-address .e-list-text,
|
1184
1153
|
.e-bigger .e-filemanager.e-fe-mobile .e-address .e-list-text,
|
1185
1154
|
.e-filemanager.e-bigger.e-fe-mobile .e-address .e-list-text {
|
1186
1155
|
font-size: 14px;
|
1187
1156
|
}
|
1188
|
-
|
1189
1157
|
.e-filemanager.e-fe-mobile .e-address .e-search-wrap,
|
1190
1158
|
.e-bigger .e-filemanager.e-fe-mobile .e-address .e-search-wrap,
|
1191
1159
|
.e-filemanager.e-bigger.e-fe-mobile .e-address .e-search-wrap {
|
1192
1160
|
min-width: 47px;
|
1193
1161
|
width: auto;
|
1194
1162
|
}
|
1195
|
-
|
1196
1163
|
.e-filemanager.e-fe-mobile .e-address .e-search-wrap .e-input-group,
|
1197
1164
|
.e-bigger .e-filemanager.e-fe-mobile .e-address .e-search-wrap .e-input-group,
|
1198
1165
|
.e-filemanager.e-bigger.e-fe-mobile .e-address .e-search-wrap .e-input-group {
|
@@ -1200,19 +1167,16 @@ ejs-filemanager {
|
|
1200
1167
|
height: 40px;
|
1201
1168
|
width: 100%;
|
1202
1169
|
}
|
1203
|
-
|
1204
1170
|
.e-filemanager.e-fe-mobile .e-address .e-search-wrap .e-input-group .e-clear-icon,
|
1205
1171
|
.e-bigger .e-filemanager.e-fe-mobile .e-address .e-search-wrap .e-input-group .e-clear-icon,
|
1206
1172
|
.e-filemanager.e-bigger.e-fe-mobile .e-address .e-search-wrap .e-input-group .e-clear-icon {
|
1207
1173
|
margin: 2px 8px 0;
|
1208
1174
|
}
|
1209
|
-
|
1210
1175
|
.e-filemanager.e-fe-mobile .e-address .e-search-wrap .e-input-group .e-input,
|
1211
1176
|
.e-bigger .e-filemanager.e-fe-mobile .e-address .e-search-wrap .e-input-group .e-input,
|
1212
1177
|
.e-filemanager.e-bigger.e-fe-mobile .e-address .e-search-wrap .e-input-group .e-input {
|
1213
1178
|
margin: 0 0 0 38px;
|
1214
1179
|
}
|
1215
|
-
|
1216
1180
|
.e-filemanager.e-fe-mobile .e-address .e-fe-search,
|
1217
1181
|
.e-bigger .e-filemanager.e-fe-mobile .e-address .e-fe-search,
|
1218
1182
|
.e-filemanager.e-bigger.e-fe-mobile .e-address .e-fe-search {
|
@@ -1220,40 +1184,34 @@ ejs-filemanager {
|
|
1220
1184
|
margin: 3px 0;
|
1221
1185
|
right: 13px;
|
1222
1186
|
}
|
1223
|
-
|
1224
1187
|
.e-filemanager.e-fe-mobile .e-grid .e-fe-grid-icon .e-fe-icon,
|
1225
1188
|
.e-bigger .e-filemanager.e-fe-mobile .e-grid .e-fe-grid-icon .e-fe-icon,
|
1226
1189
|
.e-filemanager.e-bigger.e-fe-mobile .e-grid .e-fe-grid-icon .e-fe-icon {
|
1227
1190
|
height: 35px;
|
1228
1191
|
width: 35px;
|
1229
1192
|
}
|
1230
|
-
|
1231
1193
|
.e-filemanager.e-fe-mobile .e-grid .e-gridheader,
|
1232
1194
|
.e-bigger .e-filemanager.e-fe-mobile .e-grid .e-gridheader,
|
1233
1195
|
.e-filemanager.e-bigger.e-fe-mobile .e-grid .e-gridheader {
|
1234
1196
|
display: none;
|
1235
1197
|
}
|
1236
|
-
|
1237
1198
|
.e-filemanager.e-fe-mobile .e-grid .e-content .e-rowcell,
|
1238
1199
|
.e-bigger .e-filemanager.e-fe-mobile .e-grid .e-content .e-rowcell,
|
1239
1200
|
.e-filemanager.e-bigger.e-fe-mobile .e-grid .e-content .e-rowcell {
|
1240
1201
|
border-bottom: 1px solid;
|
1241
1202
|
border-bottom-color: #292827;
|
1242
1203
|
}
|
1243
|
-
|
1244
1204
|
.e-filemanager.e-fe-mobile .e-grid .e-content .e-rowcell.e-fe-checkbox,
|
1245
1205
|
.e-bigger .e-filemanager.e-fe-mobile .e-grid .e-content .e-rowcell.e-fe-checkbox,
|
1246
1206
|
.e-filemanager.e-bigger.e-fe-mobile .e-grid .e-content .e-rowcell.e-fe-checkbox {
|
1247
1207
|
padding: 0;
|
1248
1208
|
}
|
1249
|
-
|
1250
1209
|
.e-filemanager.e-fe-mobile .e-grid .e-gridcontent .e-fe-grid-icon,
|
1251
1210
|
.e-bigger .e-filemanager.e-fe-mobile .e-grid .e-gridcontent .e-fe-grid-icon,
|
1252
1211
|
.e-filemanager.e-bigger.e-fe-mobile .e-grid .e-gridcontent .e-fe-grid-icon {
|
1253
1212
|
padding-left: 10px;
|
1254
1213
|
padding-right: 10px;
|
1255
1214
|
}
|
1256
|
-
|
1257
1215
|
.e-filemanager.e-fe-mobile .e-grid .e-fe-text,
|
1258
1216
|
.e-bigger .e-filemanager.e-fe-mobile .e-grid .e-fe-text,
|
1259
1217
|
.e-filemanager.e-bigger.e-fe-mobile .e-grid .e-fe-text {
|
@@ -1261,13 +1219,16 @@ ejs-filemanager {
|
|
1261
1219
|
text-overflow: ellipsis;
|
1262
1220
|
white-space: nowrap;
|
1263
1221
|
}
|
1264
|
-
|
1222
|
+
.e-filemanager.e-fe-mobile .e-large-icons,
|
1223
|
+
.e-bigger .e-filemanager.e-fe-mobile .e-large-icons,
|
1224
|
+
.e-filemanager.e-bigger.e-fe-mobile .e-large-icons {
|
1225
|
+
height: calc(100% - 40px);
|
1226
|
+
}
|
1265
1227
|
.e-filemanager.e-fe-mobile .e-large-icons .e-list-parent,
|
1266
1228
|
.e-bigger .e-filemanager.e-fe-mobile .e-large-icons .e-list-parent,
|
1267
1229
|
.e-filemanager.e-bigger.e-fe-mobile .e-large-icons .e-list-parent {
|
1268
1230
|
padding: 0;
|
1269
1231
|
}
|
1270
|
-
|
1271
1232
|
.e-filemanager.e-fe-mobile .e-large-icons .e-list-parent .e-list-item,
|
1272
1233
|
.e-bigger .e-filemanager.e-fe-mobile .e-large-icons .e-list-parent .e-list-item,
|
1273
1234
|
.e-filemanager.e-bigger.e-fe-mobile .e-large-icons .e-list-parent .e-list-item {
|
@@ -1276,32 +1237,29 @@ ejs-filemanager {
|
|
1276
1237
|
margin: 12px 8px;
|
1277
1238
|
width: 94px;
|
1278
1239
|
}
|
1279
|
-
|
1280
|
-
.e-filemanager.e-fe-mobile .e-large-icons .e-list-parent .e-list-item.e-hover .e-checkbox-wrapper,
|
1240
|
+
.e-filemanager.e-fe-mobile .e-large-icons .e-list-parent .e-list-item.e-hover .e-checkbox-wrapper, .e-filemanager.e-fe-mobile .e-large-icons .e-list-parent .e-list-item:hover .e-checkbox-wrapper,
|
1281
1241
|
.e-bigger .e-filemanager.e-fe-mobile .e-large-icons .e-list-parent .e-list-item.e-hover .e-checkbox-wrapper,
|
1282
|
-
.e-
|
1242
|
+
.e-bigger .e-filemanager.e-fe-mobile .e-large-icons .e-list-parent .e-list-item:hover .e-checkbox-wrapper,
|
1243
|
+
.e-filemanager.e-bigger.e-fe-mobile .e-large-icons .e-list-parent .e-list-item.e-hover .e-checkbox-wrapper,
|
1244
|
+
.e-filemanager.e-bigger.e-fe-mobile .e-large-icons .e-list-parent .e-list-item:hover .e-checkbox-wrapper {
|
1283
1245
|
visibility: hidden;
|
1284
1246
|
}
|
1285
|
-
|
1286
1247
|
.e-filemanager.e-fe-mobile .e-large-icons .e-list-parent .e-list-item.e-active .e-checkbox-wrapper,
|
1287
1248
|
.e-bigger .e-filemanager.e-fe-mobile .e-large-icons .e-list-parent .e-list-item.e-active .e-checkbox-wrapper,
|
1288
1249
|
.e-filemanager.e-bigger.e-fe-mobile .e-large-icons .e-list-parent .e-list-item.e-active .e-checkbox-wrapper {
|
1289
1250
|
visibility: visible;
|
1290
1251
|
}
|
1291
|
-
|
1292
1252
|
.e-filemanager.e-fe-mobile .e-large-icons .e-list-parent .e-list-item .e-checkbox-wrapper,
|
1293
1253
|
.e-bigger .e-filemanager.e-fe-mobile .e-large-icons .e-list-parent .e-list-item .e-checkbox-wrapper,
|
1294
1254
|
.e-filemanager.e-bigger.e-fe-mobile .e-large-icons .e-list-parent .e-list-item .e-checkbox-wrapper {
|
1295
|
-
z-index:
|
1255
|
+
z-index: 999;
|
1296
1256
|
}
|
1297
|
-
|
1298
1257
|
.e-filemanager.e-fe-mobile .e-large-icons .e-list-parent .e-list-item .e-list-text,
|
1299
1258
|
.e-bigger .e-filemanager.e-fe-mobile .e-large-icons .e-list-parent .e-list-item .e-list-text,
|
1300
1259
|
.e-filemanager.e-bigger.e-fe-mobile .e-large-icons .e-list-parent .e-list-item .e-list-text {
|
1301
1260
|
margin: 0 auto;
|
1302
1261
|
width: 110px;
|
1303
1262
|
}
|
1304
|
-
|
1305
1263
|
.e-filemanager.e-fe-mobile .e-large-icons .e-list-parent .e-list-item .e-list-img,
|
1306
1264
|
.e-bigger .e-filemanager.e-fe-mobile .e-large-icons .e-list-parent .e-list-item .e-list-img,
|
1307
1265
|
.e-filemanager.e-bigger.e-fe-mobile .e-large-icons .e-list-parent .e-list-item .e-list-img {
|
@@ -1309,7 +1267,6 @@ ejs-filemanager {
|
|
1309
1267
|
max-height: 40px;
|
1310
1268
|
max-width: 110px;
|
1311
1269
|
}
|
1312
|
-
|
1313
1270
|
.e-filemanager.e-fe-mobile .e-large-icons .e-list-parent .e-list-item .e-list-icon,
|
1314
1271
|
.e-bigger .e-filemanager.e-fe-mobile .e-large-icons .e-list-parent .e-list-item .e-list-icon,
|
1315
1272
|
.e-filemanager.e-bigger.e-fe-mobile .e-large-icons .e-list-parent .e-list-item .e-list-icon {
|
@@ -1317,19 +1274,14 @@ ejs-filemanager {
|
|
1317
1274
|
margin: 0 auto;
|
1318
1275
|
width: 40px;
|
1319
1276
|
}
|
1320
|
-
|
1321
1277
|
.e-filemanager.e-fe-m-select .e-large-icons .e-list-item.e-large-icon .e-checkbox-wrapper,
|
1322
|
-
.e-bigger .e-filemanager.e-fe-m-select .e-large-icons .e-list-item.e-large-icon .e-checkbox-wrapper,
|
1323
|
-
.e-filemanager.e-bigger.e-fe-m-select .e-large-icons .e-list-item.e-large-icon .e-checkbox-wrapper {
|
1324
|
-
visibility: visible;
|
1325
|
-
}
|
1326
|
-
|
1327
1278
|
.e-filemanager.e-fe-m-select .e-grid .e-content .e-row .e-rowcell .e-checkbox-wrapper,
|
1279
|
+
.e-bigger .e-filemanager.e-fe-m-select .e-large-icons .e-list-item.e-large-icon .e-checkbox-wrapper,
|
1328
1280
|
.e-bigger .e-filemanager.e-fe-m-select .e-grid .e-content .e-row .e-rowcell .e-checkbox-wrapper,
|
1281
|
+
.e-filemanager.e-bigger.e-fe-m-select .e-large-icons .e-list-item.e-large-icon .e-checkbox-wrapper,
|
1329
1282
|
.e-filemanager.e-bigger.e-fe-m-select .e-grid .e-content .e-row .e-rowcell .e-checkbox-wrapper {
|
1330
1283
|
visibility: visible;
|
1331
1284
|
}
|
1332
|
-
|
1333
1285
|
.e-filemanager.e-fe-m-filter .e-address .e-search-wrap,
|
1334
1286
|
.e-bigger .e-filemanager.e-fe-m-filter .e-address .e-search-wrap,
|
1335
1287
|
.e-filemanager.e-bigger.e-fe-m-filter .e-address .e-search-wrap {
|
@@ -1338,21 +1290,19 @@ ejs-filemanager {
|
|
1338
1290
|
position: absolute;
|
1339
1291
|
width: 100%;
|
1340
1292
|
}
|
1341
|
-
|
1342
1293
|
.e-filemanager.e-fe-m-filter .e-address .e-search-wrap .e-input-group,
|
1343
1294
|
.e-bigger .e-filemanager.e-fe-m-filter .e-address .e-search-wrap .e-input-group,
|
1344
1295
|
.e-filemanager.e-bigger.e-fe-m-filter .e-address .e-search-wrap .e-input-group {
|
1296
|
+
display: -webkit-inline-box;
|
1345
1297
|
display: -ms-inline-flexbox;
|
1346
1298
|
display: inline-flex;
|
1347
1299
|
}
|
1348
|
-
|
1349
1300
|
.e-filemanager.e-fe-m-filter .e-address .e-search-wrap .e-input-group .e-input,
|
1350
1301
|
.e-bigger .e-filemanager.e-fe-m-filter .e-address .e-search-wrap .e-input-group .e-input,
|
1351
1302
|
.e-filemanager.e-bigger.e-fe-m-filter .e-address .e-search-wrap .e-input-group .e-input {
|
1352
1303
|
height: auto;
|
1353
1304
|
margin-left: 45px;
|
1354
1305
|
}
|
1355
|
-
|
1356
1306
|
.e-filemanager.e-fe-m-filter .e-address .e-search-wrap .e-fe-search,
|
1357
1307
|
.e-bigger .e-filemanager.e-fe-m-filter .e-address .e-search-wrap .e-fe-search,
|
1358
1308
|
.e-filemanager.e-bigger.e-fe-m-filter .e-address .e-search-wrap .e-fe-search {
|
@@ -1361,25 +1311,22 @@ ejs-filemanager {
|
|
1361
1311
|
margin-top: 3px;
|
1362
1312
|
width: 30px;
|
1363
1313
|
}
|
1364
|
-
|
1365
1314
|
.e-filemanager.e-fe-m-filter .e-address .e-addressbar-ul,
|
1366
1315
|
.e-bigger .e-filemanager.e-fe-m-filter .e-address .e-addressbar-ul,
|
1367
1316
|
.e-filemanager.e-bigger.e-fe-m-filter .e-address .e-addressbar-ul {
|
1368
1317
|
visibility: hidden;
|
1369
1318
|
}
|
1370
|
-
|
1371
1319
|
.e-filemanager.e-fe-m-filter.e-rtl .e-address .e-search-wrap .e-input-group .e-input,
|
1372
1320
|
.e-bigger .e-filemanager.e-fe-m-filter.e-rtl .e-address .e-search-wrap .e-input-group .e-input,
|
1373
1321
|
.e-filemanager.e-bigger.e-fe-m-filter.e-rtl .e-address .e-search-wrap .e-input-group .e-input {
|
1374
1322
|
margin-right: 45px;
|
1375
1323
|
}
|
1376
|
-
|
1377
1324
|
.e-filemanager.e-fe-m-filter.e-rtl .e-address .e-search-wrap .e-fe-search,
|
1378
1325
|
.e-bigger .e-filemanager.e-fe-m-filter.e-rtl .e-address .e-search-wrap .e-fe-search,
|
1379
1326
|
.e-filemanager.e-bigger.e-fe-m-filter.e-rtl .e-address .e-search-wrap .e-fe-search {
|
1380
|
-
transform: rotate(180deg);
|
1327
|
+
-webkit-transform: rotate(180deg);
|
1328
|
+
transform: rotate(180deg);
|
1381
1329
|
}
|
1382
|
-
|
1383
1330
|
.e-filemanager.e-rtl .e-grid .e-gridheader .e-fe-grid-icon,
|
1384
1331
|
.e-filemanager.e-rtl .e-grid .e-gridcontent .e-fe-grid-icon,
|
1385
1332
|
.e-bigger .e-filemanager.e-rtl .e-grid .e-gridheader .e-fe-grid-icon,
|
@@ -1393,188 +1340,149 @@ ejs-filemanager {
|
|
1393
1340
|
.e-bigger .e-fe-popup.e-dialog .e-dlg-header-content {
|
1394
1341
|
padding: 21px;
|
1395
1342
|
}
|
1396
|
-
|
1397
1343
|
.e-fe-popup.e-bigger.e-dialog td,
|
1398
1344
|
.e-bigger .e-fe-popup.e-dialog td {
|
1399
1345
|
overflow: hidden;
|
1400
1346
|
text-overflow: ellipsis;
|
1401
1347
|
white-space: nowrap;
|
1402
|
-
font-size:
|
1348
|
+
font-size: 16px;
|
1403
1349
|
max-width: 205px;
|
1404
1350
|
min-width: 45px;
|
1405
1351
|
padding: 8px 30px 8px 0;
|
1406
1352
|
}
|
1407
1353
|
|
1354
|
+
.e-bigger .e-filemanager .e-toolbar .e-popup-up-icon.e-icons,
|
1355
|
+
.e-bigger .e-filemanager .e-toolbar .e-popup-down-icon.e-icons,
|
1408
1356
|
.e-bigger .e-filemanager .e-toolbar .e-toolbar-items .e-toolbar-item .e-btn-icon.e-icons,
|
1357
|
+
.e-filemanager.e-bigger .e-toolbar .e-popup-up-icon.e-icons,
|
1358
|
+
.e-filemanager.e-bigger .e-toolbar .e-popup-down-icon.e-icons,
|
1409
1359
|
.e-filemanager.e-bigger .e-toolbar .e-toolbar-items .e-toolbar-item .e-btn-icon.e-icons {
|
1410
1360
|
font-size: 20px;
|
1411
1361
|
}
|
1412
|
-
|
1413
1362
|
.e-bigger .e-filemanager .e-toolbar .e-toolbar-items .e-toolbar-item .e-dropdown-btn.e-btn.e-tbar-btn,
|
1414
1363
|
.e-filemanager.e-bigger .e-toolbar .e-toolbar-items .e-toolbar-item .e-dropdown-btn.e-btn.e-tbar-btn {
|
1415
1364
|
padding: 0 6px;
|
1416
1365
|
}
|
1417
|
-
|
1418
|
-
.e-
|
1419
|
-
.e-filemanager.e-bigger .e-toolbar .e-toolbar-items .e-toolbar-item .e-dropdown-btn.e-btn.e-tbar-btn
|
1420
|
-
padding: 0 6px;
|
1421
|
-
}
|
1422
|
-
|
1423
|
-
.e-bigger .e-filemanager .e-toolbar .e-toolbar-items .e-toolbar-item .e-dropdown-btn.e-btn.e-tbar-btn:hover,
|
1424
|
-
.e-filemanager.e-bigger .e-toolbar .e-toolbar-items .e-toolbar-item .e-dropdown-btn.e-btn.e-tbar-btn:hover {
|
1425
|
-
padding: 0 6px;
|
1426
|
-
}
|
1427
|
-
|
1428
|
-
.e-bigger .e-filemanager .e-toolbar .e-toolbar-items .e-toolbar-item .e-dropdown-btn.e-btn.e-tbar-btn:focus,
|
1366
|
+
.e-bigger .e-filemanager .e-toolbar .e-toolbar-items .e-toolbar-item .e-dropdown-btn.e-btn.e-tbar-btn.e-active, .e-bigger .e-filemanager .e-toolbar .e-toolbar-items .e-toolbar-item .e-dropdown-btn.e-btn.e-tbar-btn:hover, .e-bigger .e-filemanager .e-toolbar .e-toolbar-items .e-toolbar-item .e-dropdown-btn.e-btn.e-tbar-btn:focus,
|
1367
|
+
.e-filemanager.e-bigger .e-toolbar .e-toolbar-items .e-toolbar-item .e-dropdown-btn.e-btn.e-tbar-btn.e-active,
|
1368
|
+
.e-filemanager.e-bigger .e-toolbar .e-toolbar-items .e-toolbar-item .e-dropdown-btn.e-btn.e-tbar-btn:hover,
|
1429
1369
|
.e-filemanager.e-bigger .e-toolbar .e-toolbar-items .e-toolbar-item .e-dropdown-btn.e-btn.e-tbar-btn:focus {
|
1430
1370
|
padding: 0 6px;
|
1431
1371
|
}
|
1432
|
-
|
1433
1372
|
.e-bigger .e-filemanager .e-toolbar .e-toolbar-items .e-toolbar-item .e-dropdown-btn.e-btn.e-tbar-btn .e-btn-icon.e-icons.e-caret,
|
1434
1373
|
.e-filemanager.e-bigger .e-toolbar .e-toolbar-items .e-toolbar-item .e-dropdown-btn.e-btn.e-tbar-btn .e-btn-icon.e-icons.e-caret {
|
1435
1374
|
padding: 0 10px;
|
1436
1375
|
}
|
1437
|
-
|
1438
1376
|
.e-bigger .e-filemanager .e-toolbar .e-toolbar-pop .e-toolbar-item .e-dropdown-btn .e-btn-icon.e-icons.e-caret,
|
1439
1377
|
.e-filemanager.e-bigger .e-toolbar .e-toolbar-pop .e-toolbar-item .e-dropdown-btn .e-btn-icon.e-icons.e-caret {
|
1440
1378
|
padding: 0 10px;
|
1441
1379
|
}
|
1442
|
-
|
1443
|
-
.e-bigger .e-filemanager .e-toolbar .e-popup-up-icon.e-icons,
|
1444
|
-
.e-bigger .e-filemanager .e-toolbar .e-popup-down-icon.e-icons,
|
1445
|
-
.e-filemanager.e-bigger .e-toolbar .e-popup-up-icon.e-icons,
|
1446
|
-
.e-filemanager.e-bigger .e-toolbar .e-popup-down-icon.e-icons {
|
1447
|
-
font-size: 20px;
|
1448
|
-
}
|
1449
|
-
|
1450
1380
|
.e-bigger .e-filemanager .e-treeview > .e-ul,
|
1451
1381
|
.e-filemanager.e-bigger .e-treeview > .e-ul {
|
1452
1382
|
padding-left: 12px;
|
1453
1383
|
}
|
1454
|
-
|
1455
1384
|
.e-bigger .e-filemanager .e-treeview .e-list-parent .e-list-item .e-fullrow,
|
1456
1385
|
.e-filemanager.e-bigger .e-treeview .e-list-parent .e-list-item .e-fullrow {
|
1457
1386
|
height: 40px;
|
1458
1387
|
}
|
1459
|
-
|
1460
1388
|
.e-bigger .e-filemanager .e-treeview .e-list-parent .e-list-item .e-list-text,
|
1461
1389
|
.e-filemanager.e-bigger .e-treeview .e-list-parent .e-list-item .e-list-text {
|
1462
1390
|
height: 38px;
|
1463
1391
|
line-height: 38px;
|
1464
1392
|
}
|
1465
|
-
|
1466
1393
|
.e-bigger .e-filemanager .e-address,
|
1467
1394
|
.e-filemanager.e-bigger .e-address {
|
1468
1395
|
height: 40px;
|
1469
1396
|
}
|
1470
|
-
|
1471
1397
|
.e-bigger .e-filemanager .e-address .e-breadcrumb-menu .e-breadcrumb-submenu,
|
1472
1398
|
.e-filemanager.e-bigger .e-address .e-breadcrumb-menu .e-breadcrumb-submenu {
|
1473
1399
|
height: 27px;
|
1474
1400
|
}
|
1475
|
-
|
1476
1401
|
.e-bigger .e-filemanager .e-address .e-address-list-item,
|
1477
1402
|
.e-filemanager.e-bigger .e-address .e-address-list-item {
|
1478
1403
|
height: 28px;
|
1479
1404
|
}
|
1480
|
-
|
1481
1405
|
.e-bigger .e-filemanager .e-address .e-address-list-item .e-icons,
|
1482
1406
|
.e-filemanager.e-bigger .e-address .e-address-list-item .e-icons {
|
1483
1407
|
font-size: 10px;
|
1484
1408
|
}
|
1485
|
-
|
1486
1409
|
.e-bigger .e-filemanager .e-address .e-addressbar-ul,
|
1487
1410
|
.e-filemanager.e-bigger .e-address .e-addressbar-ul {
|
1488
1411
|
padding: 6px 12px;
|
1489
1412
|
}
|
1490
|
-
|
1491
1413
|
.e-bigger .e-filemanager .e-address .e-list-text,
|
1492
1414
|
.e-filemanager.e-bigger .e-address .e-list-text {
|
1493
1415
|
font-size: 14px;
|
1494
1416
|
line-height: 28px;
|
1495
1417
|
padding: 5px 4px;
|
1496
1418
|
}
|
1497
|
-
|
1498
1419
|
.e-bigger .e-filemanager .e-address .e-search-wrap,
|
1499
1420
|
.e-filemanager.e-bigger .e-address .e-search-wrap {
|
1500
1421
|
min-width: 51px;
|
1501
1422
|
padding: 4px 10px 0 16px;
|
1502
1423
|
}
|
1503
|
-
|
1504
1424
|
.e-bigger .e-filemanager .e-address .e-search-wrap .e-input-group,
|
1505
1425
|
.e-filemanager.e-bigger .e-address .e-search-wrap .e-input-group {
|
1506
1426
|
height: 30px;
|
1507
1427
|
}
|
1508
|
-
|
1509
1428
|
.e-bigger .e-filemanager .e-address .e-search-wrap .e-input-group .e-input:focus,
|
1510
1429
|
.e-filemanager.e-bigger .e-address .e-search-wrap .e-input-group .e-input:focus {
|
1511
1430
|
padding: 0;
|
1512
1431
|
}
|
1513
|
-
|
1514
1432
|
.e-bigger .e-filemanager .e-address .e-search-wrap .e-input-group .e-input,
|
1515
1433
|
.e-filemanager.e-bigger .e-address .e-search-wrap .e-input-group .e-input {
|
1516
1434
|
height: 30px;
|
1517
1435
|
}
|
1518
|
-
|
1519
1436
|
.e-bigger .e-filemanager .e-address .e-fe-search,
|
1520
1437
|
.e-filemanager.e-bigger .e-address .e-fe-search {
|
1521
|
-
|
1438
|
+
font-size: 18px;
|
1439
|
+
margin: 3px;
|
1522
1440
|
}
|
1523
|
-
|
1524
1441
|
.e-bigger .e-filemanager .e-grid .e-checkbox-wrapper .e-frame,
|
1525
1442
|
.e-filemanager.e-bigger .e-grid .e-checkbox-wrapper .e-frame {
|
1526
1443
|
border-width: 1px;
|
1527
1444
|
line-height: 21px;
|
1528
1445
|
}
|
1529
|
-
|
1530
1446
|
.e-bigger .e-filemanager .e-grid .e-gridheader .e-headercell,
|
1531
1447
|
.e-filemanager.e-bigger .e-grid .e-gridheader .e-headercell {
|
1532
1448
|
height: 36px;
|
1533
1449
|
}
|
1534
|
-
|
1535
1450
|
.e-bigger .e-filemanager .e-grid .e-gridheader .e-headertext,
|
1536
1451
|
.e-filemanager.e-bigger .e-grid .e-gridheader .e-headertext {
|
1537
1452
|
font-size: 14px;
|
1538
1453
|
}
|
1539
|
-
|
1540
1454
|
.e-bigger .e-filemanager .e-grid .e-gridheader .e-rowcell,
|
1541
1455
|
.e-bigger .e-filemanager .e-grid .e-gridcontent .e-rowcell,
|
1542
1456
|
.e-filemanager.e-bigger .e-grid .e-gridheader .e-rowcell,
|
1543
1457
|
.e-filemanager.e-bigger .e-grid .e-gridcontent .e-rowcell {
|
1544
1458
|
font-size: 14px;
|
1545
1459
|
}
|
1546
|
-
|
1547
1460
|
.e-bigger .e-filemanager .e-grid .e-gridheader .e-rowcell .e-fe-text,
|
1548
1461
|
.e-bigger .e-filemanager .e-grid .e-gridcontent .e-rowcell .e-fe-text,
|
1549
1462
|
.e-filemanager.e-bigger .e-grid .e-gridheader .e-rowcell .e-fe-text,
|
1550
1463
|
.e-filemanager.e-bigger .e-grid .e-gridcontent .e-rowcell .e-fe-text {
|
1551
1464
|
font-size: 16px;
|
1552
1465
|
}
|
1553
|
-
|
1554
1466
|
.e-bigger .e-filemanager .e-grid .e-gridheader .e-fe-checkbox,
|
1555
1467
|
.e-bigger .e-filemanager .e-grid .e-gridcontent .e-fe-checkbox,
|
1556
1468
|
.e-filemanager.e-bigger .e-grid .e-gridheader .e-fe-checkbox,
|
1557
1469
|
.e-filemanager.e-bigger .e-grid .e-gridcontent .e-fe-checkbox {
|
1558
1470
|
padding-left: 10px;
|
1559
1471
|
}
|
1560
|
-
|
1561
1472
|
.e-bigger .e-filemanager .e-grid .e-gridheader .e-fe-grid-icon,
|
1562
1473
|
.e-bigger .e-filemanager .e-grid .e-gridcontent .e-fe-grid-icon,
|
1563
1474
|
.e-filemanager.e-bigger .e-grid .e-gridheader .e-fe-grid-icon,
|
1564
1475
|
.e-filemanager.e-bigger .e-grid .e-gridcontent .e-fe-grid-icon {
|
1565
1476
|
padding-left: 16px;
|
1566
1477
|
}
|
1567
|
-
|
1568
1478
|
.e-bigger .e-filemanager .e-grid .e-fe-icon,
|
1569
1479
|
.e-filemanager.e-bigger .e-grid .e-fe-icon {
|
1570
1480
|
margin: 0 12px 0 0;
|
1571
1481
|
}
|
1572
|
-
|
1573
1482
|
.e-bigger .e-filemanager .e-grid .e-empty,
|
1574
1483
|
.e-filemanager.e-bigger .e-grid .e-empty {
|
1575
1484
|
min-width: 300px;
|
1576
1485
|
}
|
1577
|
-
|
1578
1486
|
.e-bigger .e-filemanager .e-grid .e-empty-content,
|
1579
1487
|
.e-filemanager.e-bigger .e-grid .e-empty-content {
|
1580
1488
|
font-size: 22px;
|
@@ -1582,71 +1490,71 @@ ejs-filemanager {
|
|
1582
1490
|
padding: 12px;
|
1583
1491
|
text-align: center;
|
1584
1492
|
}
|
1585
|
-
|
1586
1493
|
.e-bigger .e-filemanager .e-grid .e-empty-icon,
|
1587
1494
|
.e-filemanager.e-bigger .e-grid .e-empty-icon {
|
1588
1495
|
height: 92px;
|
1589
1496
|
margin: 0 auto;
|
1590
1497
|
width: 92px;
|
1591
1498
|
}
|
1592
|
-
|
1593
1499
|
.e-bigger .e-filemanager .e-grid .e-empty-inner-content,
|
1594
1500
|
.e-filemanager.e-bigger .e-grid .e-empty-inner-content {
|
1595
1501
|
font-size: 14px;
|
1596
1502
|
margin: 0 auto;
|
1597
|
-
opacity: 0.5;
|
1598
1503
|
padding: 6px;
|
1599
1504
|
text-align: center;
|
1600
1505
|
}
|
1601
|
-
|
1506
|
+
.e-bigger .e-filemanager .e-grid .e-empty-inner-content,
|
1507
|
+
.e-filemanager.e-bigger .e-grid .e-empty-inner-content {
|
1508
|
+
opacity: 0.5;
|
1509
|
+
}
|
1510
|
+
.e-bigger .e-filemanager .e-grid.e-rtl .e-checkbox-wrapper .e-frame,
|
1511
|
+
.e-filemanager.e-bigger .e-grid.e-rtl .e-checkbox-wrapper .e-frame {
|
1512
|
+
margin-right: -16px;
|
1513
|
+
}
|
1514
|
+
.e-bigger .e-filemanager .e-large-icons,
|
1515
|
+
.e-filemanager.e-bigger .e-large-icons {
|
1516
|
+
height: calc(100% - 40px);
|
1517
|
+
}
|
1602
1518
|
.e-bigger .e-filemanager .e-large-icons .e-checkbox-wrapper .e-frame,
|
1603
1519
|
.e-filemanager.e-bigger .e-large-icons .e-checkbox-wrapper .e-frame {
|
1604
1520
|
border-width: 1px;
|
1605
1521
|
line-height: 21px;
|
1606
1522
|
}
|
1607
|
-
|
1608
1523
|
.e-bigger .e-filemanager .e-large-icons .e-list-parent,
|
1609
1524
|
.e-filemanager.e-bigger .e-large-icons .e-list-parent {
|
1610
1525
|
padding: 0 6px;
|
1611
1526
|
}
|
1612
|
-
|
1613
1527
|
.e-bigger .e-filemanager .e-large-icons .e-list-item,
|
1614
1528
|
.e-filemanager.e-bigger .e-large-icons .e-list-item {
|
1615
1529
|
height: 106px;
|
1616
1530
|
margin: 12px 6px;
|
1617
1531
|
width: 100px;
|
1618
1532
|
}
|
1619
|
-
|
1620
1533
|
.e-bigger .e-filemanager .e-large-icons .e-text-content,
|
1621
1534
|
.e-filemanager.e-bigger .e-large-icons .e-text-content {
|
1622
1535
|
height: 100px;
|
1623
1536
|
}
|
1624
|
-
|
1625
1537
|
.e-bigger .e-filemanager .e-large-icons .e-list-text,
|
1626
1538
|
.e-filemanager.e-bigger .e-large-icons .e-list-text {
|
1627
1539
|
font-size: 14px;
|
1628
1540
|
padding: 4px 2px 2px;
|
1629
1541
|
width: 94px;
|
1630
1542
|
}
|
1631
|
-
|
1632
1543
|
.e-bigger .e-filemanager .e-large-icons .e-list-img,
|
1633
1544
|
.e-filemanager.e-bigger .e-large-icons .e-list-img {
|
1634
1545
|
max-height: 79px;
|
1635
1546
|
max-width: 94px;
|
1636
1547
|
}
|
1637
|
-
|
1638
1548
|
.e-bigger .e-filemanager .e-large-icons .e-list-icon,
|
1639
1549
|
.e-filemanager.e-bigger .e-large-icons .e-list-icon {
|
1640
1550
|
height: 52px;
|
1641
1551
|
margin: 0 auto;
|
1642
1552
|
width: 52px;
|
1643
1553
|
}
|
1644
|
-
|
1645
1554
|
.e-bigger .e-filemanager .e-large-icons .e-empty,
|
1646
1555
|
.e-filemanager.e-bigger .e-large-icons .e-empty {
|
1647
1556
|
min-width: 300px;
|
1648
1557
|
}
|
1649
|
-
|
1650
1558
|
.e-bigger .e-filemanager .e-large-icons .e-empty-content,
|
1651
1559
|
.e-filemanager.e-bigger .e-large-icons .e-empty-content {
|
1652
1560
|
font-size: 22px;
|
@@ -1654,35 +1562,33 @@ ejs-filemanager {
|
|
1654
1562
|
padding: 12px;
|
1655
1563
|
text-align: center;
|
1656
1564
|
}
|
1657
|
-
|
1658
1565
|
.e-bigger .e-filemanager .e-large-icons .e-empty-icon,
|
1659
1566
|
.e-filemanager.e-bigger .e-large-icons .e-empty-icon {
|
1660
1567
|
height: 92px;
|
1661
1568
|
margin: 0 auto;
|
1662
1569
|
width: 92px;
|
1663
1570
|
}
|
1664
|
-
|
1665
1571
|
.e-bigger .e-filemanager .e-large-icons .e-empty-inner-content,
|
1666
1572
|
.e-filemanager.e-bigger .e-large-icons .e-empty-inner-content {
|
1667
1573
|
font-size: 14px;
|
1668
1574
|
margin: 0 auto;
|
1669
|
-
opacity: 0.5;
|
1670
1575
|
padding: 4px;
|
1671
1576
|
text-align: center;
|
1672
1577
|
}
|
1673
|
-
|
1578
|
+
.e-bigger .e-filemanager .e-large-icons .e-empty-inner-content,
|
1579
|
+
.e-filemanager.e-bigger .e-large-icons .e-empty-inner-content {
|
1580
|
+
opacity: 0.5;
|
1581
|
+
}
|
1674
1582
|
.e-bigger .e-filemanager.e-rtl .e-treeview > .e-ul,
|
1675
1583
|
.e-filemanager.e-bigger.e-rtl .e-treeview > .e-ul {
|
1676
1584
|
padding: 0 12px 0 0;
|
1677
1585
|
}
|
1678
|
-
|
1679
1586
|
.e-bigger .e-filemanager.e-rtl .e-grid .e-gridheader .e-fe-checkbox,
|
1680
1587
|
.e-bigger .e-filemanager.e-rtl .e-grid .e-gridcontent .e-fe-checkbox,
|
1681
1588
|
.e-filemanager.e-bigger.e-rtl .e-grid .e-gridheader .e-fe-checkbox,
|
1682
1589
|
.e-filemanager.e-bigger.e-rtl .e-grid .e-gridcontent .e-fe-checkbox {
|
1683
1590
|
padding-right: 16px;
|
1684
1591
|
}
|
1685
|
-
|
1686
1592
|
.e-bigger .e-filemanager .e-fe-overlay,
|
1687
1593
|
.e-filemanager.e-bigger .e-fe-overlay {
|
1688
1594
|
height: calc(100% - 41px);
|
@@ -1695,7 +1601,6 @@ ejs-filemanager {
|
|
1695
1601
|
width: calc(50% - 17px);
|
1696
1602
|
}
|
1697
1603
|
}
|
1698
|
-
|
1699
1604
|
@media (min-width: 470px) and (max-width: 625px) {
|
1700
1605
|
.e-bigger .e-filemanager.e-fe-mobile .e-large-icons .e-list-parent .e-list-item,
|
1701
1606
|
.e-filemanager.e-bigger.e-fe-mobile .e-large-icons .e-list-parent .e-list-item {
|
@@ -1703,196 +1608,9 @@ ejs-filemanager {
|
|
1703
1608
|
width: calc(33.33% - 17px);
|
1704
1609
|
}
|
1705
1610
|
}
|
1706
|
-
|
1707
|
-
.e-
|
1708
|
-
|
1709
|
-
|
1710
|
-
}
|
1711
|
-
|
1712
|
-
.e-filemanager {
|
1713
|
-
background: transparent;
|
1714
|
-
border-color: #292827;
|
1715
|
-
}
|
1716
|
-
|
1717
|
-
.e-filemanager .e-toolbar {
|
1718
|
-
border-bottom-color: #292827;
|
1719
|
-
}
|
1720
|
-
|
1721
|
-
.e-filemanager .e-toolbar .e-toolbar-items .e-toolbar-item .e-dropdown-btn.e-btn.e-tbar-btn.e-active {
|
1722
|
-
background: #252423;
|
1723
|
-
border-color: #8a8886;
|
1724
|
-
}
|
1725
|
-
|
1726
|
-
.e-filemanager .e-toolbar .e-toolbar-items .e-toolbar-item .e-dropdown-btn.e-btn.e-tbar-btn:hover {
|
1727
|
-
background: #252423;
|
1728
|
-
border-color: #8a8886;
|
1729
|
-
}
|
1730
|
-
|
1731
|
-
.e-filemanager .e-toolbar .e-toolbar-items .e-toolbar-item .e-dropdown-btn.e-btn.e-tbar-btn:focus {
|
1732
|
-
background: #252423;
|
1733
|
-
border-color: #8a8886;
|
1734
|
-
}
|
1735
|
-
|
1736
|
-
.e-filemanager .e-address {
|
1737
|
-
border-bottom-color: #292827;
|
1738
|
-
}
|
1739
|
-
|
1740
|
-
.e-filemanager .e-address .e-icons {
|
1741
|
-
color: #a19f9d;
|
1742
|
-
}
|
1743
|
-
|
1744
|
-
.e-filemanager .e-address .e-list-text {
|
1745
|
-
color: #c8c6c4;
|
1746
|
-
}
|
1747
|
-
|
1748
|
-
.e-filemanager .e-address .e-address-list-item {
|
1749
|
-
color: #c8c6c4;
|
1750
|
-
}
|
1751
|
-
|
1752
|
-
.e-filemanager .e-address .e-address-list-item:focus .e-list-text {
|
1753
|
-
background: #252423;
|
1754
|
-
color: #f3f2f1;
|
1755
|
-
}
|
1756
|
-
|
1757
|
-
.e-filemanager .e-address .e-address-list-item:last-child .e-list-text {
|
1758
|
-
color: #d2d0ce;
|
1759
|
-
}
|
1760
|
-
|
1761
|
-
.e-filemanager .e-address .e-address-list-item:not(:last-child) .e-list-text:hover {
|
1762
|
-
background: #252423;
|
1763
|
-
color: #f3f2f1;
|
1764
|
-
}
|
1765
|
-
|
1766
|
-
.e-filemanager .e-address .e-address-list-item:not(:last-child) .e-list-text:active {
|
1767
|
-
background: #252423;
|
1768
|
-
color: #f3f2f1;
|
1769
|
-
}
|
1770
|
-
|
1771
|
-
.e-filemanager .e-address .e-address-list-item:not(:last-child) .e-list-text:focus {
|
1772
|
-
background: #252423;
|
1773
|
-
color: #f3f2f1;
|
1774
|
-
}
|
1775
|
-
|
1776
|
-
.e-filemanager .e-address .e-search-wrap .e-input-group.e-control-wrapper:not(.e-success) {
|
1777
|
-
background: #1b1a19;
|
1778
|
-
border-color: #292827;
|
1779
|
-
}
|
1780
|
-
|
1781
|
-
.e-filemanager .e-treeview .e-list-item.e-active > .e-fullrow {
|
1782
|
-
border: #292827;
|
1783
|
-
}
|
1784
|
-
|
1785
|
-
.e-filemanager .e-treeview .e-list-parent .e-list-item.e-fe-drop-folder.e-hover > .e-fullrow {
|
1786
|
-
border-color: #0078d4;
|
1787
|
-
}
|
1788
|
-
|
1789
|
-
.e-filemanager .e-grid .e-gridheader .e-headercell:not(.e-fe-grid-icon):hover {
|
1790
|
-
background: #252423;
|
1791
|
-
}
|
1792
|
-
|
1793
|
-
.e-filemanager .e-grid .e-gridheader .e-headercell.e-fe-checkbox:hover {
|
1794
|
-
background: #1b1a19;
|
1795
|
-
}
|
1796
|
-
|
1797
|
-
.e-filemanager .e-grid .e-gridheader .e-headercell.e-fe-grid-icon .e-headercelldiv:hover {
|
1798
|
-
background: #252423;
|
1799
|
-
}
|
1800
|
-
|
1801
|
-
.e-filemanager .e-grid td.e-active {
|
1802
|
-
background-color: #292827;
|
1803
|
-
color: #fff;
|
1804
|
-
}
|
1805
|
-
|
1806
|
-
.e-filemanager .e-grid.e-gridhover tr[role='row'].e-fe-drop-file:not(.e-editedrow):hover .e-rowcell:not(.e-cellselectionbackground):not(.e-active):not(.e-updatedtd):not(.e-indentcell) {
|
1807
|
-
background-color: transparent;
|
1808
|
-
}
|
1809
|
-
|
1810
|
-
.e-filemanager .e-large-icons .e-list-img {
|
1811
|
-
border-color: #292827;
|
1812
|
-
}
|
1813
|
-
|
1814
|
-
.e-filemanager .e-large-icons .e-active {
|
1815
|
-
color: #fff;
|
1816
|
-
}
|
1817
|
-
|
1818
|
-
.e-filemanager .e-large-icons .e-large-icon {
|
1819
|
-
border-color: transparent;
|
1820
|
-
}
|
1821
|
-
|
1822
|
-
.e-filemanager .e-large-icons .e-large-icon.e-active {
|
1823
|
-
background: #292827;
|
1824
|
-
border-color: #292827;
|
1825
|
-
}
|
1826
|
-
|
1827
|
-
.e-filemanager .e-large-icons .e-large-icon.e-hover {
|
1828
|
-
background: #252423;
|
1829
|
-
border-color: #252423;
|
1830
|
-
}
|
1831
|
-
|
1832
|
-
.e-filemanager .e-large-icons .e-large-icon.e-active.e-hover {
|
1833
|
-
background: #292827;
|
1834
|
-
border-color: #292827;
|
1835
|
-
}
|
1836
|
-
|
1837
|
-
.e-filemanager .e-large-icons .e-large-icon.e-focus {
|
1838
|
-
border-color: #292827;
|
1839
|
-
}
|
1840
|
-
|
1841
|
-
.e-filemanager .e-large-icons .e-large-icon.e-hover.e-fe-drop-folder {
|
1842
|
-
border-color: #0078d4;
|
1843
|
-
}
|
1844
|
-
|
1845
|
-
.e-filemanager .e-large-icons .e-checkbox-wrapper .e-icons.e-check {
|
1846
|
-
background-color: #0078d4;
|
1847
|
-
color: #fff;
|
1848
|
-
}
|
1849
|
-
|
1850
|
-
.e-filemanager .e-fe-clone .e-fe-content {
|
1851
|
-
background-color: #252423;
|
1852
|
-
color: #d2d0ce;
|
1853
|
-
}
|
1854
|
-
|
1855
|
-
.e-filemanager .e-fe-clone .e-fe-count {
|
1856
|
-
background-color: #0078d4;
|
1857
|
-
border-color: #fff;
|
1858
|
-
color: #fff;
|
1859
|
-
}
|
1860
|
-
|
1861
|
-
.e-filemanager.e-fe-mobile .e-large-icons .e-large-icon.e-hover {
|
1862
|
-
background: transparent;
|
1863
|
-
border-color: transparent;
|
1864
|
-
}
|
1865
|
-
|
1866
|
-
.e-filemanager.e-fe-mobile .e-large-icons .e-large-icon.e-focus {
|
1867
|
-
border-color: transparent;
|
1868
|
-
}
|
1869
|
-
|
1870
|
-
.e-filemanager.e-fe-mobile .e-large-icons .e-large-icon.e-active {
|
1871
|
-
background: #292827;
|
1872
|
-
border-color: #292827;
|
1873
|
-
}
|
1874
|
-
|
1875
|
-
.e-fe-popup.e-dropdown-popup ul .e-item .e-fe-dot,
|
1876
|
-
.e-fe-popup.e-dropdown-popup ul .e-item .e-fe-tick,
|
1877
|
-
.e-fe-popup.e-contextmenu-wrapper ul .e-menu-item .e-fe-dot,
|
1878
|
-
.e-fe-popup.e-contextmenu-wrapper ul .e-menu-item .e-fe-tick,
|
1879
|
-
.e-fe-popup.e-contextmenu-container ul .e-menu-item .e-fe-dot,
|
1880
|
-
.e-fe-popup.e-contextmenu-container ul .e-menu-item .e-fe-tick {
|
1881
|
-
color: #a19f9d;
|
1882
|
-
}
|
1883
|
-
|
1884
|
-
.e-fe-popup.e-dialog td {
|
1885
|
-
color: #f3f2f1;
|
1886
|
-
}
|
1887
|
-
|
1888
|
-
.e-fe-popup.e-dialog td:first-child {
|
1889
|
-
color: #c8c6c4;
|
1890
|
-
}
|
1891
|
-
|
1892
|
-
.e-fe-popup .e-fe-error {
|
1893
|
-
color: #d13438;
|
1894
|
-
}
|
1895
|
-
|
1896
|
-
.e-fe-popup .e-upload .e-upload-actions {
|
1897
|
-
border-bottom-color: #292827;
|
1898
|
-
}
|
1611
|
+
@media (min-width: 360px) and (max-width: 500px) {
|
1612
|
+
.e-bigger .e-filemanager .e-grid .e-checkbox-wrapper .e-frame {
|
1613
|
+
position: relative;
|
1614
|
+
right: 10px;
|
1615
|
+
}
|
1616
|
+
}
|