From fec2bc91067faa391bfc135ff7e21cc027419835 Mon Sep 17 00:00:00 2001 From: hmo Date: Sun, 19 Jul 2026 11:22:56 +0800 Subject: [PATCH] =?UTF-8?q?refactor:=20integrate=20spec=20system=20into=20?= =?UTF-8?q?all=209=20tabs=20=E2=80=94=20=3F=C2=A7=20buttons,=20native=20he?= =?UTF-8?q?alth=20monitoring?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- static/index.html | 249 ++++++++++++++++++++++++++++++++++++++++++++-- 1 file changed, 243 insertions(+), 6 deletions(-) diff --git a/static/index.html b/static/index.html index 39d65626..f119da69 100644 --- a/static/index.html +++ b/static/index.html @@ -19,6 +19,17 @@ body { background: #0f0f13; color: #e2e8f0; } .stock-row:hover { background: #22222e; cursor: pointer; } .loading { opacity: 0.5; pointer-events: none; } .modal-overlay { background: rgba(0,0,0,0.6); backdrop-filter: blur(4px); } +.spec-btn { + display: inline-flex; align-items: center; justify-content: center; + width: 18px; height: 18px; border-radius: 50%; + font-size: 11px; font-weight: 700; line-height: 1; + cursor: pointer; transition: background 0.15s; user-select: none; +} +.spec-btn.help { color: #58a6ff; background: rgba(88,166,255,0.1); } +.spec-btn.help:hover { background: rgba(88,166,255,0.25); } +.spec-btn.ai { color: #d29922; background: rgba(210,153,34,0.1); } +.spec-btn.ai:hover { background: rgba(210,153,34,0.25); } +.spec-btns { display: inline-flex; gap: 4px; } ::-webkit-scrollbar { width: 6px; } ::-webkit-scrollbar-track { background: #0f0f13; } ::-webkit-scrollbar-thumb { background: #333; border-radius: 3px; } @@ -67,9 +78,7 @@ body { background: #0f0f13; color: #e2e8f0; } - + @@ -82,6 +91,20 @@ body { background: #0f0f13; color: #e2e8f0; } + + +