adjust card mouseover start position
This commit is contained in:
@@ -1,6 +1,6 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
## Shift Key Multi‑Selection Changes 4/10/2025
|
## Shift Key Multi‑Selection Changes 4/10/2025 v1.1.1
|
||||||
|
|
||||||
- **Implemented Range Selection:**
|
- **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.
|
- 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.
|
- `shareFolder.php` updated to display format size.
|
||||||
- Fix to prevent the filename text from overflowing its container in the gallery view.
|
- Fix to prevent the filename text from overflowing its container in the gallery view.
|
||||||
- Reduced header height.
|
- Reduced header height.
|
||||||
- Create Folder changed to Material Icon `edit`
|
- Create Folder changed to Material Icon `create_new_folder`
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|||||||
@@ -299,7 +299,7 @@ export function loadSidebarOrder() {
|
|||||||
modal = document.createElement('div');
|
modal = document.createElement('div');
|
||||||
modal.className = 'header-card-modal';
|
modal.className = 'header-card-modal';
|
||||||
modal.style.position = 'fixed';
|
modal.style.position = 'fixed';
|
||||||
modal.style.top = '80px';
|
modal.style.top = '55px';
|
||||||
modal.style.right = '80px';
|
modal.style.right = '80px';
|
||||||
modal.style.zIndex = '11000';
|
modal.style.zIndex = '11000';
|
||||||
// Render the modal but initially keep it hidden.
|
// Render the modal but initially keep it hidden.
|
||||||
|
|||||||
Reference in New Issue
Block a user