From 081630f732434097d5b4e6614638ef2762bb6416 Mon Sep 17 00:00:00 2001 From: cc <94575594@qq.com> Date: Sat, 28 Mar 2026 18:35:19 +0800 Subject: [PATCH] =?UTF-8?q?style:=20=E4=BC=98=E5=8C=96=E7=BB=93=E6=9E=9C?= =?UTF-8?q?=E5=86=85=E5=AE=B9=E5=8C=BA=E5=9F=9F=E6=BB=9A=E5=8A=A8=E6=9D=A1?= =?UTF-8?q?=E6=A0=B7=E5=BC=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/AudioToText.vue | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/src/views/AudioToText.vue b/src/views/AudioToText.vue index 42758c3..50f00f1 100644 --- a/src/views/AudioToText.vue +++ b/src/views/AudioToText.vue @@ -1028,6 +1028,30 @@ const reset = () => { overflow-y: auto; } +/* result-content 滚动条样式 */ +.result-content::-webkit-scrollbar { + width: 6px; +} + +.result-content::-webkit-scrollbar-track { + background: rgba(0, 0, 0, 0.15); + border-radius: 3px; +} + +.result-content::-webkit-scrollbar-thumb { + background: rgba(139, 92, 246, 0.35); + border-radius: 3px; + transition: background 0.2s; +} + +.result-content::-webkit-scrollbar-thumb:hover { + background: rgba(139, 92, 246, 0.55); +} + +.result-content::-webkit-scrollbar-thumb:active { + background: rgba(139, 92, 246, 0.75); +} + .result-card.is-optimizing { border-color: rgba(16, 185, 129, 0.3); box-shadow: 0 0 20px rgba(16, 185, 129, 0.1);