rm animation delay on chat-list, user-container

3clyp50 committed Jan 15, 2026 at 13:31 UTC 1e5239b71c434b7eaa7fa5e91baa44b4b89715ea
2 files changed +8 -3
webui/components/sidebar/chats/chats-list.html
-1
@@ -95,7 +95,6 @@
95 width: 100%;
96 min-height: 40px;
97 border-radius: 4px;
98 - transition: background-color 0.2s ease-in-out;
98 overflow: hidden;
99 cursor: pointer;
100 }
webui/css/messages.css
+8 -2
@@ -662,13 +662,19 @@
662 }
663
664 .message-container {
665 - animation: fadeIn 0.5s;
666 - -webkit-animation: fadeIn 0.5s;
665 + animation: fadeIn 0.2s;
666 + -webkit-animation: fadeIn 0.2s;
667 /* margin-bottom: var(--spacing-sm); */
668 width: 100%;
669 max-width: 100%;
670 }
671
672 +/* User messages appear instantly */
673 +.message-container.user-container {
674 + animation: none !important;
675 + -webkit-animation: none !important;
676 +}
677 +
678 .message {
679 /* background-color: var(--color-message-bg); */
680 /* border-radius: 0; */