fix: a2ui is much closer to bDS parity than before

This commit is contained in:
2026-05-31 14:32:15 +02:00
parent a33131ddea
commit 040b5db37b
6 changed files with 16206 additions and 41 deletions

View File

@@ -370,28 +370,41 @@
.chat-surface-chart-heatmap {
display: grid;
gap: 2px;
font-size: 10px;
font-size: 11px;
}
.chat-surface-chart-heatmap-col-label,
.chat-surface-chart-heatmap-row-label {
display: flex;
align-items: center;
padding: 2px 4px;
color: var(--vscode-descriptionForeground);
.chat-surface-chart-heatmap-corner {
/* empty top-left cell */
}
.chat-surface-chart-heatmap-col-label {
justify-content: center;
text-align: center;
opacity: 0.7;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.chat-surface-chart-heatmap-row-label {
text-align: right;
padding-right: 4px;
opacity: 0.7;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
max-width: 80px;
}
.chat-surface-chart-heatmap-cell {
aspect-ratio: 1;
min-width: 14px;
min-height: 14px;
border-radius: 2px;
display: flex;
align-items: center;
justify-content: center;
min-height: 24px;
padding: 4px 2px;
border-radius: 2px;
font-size: 10px;
font-weight: 500;
font-variant-numeric: tabular-nums;
}