@emailmaker/filemanager 0.10.58 → 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 +28 -12
- 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
|
@@ -482,27 +482,43 @@
|
|
|
482
482
|
Покрывает весь viewport с максимальным z-index, чтобы перехватить события
|
|
483
483
|
до того, как их перехватит родительское приложение. */
|
|
484
484
|
.em-filemanager .dragCaptureLayer {
|
|
485
|
-
position: fixed;
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
|
|
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;
|
|
491
496
|
cursor: copy;
|
|
497
|
+
isolation: isolate;
|
|
498
|
+
overflow: visible !important;
|
|
499
|
+
transform: none !important;
|
|
492
500
|
}
|
|
493
501
|
|
|
494
502
|
/* Полноэкранный overlay при drag файлов (покрывает viewport, в т.ч. маску модалки) */
|
|
495
503
|
.em-filemanager .dragOverlayGlobal {
|
|
496
|
-
position: fixed;
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
|
|
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;
|
|
501
514
|
align-items: center;
|
|
502
515
|
justify-content: center;
|
|
503
|
-
pointer-events: auto;
|
|
516
|
+
pointer-events: auto !important;
|
|
504
517
|
backdrop-filter: blur(2px);
|
|
505
518
|
-webkit-backdrop-filter: blur(2px);
|
|
519
|
+
isolation: isolate;
|
|
520
|
+
overflow: visible !important;
|
|
521
|
+
transform: none !important;
|
|
506
522
|
}
|
|
507
523
|
.em-filemanager .dragOverlayGlobal .uploadIcon {
|
|
508
524
|
color: var(--colorPrimary, var(--ant-color-primary, #1677ff)) !important;
|