From bd6db376247debc45e20a59a2280b963e2146781 Mon Sep 17 00:00:00 2001 From: nick2000713 Date: Mon, 29 Jun 2026 11:55:18 +0200 Subject: [PATCH] fix(ui): info icons show the button hand, not the text caret (Windows) The settings info icons are role="button" spans with a text "i" glyph but no cursor/user-select, so hovering the glyph gave the I-beam text caret on Windows (Linux happened to resolve a pointer). Add cursor:pointer + user-select:none so it reads as a button on every platform. Co-Authored-By: Claude Opus 4.8 --- webui/static/style.css | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/webui/static/style.css b/webui/static/style.css index 3b3be24d..89176be1 100644 --- a/webui/static/style.css +++ b/webui/static/style.css @@ -56092,6 +56092,13 @@ tr.tag-diff-same { #settings-page .info-icon { /* Single clean circle with a centred "i" (was the ⓘ glyph, which carried its own inner circle → a double-circle that read as off-centre). */ + /* It's a role="button" with a text "i" inside — without these, hovering the + glyph gives the I-beam text caret on Windows (Linux happened to resolve a + pointer). Force the button hand + make the glyph non-selectable so the + cursor is the same on every platform. */ + cursor: pointer; + -webkit-user-select: none; + user-select: none; display: inline-flex; align-items: center; justify-content: center;