@emailmaker/filemanager 0.10.53 → 0.10.54

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
@@ -27,6 +27,7 @@
27
27
  margin: auto;
28
28
  max-width: 420px;
29
29
  }
30
+ @charset "UTF-8";
30
31
  .em-filemanager .contentLayout {
31
32
  display: flex;
32
33
  flex-direction: column;
@@ -459,6 +460,14 @@
459
460
  backdrop-filter: blur(2px);
460
461
  -webkit-backdrop-filter: blur(2px);
461
462
  }
463
+ .em-filemanager .dragOverlay .uploadIcon {
464
+ color: var(--colorPrimary, var(--ant-color-primary, #1677ff)) !important;
465
+ }
466
+ .em-filemanager .dragOverlay .uploadIcon span,
467
+ .em-filemanager .dragOverlay .uploadIcon .anticon,
468
+ .em-filemanager .dragOverlay .uploadIcon svg {
469
+ color: inherit !important;
470
+ }
462
471
 
463
472
  .em-filemanager .dragOverlayInner {
464
473
  background: rgba(255, 255, 255, 0.95);
@@ -469,6 +478,28 @@
469
478
  pointer-events: none;
470
479
  }
471
480
 
481
+ /* Полноэкранный overlay при drag файлов (покрывает viewport, в т.ч. маску модалки) */
482
+ .em-filemanager .dragOverlayGlobal {
483
+ position: fixed;
484
+ inset: 0;
485
+ z-index: 99999;
486
+ background: rgba(0, 0, 0, 0.35);
487
+ display: flex;
488
+ align-items: center;
489
+ justify-content: center;
490
+ pointer-events: auto;
491
+ backdrop-filter: blur(2px);
492
+ -webkit-backdrop-filter: blur(2px);
493
+ }
494
+ .em-filemanager .dragOverlayGlobal .uploadIcon {
495
+ color: var(--colorPrimary, var(--ant-color-primary, #1677ff)) !important;
496
+ }
497
+ .em-filemanager .dragOverlayGlobal .uploadIcon span,
498
+ .em-filemanager .dragOverlayGlobal .uploadIcon .anticon,
499
+ .em-filemanager .dragOverlayGlobal .uploadIcon svg {
500
+ color: inherit !important;
501
+ }
502
+
472
503
  .em-filemanager .noFiles {
473
504
  width: 640px;
474
505
  text-align: center;