上傳檔案到「modules/story-summary」

This commit is contained in:
X
2026-02-15 09:59:07 +00:00
parent 8e3f34b5c1
commit 79f1af4857
4 changed files with 3440 additions and 234 deletions

View File

@@ -2377,10 +2377,9 @@ h1 span {
font-weight: 500;
color: var(--txt2);
transition: all .2s;
}
.settings-collapse-header:hover {
background: var(--bdr);
background: var(--bg3);
border: 2px solid var(--bdr);
border-radius: 3px;
}
.collapse-icon {
@@ -2769,124 +2768,7 @@ h1 span {
记忆锚点区域L0
═══════════════════════════════════════════════════════════════════════════ */
.anchor-section {
margin-top: 20px;
padding: 16px;
background: linear-gradient(135deg, rgba(255, 193, 7, 0.05), rgba(255, 152, 0, 0.05));
border: 1px solid rgba(255, 193, 7, 0.3);
border-radius: 8px;
}
.anchor-header {
margin-bottom: 12px;
}
.anchor-title {
display: flex;
align-items: center;
gap: 6px;
font-size: 0.875rem;
font-weight: 600;
color: var(--txt);
margin-bottom: 4px;
}
.anchor-icon {
font-size: 1rem;
}
.anchor-hint {
font-size: 0.75rem;
color: var(--txt3);
}
.anchor-stats {
display: flex;
flex-wrap: wrap;
align-items: center;
gap: 8px;
font-size: 0.8125rem;
color: var(--txt2);
margin-bottom: 12px;
padding: 8px 12px;
background: var(--bg2);
border-radius: 6px;
}
.anchor-stat-item {
display: flex;
align-items: center;
gap: 4px;
}
.anchor-stat-label {
color: var(--txt3);
}
.anchor-stat-value strong {
color: var(--hl);
font-weight: 600;
}
.anchor-stat-sep {
color: var(--txt3);
}
.anchor-stat-pending {
color: #f59e0b;
font-size: 0.75rem;
}
.anchor-stat-pending strong {
font-weight: 600;
}
.anchor-progress {
margin-bottom: 12px;
}
.anchor-actions {
display: flex;
gap: 8px;
}
.anchor-actions .btn {
flex: 1;
min-width: 0;
}
.vector-empty-warning {
font-size: 0.75rem;
color: #f59e0b;
margin-top: 6px;
}
@media (max-width: 768px) {
.anchor-section {
padding: 12px;
}
.anchor-stats {
flex-direction: column;
align-items: flex-start;
gap: 4px;
}
.anchor-stat-sep {
display: none;
}
}
@media (max-width: 480px) {
.anchor-title {
font-size: 0.8125rem;
}
.anchor-stats {
font-size: 0.75rem;
padding: 6px 10px;
}
}
/* ═══════════════════════════════════════════════════════════════════════════
Metrics Log Styling
@@ -3385,4 +3267,81 @@ h1 span {
.guide-card:hover {
border-color: var(--bdr2);
}
}
}
/* ═══════════════════════════════════════════════════════════════════════════
Neo-Brutalism UI Styles
═══════════════════════════════════════════════════════════════════════════ */
.neo-card {
background: var(--bg2);
border: 2px solid var(--bdr);
border-radius: 8px;
box-shadow: 4px 4px 0 var(--bdr);
padding: 16px;
margin-bottom: 24px;
transition: transform 0.2s, box-shadow 0.2s;
/* Ensure it doesn't overlap with flow */
position: relative;
}
.neo-card:hover {
transform: translate(1px, 1px);
box-shadow: 3px 3px 0 var(--bdr);
}
.neo-card-title {
font-size: 0.875rem;
font-weight: 700;
margin-bottom: 16px;
display: flex;
align-items: center;
gap: 10px;
color: var(--txt);
padding-bottom: 8px;
border-bottom: 2px solid var(--bdr);
}
.neo-badge {
/* Explicitly requested Black Background & White Text */
background: #000;
color: #fff;
padding: 2px 8px;
border-radius: 4px;
font-size: 0.75rem;
font-weight: 800;
letter-spacing: 0.05em;
display: inline-block;
}
/* Specific tweaks for neo-card content */
.neo-card .settings-row {
margin-bottom: 12px;
}
.neo-card .vector-stats {
background: var(--bg3);
border: 1px solid var(--bdr);
padding: 10px;
border-radius: 6px;
}
.neo-card .settings-hint {
color: var(--txt2);
}
/* Tools section styling */
.neo-tools-header {
display: flex;
align-items: center;
justify-content: space-between;
margin-top: 32px;
margin-bottom: 16px;
padding-bottom: 8px;
border-bottom: 2px dashed var(--bdr);
color: var(--txt3);
font-weight: 600;
text-transform: uppercase;
font-size: 0.75rem;
letter-spacing: 0.1em;
}