Update story summary recall and prompt injection

This commit is contained in:
2026-01-26 23:50:48 +08:00
parent 13bcf5a0bb
commit a010681ea6
5 changed files with 1139 additions and 227 deletions

View File

@@ -1261,9 +1261,21 @@ h1 span {
#recall-log-modal .modal-box {
max-width: 900px;
display: flex;
flex-direction: column;
}
#recall-log-modal .modal-body {
flex: 1;
min-height: 0;
padding: 0;
display: flex;
flex-direction: column;
}
#recall-log-content {
flex: 1;
min-height: 0;
white-space: pre-wrap;
font-family: 'SF Mono', Monaco, Consolas, 'Courier New', monospace;
font-size: 12px;
@@ -1271,8 +1283,6 @@ h1 span {
background: var(--bg3);
padding: 16px;
border-radius: 4px;
min-height: 200px;
max-height: 60vh;
overflow-y: auto;
}
@@ -1283,6 +1293,21 @@ h1 span {
font-style: italic;
}
/* 移动端适配 */
@media (max-width: 768px) {
#recall-log-modal .modal-box {
max-width: 100%;
max-height: 100%;
height: 100%;
border-radius: 0;
}
#recall-log-content {
font-size: 11px;
padding: 12px;
}
}
/* ═══════════════════════════════════════════════════════════════════════════
HF Guide
═══════════════════════════════════════════════════════════════════════════ */