Add truncated completion joining

This commit is contained in:
Webifi
2023-06-07 16:54:20 -05:00
parent d768f4b355
commit c3172eb4aa
5 changed files with 130 additions and 23 deletions

View File

@@ -622,6 +622,24 @@ aside.menu.main-menu .menu-expanse {
animation: cursor-blink 1s steps(2) infinite;
}
.message:last-of-type.incomplete .message-display p:last-of-type::after {
position: relative;
content: '...';
margin-left: 4px;
font-weight: bold;
animation: cursor-blink 1s steps(2) infinite;
}
.message.incomplete .tool-drawer .msg-incomplete {
display: none;
}
.message:last-of-type.incomplete .tool-drawer .msg-incomplete {
display: block;
}
.modal {
z-index:100;
}