diff --git a/src/network/html/FilesPage.html b/src/network/html/FilesPage.html index 96795d17..7b95966e 100644 --- a/src/network/html/FilesPage.html +++ b/src/network/html/FilesPage.html @@ -167,6 +167,36 @@ background-color: #c0392b; } + /* Drag & drop overlay */ + .drop-overlay { + display: none; + position: fixed; + top: 0; + left: 0; + right: 0; + bottom: 0; + background: rgba(52, 152, 219, 0.15); + border: 4px dashed #3498db; + z-index: 300; + justify-content: center; + align-items: center; + pointer-events: none; + } + + .drop-overlay.active { + display: flex; + } + + .drop-overlay-message { + background: var(--card-bg); + color: #3498db; + padding: 24px 40px; + border-radius: 12px; + font-size: 1.4em; + font-weight: bold; + box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25); + } + /* Upload modal */ .modal-overlay { display: none; @@ -1760,6 +1790,11 @@ + +
+