[ice] budget tab: dynamic live prices from details, hide options without scraped data

This commit is contained in:
2026-04-30 18:12:27 -07:00
parent accf9a57f6
commit 1926839a4b
2 changed files with 280 additions and 133 deletions

View File

@@ -70,6 +70,16 @@
margin-bottom: 0.25rem;
}
.leader-price {
font-size: 0.72rem;
color: #00d4ff;
font-weight: 600;
margin-bottom: 0.25rem;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.leader-votes {
font-size: 0.7rem;
opacity: 0.5;
@@ -136,12 +146,21 @@
.breakdown-row {
display: grid;
grid-template-columns: 1fr repeat(3, 80px);
grid-template-columns: 1fr 1.4fr repeat(3, 70px);
padding: 0.5rem 0.75rem;
font-size: 0.8rem;
border-bottom: 1px solid var(--border, #2a2a3a);
}
.source-cell {
font-size: 0.65rem;
opacity: 0.6;
text-align: left !important;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.breakdown-row:last-child {
border-bottom: none;
}