From ed6a23e163e0e7a828c388061f8b31e602a89cf8 Mon Sep 17 00:00:00 2001 From: Raymond Yee Date: Fri, 5 Jun 2026 10:45:52 -0700 Subject: [PATCH] explorer: remove duplicate sidebar search box (#266) The sidebar search input (#sampleSearchSidebar) was a mirror of the canonical in-map search overlay (#sampleSearch). Two visible search bars read as two independent searches and confused users (Andrea, #266). Removes the sidebar input + its CSS, the bidirectional mirror wiring, and three defensive value-sync one-liners. The in-map overlay remains the single source of truth for both world and area search; no search functionality is lost. Co-Authored-By: Claude Opus 4.8 (1M context) --- explorer.qmd | 50 ++++---------------------------------------------- 1 file changed, 4 insertions(+), 46 deletions(-) diff --git a/explorer.qmd b/explorer.qmd index 6448f77..ec3d902 100644 --- a/explorer.qmd +++ b/explorer.qmd @@ -216,17 +216,6 @@ format: padding: 4px 8px; } } - .sidebar-search { display: flex; flex-direction: column; gap: 4px; } - .sidebar-search input { - width: 100%; - padding: 7px 10px; - border: 1px solid #ccc; - border-radius: 4px; - font-size: 13px; - outline: none; - } - .sidebar-search input:focus { border-color: #1565c0; box-shadow: 0 0 0 2px rgba(21,101,192,0.15); } - .sidebar-search-hint { font-size: 11px; color: #888; } .side-panel { display: flex; flex-direction: column; @@ -652,10 +641,6 @@ Circle size = log(sample count). Color = dominant data source.
-