@emailmaker/filemanager 0.10.56 → 0.10.57
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/file-manager.css +11 -0
- package/file-manager.esm.js +1 -1
- package/file-manager.esm.js.map +1 -1
- package/file-manager.js +1 -1
- package/package.json +1 -1
package/file-manager.css
CHANGED
|
@@ -2910,6 +2910,17 @@
|
|
|
2910
2910
|
margin-top: 24px;
|
|
2911
2911
|
}
|
|
2912
2912
|
|
|
2913
|
+
/* Fix for Chrome on macOS: make modal mask transparent to drag events during file drag operations.
|
|
2914
|
+
This allows dragenter/dragover/drop events to pass through to the file manager content. */
|
|
2915
|
+
body[data-fm-dragging=true] .ant-modal-mask,
|
|
2916
|
+
body[data-fm-dragging=true] .ant-modal-wrap {
|
|
2917
|
+
pointer-events: none !important;
|
|
2918
|
+
}
|
|
2919
|
+
body[data-fm-dragging=true] .ant-modal-wrap .ant-modal,
|
|
2920
|
+
body[data-fm-dragging=true] .ant-modal-wrap .ant-modal-content {
|
|
2921
|
+
pointer-events: auto !important;
|
|
2922
|
+
}
|
|
2923
|
+
|
|
2913
2924
|
@media (max-width: 1200px) {
|
|
2914
2925
|
.em-filemanager .header-container .ant-btn > span:nth-child(2) {
|
|
2915
2926
|
display: none;
|