Keep calendar day trades inline and hide K-line by default.

Show selected-day trades under the calendar without tab jumps, put trades first, and open the chart only via toolbar or row actions.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
dekun
2026-07-17 14:05:59 +08:00
parent e70e6c7b13
commit 33b3e5f54b
3 changed files with 165 additions and 48 deletions
+34 -1
View File
@@ -8741,8 +8741,41 @@ body.funds-fullscreen-open {
font-size: 0.76rem;
color: var(--muted);
}
.archive-calendar-day-trades {
margin-top: 12px;
border-top: 1px solid var(--border-soft);
padding-top: 12px;
display: flex;
flex-direction: column;
gap: 8px;
}
.archive-calendar-day-trades .archive-panel-head h3 {
margin: 0;
font-size: 0.9rem;
}
.archive-calendar-day-trades-body {
overflow: auto;
max-height: min(360px, 45vh);
}
.archive-chart-section {
display: flex;
flex-direction: column;
gap: 8px;
padding: 10px;
border: 1px solid var(--border-soft);
border-radius: 8px;
background: var(--inset-surface);
margin-bottom: 10px;
}
.archive-chart-section[hidden] {
display: none !important;
}
.archive-chart-title-row {
font-size: 0.78rem;
color: var(--muted);
}
.archive-chart-section > :not(summary) {
padding: 0 10px 10px;
padding: 0;
}
.archive-trades-section {
flex: 0 0 auto;