auto-sync: 2026-05-05 18:40:01

This commit is contained in:
Stream
2026-05-05 18:40:01 +03:00
parent 69df4061f5
commit 9155fd4b29
2 changed files with 1 additions and 2 deletions

View File

@@ -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; }

View File

@@ -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) {