From d71c935d3cc8553a504ca5727606bb2f8d6d6663 Mon Sep 17 00:00:00 2001 From: JOJO <1498581755@qq.com> Date: Fri, 21 Nov 2025 10:41:49 +0800 Subject: [PATCH] fix: vector stop icon --- static/index.html | 2 +- static/style.css | 12 ++++++++++++ 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/static/index.html b/static/index.html index 86f0f3e..ae7d0f8 100644 --- a/static/index.html +++ b/static/index.html @@ -523,7 +523,7 @@ class="stadium-btn send-btn" @click="handleSendOrStop" :disabled="!isConnected || (!inputMessage.trim() && !streamingMessage)"> - + diff --git a/static/style.css b/static/style.css index 919aa68..b0867dc 100644 --- a/static/style.css +++ b/static/style.css @@ -1613,10 +1613,22 @@ o-conversations { margin-left: 5px; } +.stadium-btn.send-btn .stop-icon { + width: 12px; + height: 12px; + border-radius: 2px; + background-color: #fffaf0; + display: block; +} + .stadium-btn.send-btn:disabled .send-icon { border-left-color: rgba(255, 255, 255, 0.4); } +.stadium-btn.send-btn:disabled .stop-icon { + background-color: rgba(255, 255, 255, 0.4); +} + .stadium-shell.is-multiline .stadium-btn { align-self: flex-end; margin-top: 0;