Sessions: Update no changed files message and adjust styles in changes view (#305751)

* style: add padding adjustment for action widget list rows

Co-authored-by: Copilot <copilot@github.com>

* style: update welcome message and adjust padding and icon size in changes view

Co-authored-by: Copilot <copilot@github.com>

* Update src/vs/sessions/contrib/changes/browser/changesView.ts

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>

---------

Co-authored-by: mrleemurray <mrleemurray@users.noreply.github.com>
Co-authored-by: Copilot <copilot@github.com>
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
This commit is contained in:
Lee Murray
2026-03-27 18:15:07 +00:00
committed by GitHub
parent 6ef843ff0b
commit 510195d638
3 changed files with 9 additions and 4 deletions

View File

@@ -410,7 +410,7 @@ export class ChangesViewPane extends ViewPane {
const welcomeIcon = dom.append(this.welcomeContainer, $('.changes-welcome-icon'));
welcomeIcon.classList.add(...ThemeIcon.asClassNameArray(Codicon.diffMultiple));
const welcomeMessage = dom.append(this.welcomeContainer, $('.changes-welcome-message'));
welcomeMessage.textContent = localize('changesView.noChanges', "No files have been changed.");
welcomeMessage.textContent = localize('changesView.noChanges', "Changed files and other session artifacts will appear here.");
// Actions container - positioned outside and above the card
this.actionsContainer = dom.append(this.bodyContainer, $('.chat-editing-session-actions.outside-card'));