From e5d040ef61e79a1ae03cc64d39ddcfbd8582eb11 Mon Sep 17 00:00:00 2001 From: Joffrey JAFFEUX Date: Wed, 22 May 2024 13:48:44 +0200 Subject: [PATCH] UX: removes blinking indicator while streaming message (#27131) Given this is currently buggy and we have the cancel button Im not sure this is actually necessary. I feel like it's adding a lot of noise of low value. For now at least, it's better without it. --- .../stylesheets/common/chat-message-text.scss | 19 ------------------- 1 file changed, 19 deletions(-) diff --git a/plugins/chat/assets/stylesheets/common/chat-message-text.scss b/plugins/chat/assets/stylesheets/common/chat-message-text.scss index 0630bc95927..e46f1130a01 100644 --- a/plugins/chat/assets/stylesheets/common/chat-message-text.scss +++ b/plugins/chat/assets/stylesheets/common/chat-message-text.scss @@ -1,23 +1,4 @@ .chat-message-container.-streaming { - .chat-message-text { - @keyframes cursor-blink { - 0% { - opacity: 0; - } - } - - p::after { - margin-left: 1px; - margin-bottom: -4px; - content: ""; - width: 6px; - height: 17px; - background: var(--primary); - display: inline-block; - animation: cursor-blink 0.5s steps(2) infinite; - } - } - .stop-streaming-btn { margin-top: 0.5rem; margin-bottom: 0.25rem;