[object Object]

← back to Rentv Sheet Enrich

Live console: turn OFF grouping (removes the unwanted black header bars; one-time reset, Group dropdown still available); readable theme-aware scrollbars for night mode

5e82fcf68b2c08594d68fe5d66c53e86f6e8907e · 2026-08-13 16:20:57 -0700 · Steve Abrams

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>

Files touched

Diff

commit 5e82fcf68b2c08594d68fe5d66c53e86f6e8907e
Author: Steve Abrams <steve@designerwallcoverings.com>
Date:   Thu Aug 13 16:20:57 2026 -0700

    Live console: turn OFF grouping (removes the unwanted black header bars; one-time reset, Group dropdown still available); readable theme-aware scrollbars for night mode
    
    Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
---
 public_live/index.html | 9 +++++++++
 1 file changed, 9 insertions(+)

diff --git a/public_live/index.html b/public_live/index.html
index f3350b2..40adc1b 100644
--- a/public_live/index.html
+++ b/public_live/index.html
@@ -18,6 +18,13 @@
     --rowhover:#eaf1f8; --cellfocus:#dcebfb; --linkhover:#e4f0ff;
     --ghdr-bg:rgba(76,155,232,.13); --ghdr-fg:#1d5c96; --linkval-li:#1a66c2;}
   body{margin:0;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif;background:var(--bg);color:var(--ink);font-size:var(--fs)}
+  /* scrollbars (horizontal + vertical) — visible in night mode, theme-aware */
+  html{scrollbar-color:var(--line) var(--panel);scrollbar-width:thin}
+  ::-webkit-scrollbar{width:14px;height:14px}
+  ::-webkit-scrollbar-track{background:var(--panel)}
+  ::-webkit-scrollbar-thumb{background:var(--line);border-radius:8px;border:3px solid var(--panel)}
+  ::-webkit-scrollbar-thumb:hover{background:var(--accent)}
+  ::-webkit-scrollbar-corner{background:var(--panel)}
   header{position:sticky;top:0;z-index:40;background:var(--panel);border-bottom:1px solid var(--line);display:flex;align-items:center;gap:12px;padding:9px 14px;flex-wrap:wrap}
   header h1{font-size:15px;margin:0;font-weight:700;letter-spacing:.3px;white-space:nowrap}
   header h1 span{color:var(--accent)}
@@ -190,6 +197,8 @@ let VIEW=LS.get('view','table'), GID=LS.get('gid',null), editing=false, curRow=n
 let SELECTED=new Set(LS.get('sheets',[]));   // selected sheet gids (1..all) shown combined
 function curKey(){ return SELECTED.size===1 ? String([...SELECTED][0]) : ('combo.'+[...SELECTED].sort().join('-')); }
 let FILTERS={}, SEARCH='', SORT=LS.get('sort',null), GROUP=LS.get('group',''), HIDDEN=new Set(LS.get('hidden.'+(GID||''),[])), COLW={}, ORDER=[], dragCol=null;
+// one-time reset: grouping was on by default and produced unwanted black header bars — turn it off (Group dropdown re-enables it)
+if(!LS.get('nogroup2026')){ GROUP=''; LS.set('group',''); LS.set('nogroup2026',1); }
 let LOOKUP=null;   // when set to a column index, the main area shows that field's full value lookup
 const MAXROWS=2500;
 function pk(){return 'p'+GID}  // per-tab localStorage namespace

← e2b2b9e Draft drawer: contact data on a white card (crisp links, not  ·  back to Rentv Sheet Enrich  ·  Live console: FORCE grouping off on every load (kills the bl 2a21996 →