From 6d01759c84b4d87c514ba659f6a0fd380e58d7a6 Mon Sep 17 00:00:00 2001 From: cjh <1054535289@qq.com> Date: Fri, 14 Nov 2025 19:55:56 +0800 Subject: [PATCH] feat: improve toolbar responsiveness and UI layout MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Add responsive toolbar with container query (hide elements at ≤340px) - Remove unnecessary padding for better message alignment - Improve assistant message dot visibility with adaptive color - Update .gitignore to exclude .cursor directory --- .gitignore | 2 ++ src/webview/src/components/ButtonArea.vue | 4 ++++ .../src/components/Messages/AssistantMessage.vue | 2 +- .../blocks/tools/common/ToolMessageWrapper.vue | 2 +- src/webview/src/components/TokenIndicator.vue | 2 +- src/webview/src/styles/claude-theme.css | 13 +++++++++++++ 6 files changed, 22 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index dd3e8e8..678a4da 100644 --- a/.gitignore +++ b/.gitignore @@ -16,6 +16,8 @@ !.vscode/launch.json !.vscode/tasks.json .idea/ +.cursor + # OS .DS_Store diff --git a/src/webview/src/components/ButtonArea.vue b/src/webview/src/components/ButtonArea.vue index 9d0e182..7f895b9 100644 --- a/src/webview/src/components/ButtonArea.vue +++ b/src/webview/src/components/ButtonArea.vue @@ -28,6 +28,7 @@