From 09ae9d0ce3fb556492db06cf90c357c34006644d Mon Sep 17 00:00:00 2001 From: Eli Ribble Date: Tue, 24 Mar 2026 09:36:20 -0700 Subject: [PATCH] Move map interfaces to common types for sharing --- ts/components/CommunicationColumnDetail.vue | 11 ---- ts/components/MapMultipoint.vue | 30 +++------ ts/components/MapProxiedArcgisTile.vue | 67 ++++++++++++--------- ts/components/PlanningColumnDetailEntry.vue | 34 +++-------- ts/types.ts | 14 +++++ ts/view/Communication.vue | 12 ++-- ts/view/Planning.vue | 1 - 7 files changed, 77 insertions(+), 92 deletions(-) diff --git a/ts/components/CommunicationColumnDetail.vue b/ts/components/CommunicationColumnDetail.vue index fb0bd2b0..d144f5a2 100644 --- a/ts/components/CommunicationColumnDetail.vue +++ b/ts/components/CommunicationColumnDetail.vue @@ -27,17 +27,6 @@ height: 400px; width: 100%; } -.photo-thumbnail { - width: 100px; - height: 100px; - object-fit: cover; - cursor: pointer; - border-radius: 4px; - transition: transform 0.2s; -} -.photo-thumbnail:hover { - transform: scale(1.05); -}