Add files via upload

This commit is contained in:
公明
2026-05-27 15:21:31 +08:00
committed by GitHub
parent 8138f8b576
commit bad323cd0e
7 changed files with 472 additions and 31 deletions
+45
View File
@@ -1744,6 +1744,7 @@ header {
background: #f5f7fa;
overflow: hidden;
height: 100%;
position: relative;
}
/* 会话顶部栏样式 */
@@ -1772,6 +1773,43 @@ header {
min-height: 0;
}
.chat-scroll-to-bottom {
position: absolute;
right: 24px;
bottom: 88px;
z-index: 20;
padding: 8px 14px;
border-radius: 20px;
border: 1px solid rgba(0, 102, 255, 0.25);
background: rgba(255, 255, 255, 0.96);
color: var(--accent-color);
font-size: 0.8125rem;
font-weight: 500;
line-height: 1.2;
cursor: pointer;
box-shadow: 0 4px 16px rgba(15, 23, 42, 0.12);
opacity: 0;
pointer-events: none;
transform: translateY(8px);
transition: opacity 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.chat-scroll-to-bottom.visible {
opacity: 1;
pointer-events: auto;
transform: translateY(0);
}
.chat-scroll-to-bottom:hover {
background: #fff;
box-shadow: 0 6px 20px rgba(15, 23, 42, 0.16);
}
.chat-scroll-to-bottom:focus-visible {
outline: 2px solid var(--accent-color);
outline-offset: 2px;
}
.message {
margin-bottom: 24px;
display: flex;
@@ -3692,6 +3730,13 @@ header {
overflow-y: auto;
}
/* 流式执行中:取消时间线内层滚动,由 #chat-messages 统一跟随 */
.progress-container.is-streaming .progress-timeline.expanded,
.process-details-container.is-streaming .process-details-content .progress-timeline.expanded {
max-height: none;
overflow: visible;
}
.timeline-item {
padding: 12px;
margin-bottom: 8px;