From 9ba457c91fb01b81c3cdeb3d4ff03335c5395d57 Mon Sep 17 00:00:00 2001 From: Syngnat Date: Sun, 31 May 2026 13:41:16 +0800 Subject: [PATCH] =?UTF-8?q?=F0=9F=92=84=20style(query-editor):=20=E8=A1=A5?= =?UTF-8?q?=E5=85=85=E5=AF=B9=E8=B1=A1=E8=B7=B3=E8=BD=AC=E6=8F=90=E7=A4=BA?= =?UTF-8?q?=E6=A0=B7=E5=BC=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 为 QueryEditor Ctrl/Cmd 对象跳转提示补充虚线下划线样式 - 保持跳转命中时的可点击反馈与测试断言一致 --- frontend/src/App.css | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/frontend/src/App.css b/frontend/src/App.css index a7c6c19..304e218 100644 --- a/frontend/src/App.css +++ b/frontend/src/App.css @@ -648,3 +648,10 @@ body[data-theme='light'] .redis-viewer-workbench .ant-radio-button-wrapper-check transform: translateY(0); } } +.gonavi-query-editor-link-hint { + cursor: pointer; + text-decoration: underline; + text-decoration-style: dashed; + text-decoration-thickness: 1px; + text-underline-offset: 3px; +}