From 057966469d1cc6f393d97ce32c2b10fe03e08573 Mon Sep 17 00:00:00 2001 From: Jared Miller Date: Wed, 28 Jan 2026 15:11:22 -0500 Subject: [PATCH] Add style popover with column layout and display controls --- public/index.html | 201 +++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 198 insertions(+), 3 deletions(-) diff --git a/public/index.html b/public/index.html index 7817aca..c9d967c 100644 --- a/public/index.html +++ b/public/index.html @@ -584,6 +584,86 @@ font-size: 14px; } + .settings-btn { + background: none; + border: none; + color: #888; + font-size: 20px; + cursor: pointer; + padding: 8px; + display: flex; + align-items: center; + justify-content: center; + min-width: 44px; + min-height: 44px; + border-radius: 4px; + transition: background 0.2s, color 0.2s; + } + + .settings-btn:hover { + background: rgba(255, 255, 255, 0.1); + color: #e0e0e0; + } + + .setting-group { + margin-bottom: 20px; + } + + .setting-group:last-child { + margin-bottom: 0; + } + + .setting-group label { + display: block; + font-size: 13px; + color: #888; + text-transform: uppercase; + letter-spacing: 0.5px; + margin-bottom: 8px; + font-weight: 600; + } + + .setting-buttons { + display: flex; + gap: 8px; + align-items: center; + flex-wrap: wrap; + } + + .setting-btn { + padding: 8px 16px; + border: 1px solid #3a3a3a; + border-radius: 6px; + background: #1a1a1a; + color: #e0e0e0; + font-size: 14px; + cursor: pointer; + min-width: 44px; + min-height: 44px; + transition: background 0.2s, border-color 0.2s; + } + + .setting-btn:hover { + background: rgba(255, 255, 255, 0.1); + } + + .setting-btn:active { + opacity: 0.7; + } + + .setting-btn.active { + background: #ff9800; + border-color: #ff9800; + color: white; + } + + .setting-display { + padding: 8px 16px; + color: #e0e0e0; + font-size: 14px; + font-weight: 600; + } + @media (prefers-color-scheme: light) { body { background: #f5f5f5; @@ -661,9 +741,12 @@

claude-remote

-
- - connecting +
+ +
+ + connecting +
@@ -703,6 +786,48 @@ + +