Show only positioned accounts on the dashboard.

Drop per-exchange fund metrics and render open positions as labeled tables while keeping closed-trade details.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
dekun
2026-07-17 14:13:44 +08:00
parent 33b3e5f54b
commit 0bda44248f
4 changed files with 120 additions and 99 deletions
+41
View File
@@ -350,6 +350,47 @@ body.hub-page-dashboard .page#page-dashboard {
white-space: nowrap;
}
.dash-ac-card-pos-only {
gap: 8px;
}
.dash-ac-pos-body {
display: flex;
flex-direction: column;
gap: 10px;
}
.dash-pos-block .dash-ac-section-label {
margin-bottom: 4px;
}
.dash-pos-source {
display: inline-block;
padding: 1px 6px;
border-radius: 999px;
font-size: 0.66rem;
font-weight: 600;
letter-spacing: 0.02em;
}
.dash-pos-source.is-perp {
color: #93c5fd;
background: rgba(59, 130, 246, 0.18);
border: 1px solid rgba(59, 130, 246, 0.35);
}
.dash-pos-source.is-opt {
color: #c4b5fd;
background: rgba(139, 92, 246, 0.18);
border: 1px solid rgba(139, 92, 246, 0.35);
}
.dash-pos-table th,
.dash-pos-table td {
font-size: 0.72rem;
white-space: nowrap;
}
.dash-ac-metrics-3col .dash-ac-metric {
text-align: center;
}