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