diff --git a/tasks/enduro-trails/prototype/static/app.css b/tasks/enduro-trails/prototype/static/app.css index acc8a16..6dc1931 100644 --- a/tasks/enduro-trails/prototype/static/app.css +++ b/tasks/enduro-trails/prototype/static/app.css @@ -451,7 +451,7 @@ body.has-map-mode #sheet-backdrop.visible { pointer-events: none; } #ruler-info.visible { display: flex; align-items: center; gap: 8px; } /* ── Waypoint Markers ─────────────────────────── */ -.route-waypoint-marker { filter: drop-shadow(0 2px 4px rgba(0,0,0,0.4)); } +.route-waypoint-marker { filter: drop-shadow(0 2px 4px rgba(0,0,0,0.4)); width: 28px; height: 36px; cursor: grab; display: block; } .route-waypoint-marker:active { cursor: grabbing; } .named-marker-el { font-size: 22px; cursor: pointer; filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5)); user-select: none; line-height: 1; } diff --git a/tasks/enduro-trails/prototype/static/app.js b/tasks/enduro-trails/prototype/static/app.js index 31372d3..719c276 100644 --- a/tasks/enduro-trails/prototype/static/app.js +++ b/tasks/enduro-trails/prototype/static/app.js @@ -460,7 +460,6 @@ function addWaypointMode() { function createWaypointMarkerEl(index, total) { const el = document.createElement('div'); el.className = 'route-waypoint-marker marker-anim'; - el.style.cssText = 'cursor: grab; width: 28px; height: 36px;'; let bg, label; if (index === 0) {