@emailmaker/filemanager 0.10.57 → 0.10.58

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 CHANGED
@@ -478,11 +478,24 @@
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;
486
+ inset: 0;
487
+ z-index: 2147483647;
488
+ background: transparent;
489
+ pointer-events: auto;
490
+ opacity: 1;
491
+ cursor: copy;
492
+ }
493
+
481
494
  /* Полноэкранный overlay при drag файлов (покрывает viewport, в т.ч. маску модалки) */
482
495
  .em-filemanager .dragOverlayGlobal {
483
496
  position: fixed;
484
497
  inset: 0;
485
- z-index: 99999;
498
+ z-index: 2147483646;
486
499
  background: rgba(0, 0, 0, 0.35);
487
500
  display: flex;
488
501
  align-items: center;