diff --git a/CHANGELOG.md b/CHANGELOG.md index 3cd3be1..f1cfc67 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog -## Shift Key Multi‑Selection Changes 4/10/2025 +## Shift Key Multi‑Selection Changes 4/10/2025 v1.1.1 - **Implemented Range Selection:** - Modified the `toggleRowSelection` function so that when the Shift key is held down, all rows between the last clicked (anchor) row (stored as `window.lastSelectedFileRow`) and the currently clicked row are selected. @@ -30,7 +30,7 @@ - `shareFolder.php` updated to display format size. - Fix to prevent the filename text from overflowing its container in the gallery view. - Reduced header height. - - Create Folder changed to Material Icon `edit` + - Create Folder changed to Material Icon `create_new_folder` --- diff --git a/js/dragAndDrop.js b/js/dragAndDrop.js index c066c4d..46a0324 100644 --- a/js/dragAndDrop.js +++ b/js/dragAndDrop.js @@ -299,7 +299,7 @@ export function loadSidebarOrder() { modal = document.createElement('div'); modal.className = 'header-card-modal'; modal.style.position = 'fixed'; - modal.style.top = '80px'; + modal.style.top = '55px'; modal.style.right = '80px'; modal.style.zIndex = '11000'; // Render the modal but initially keep it hidden.