adjust card mouseover start position

This commit is contained in:
Ryan
2025-04-10 03:18:08 -04:00
committed by GitHub
parent 7cce03d092
commit 5b592575a4
2 changed files with 3 additions and 3 deletions

View File

@@ -1,6 +1,6 @@
# Changelog
## Shift Key MultiSelection Changes 4/10/2025
## Shift Key MultiSelection 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`
---

View File

@@ -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.