File size: 408 Bytes
494c9e4 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | // 生成类页面(Raw Chat、Causal Flow 等)共用:转圈与生成结束原因同槽展示
.generation-status-slot.loader-small-container {
display: flex;
align-items: center;
}
.generation-status-slot .generation-end-reason {
font-size: 8.5pt;
font-style: italic;
color: var(--text-muted);
line-height: 1.2;
}
.generation-status-slot .generation-end-reason:empty {
display: none;
}
|