mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-02 08:15:56 +01:00
sessions - fix gap for diff indicator (#305556)
This commit is contained in:
@@ -181,7 +181,7 @@
|
||||
font-variant-numeric: tabular-nums;
|
||||
overflow: hidden;
|
||||
display: flex;
|
||||
gap: 4px;
|
||||
gap: 2px;
|
||||
|
||||
.session-diff-added {
|
||||
color: var(--vscode-chat-linesAddedForeground);
|
||||
|
||||
@@ -300,7 +300,6 @@ class SessionItemRenderer implements ITreeRenderer<SessionListItem, FuzzyScore,
|
||||
}
|
||||
const diffEl = DOM.append(template.detailsRow, $('span.session-diff'));
|
||||
DOM.append(diffEl, $('span.session-diff-added')).textContent = `+${insertions}`;
|
||||
DOM.append(diffEl, $('span')).textContent = ' ';
|
||||
DOM.append(diffEl, $('span.session-diff-removed')).textContent = `-${deletions}`;
|
||||
parts.push(diffEl);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user