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