commit 1e44a17128cc7459225dc2dc5cf20231a93a1977
parent 50d7ff2e5d072e815e3d4fdb0de264d4be9a3cb4
Author: Hunter
Date: Mon, 2 Mar 2026 21:57:36 -0500
use grab/grabbing cursors when hovering images
Diffstat:
2 files changed, 2 insertions(+), 3 deletions(-)
diff --git a/script.js b/script.js
@@ -532,8 +532,7 @@ function setupImageHandlers(imageData) {
// Clear any existing timers from other images
clearDragState();
- // Lock cursor to move during drag operation
- document.body.style.cursor = 'move';
+ document.body.style.cursor = 'grabbing';
document.body.classList.add('dragging');
dragState = {
diff --git a/style.css b/style.css
@@ -228,7 +228,7 @@ body {
.image-container {
position: absolute;
- cursor: move;
+ cursor: grab;
outline: 2px solid transparent;
outline-offset: -2px;
transition: outline-color 0.2s;