Scrollbars colors and animation
Alessandro committed
Sep 21, 2024 at 11:36 UTC
68455cf9c5f7b93a3b5a24bc30134ea790ffb2e7
1 file changed
+6
webui/index.css
+6
@@ -226,7 +226,13 @@ h4 {
226
#chat-history::-webkit-scrollbar-thumb {
227
border-radius: 10px;
228
-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
229
+ --color-background: var(--color-background-light);
230
+ transition: background-color 0.3s ease; /* Adjust duration and easing as needed */
231
+}
232
+
233
+#chat-history::-webkit-scrollbar-thumb:hover {
234
background-color: #555;
235
+ transition: background-color 0.3s ease; /* Adjust duration and easing as needed */
236
}
237
238
/* Message Styles */