修复消息turn有时展开异常

This commit is contained in:
xintaofei
2026-03-24 21:36:00 +08:00
parent 0d16d82eb9
commit 7d1db72b3e
3 changed files with 24 additions and 4 deletions

View File

@@ -231,6 +231,20 @@
}
/* Tool collapsible: fade-in on expand (height must change instantly for virtualizer) */
.tool-collapsible-content[data-state="open"] > * {
animation: tool-content-fade 150ms ease-out;
}
@keyframes tool-content-fade {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
.select-none {
-webkit-user-select: none;
-moz-user-select: none;