From adda666a399927710a02c4459e5accb9dd4019db Mon Sep 17 00:00:00 2001 From: Joel Krauska Date: Tue, 7 Oct 2025 14:04:14 -0700 Subject: [PATCH] Add Favorites and Remember Filters --- meshview/templates/map.html | 111 ++++++++++++++++++++++++++++++ meshview/templates/nodelist.html | 112 ++++++++++++++++++++++++++++++- 2 files changed, 221 insertions(+), 2 deletions(-) diff --git a/meshview/templates/map.html b/meshview/templates/map.html index 780ac8f..8797df1 100644 --- a/meshview/templates/map.html +++ b/meshview/templates/map.html @@ -43,6 +43,22 @@ #share-button:active { background-color: #3d8b40; } + #reset-filters-button { + margin-left: 10px; + padding: 5px 15px; + background-color: #f44336; + color: white; + border: none; + border-radius: 4px; + cursor: pointer; + font-size: 14px; + } + #reset-filters-button:hover { + background-color: #da190b; + } + #reset-filters-button:active { + background-color: #c41e0d; + } .blinking-tooltip { background: white; color: black; @@ -60,6 +76,7 @@
+