@emailmaker/filemanager 0.10.57 → 0.10.59
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 +35 -6
- package/file-manager.esm.js +8 -8
- package/file-manager.esm.js.map +1 -1
- package/file-manager.js +1 -1
- package/package.json +1 -1
package/file-manager.css
CHANGED
|
@@ -478,18 +478,47 @@
|
|
|
478
478
|
pointer-events: none;
|
|
479
479
|
}
|
|
480
480
|
|
|
481
|
+
/* Невидимый capture layer для перехвата drag событий в Chrome на macOS.
|
|
482
|
+
Покрывает весь viewport с максимальным z-index, чтобы перехватить события
|
|
483
|
+
до того, как их перехватит родительское приложение. */
|
|
484
|
+
.em-filemanager .dragCaptureLayer {
|
|
485
|
+
position: fixed !important;
|
|
486
|
+
top: 0 !important;
|
|
487
|
+
left: 0 !important;
|
|
488
|
+
right: 0 !important;
|
|
489
|
+
bottom: 0 !important;
|
|
490
|
+
width: 100vw !important;
|
|
491
|
+
height: 100vh !important;
|
|
492
|
+
z-index: 2147483647 !important;
|
|
493
|
+
background: transparent !important;
|
|
494
|
+
pointer-events: auto !important;
|
|
495
|
+
opacity: 1 !important;
|
|
496
|
+
cursor: copy;
|
|
497
|
+
isolation: isolate;
|
|
498
|
+
overflow: visible !important;
|
|
499
|
+
transform: none !important;
|
|
500
|
+
}
|
|
501
|
+
|
|
481
502
|
/* Полноэкранный overlay при drag файлов (покрывает viewport, в т.ч. маску модалки) */
|
|
482
503
|
.em-filemanager .dragOverlayGlobal {
|
|
483
|
-
position: fixed;
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
|
|
504
|
+
position: fixed !important;
|
|
505
|
+
top: 0 !important;
|
|
506
|
+
left: 0 !important;
|
|
507
|
+
right: 0 !important;
|
|
508
|
+
bottom: 0 !important;
|
|
509
|
+
width: 100vw !important;
|
|
510
|
+
height: 100vh !important;
|
|
511
|
+
z-index: 2147483646 !important;
|
|
512
|
+
background: rgba(0, 0, 0, 0.35) !important;
|
|
513
|
+
display: flex !important;
|
|
488
514
|
align-items: center;
|
|
489
515
|
justify-content: center;
|
|
490
|
-
pointer-events: auto;
|
|
516
|
+
pointer-events: auto !important;
|
|
491
517
|
backdrop-filter: blur(2px);
|
|
492
518
|
-webkit-backdrop-filter: blur(2px);
|
|
519
|
+
isolation: isolate;
|
|
520
|
+
overflow: visible !important;
|
|
521
|
+
transform: none !important;
|
|
493
522
|
}
|
|
494
523
|
.em-filemanager .dragOverlayGlobal .uploadIcon {
|
|
495
524
|
color: var(--colorPrimary, var(--ant-color-primary, #1677ff)) !important;
|