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

@@ -242,6 +242,11 @@
/* ---- Widget Customizations ---- */
/* Action Widget */
.agent-sessions-workbench .action-widget .monaco-list .monaco-list-row {
padding-right: 0;
}
/* Badge */
.agent-sessions-workbench .badge > .badge-content {
border-radius: 4px !important;

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'));

View File

@@ -30,15 +30,15 @@
align-items: center;
justify-content: center;
flex: 1;
padding: 20px;
padding: 32px;
text-align: center;
gap: 8px;
}
.changes-view-body .changes-welcome-icon.codicon {
font-size: 48px !important;
font-size: 32px !important;
color: var(--vscode-descriptionForeground);
opacity: 0.6;
opacity: 0.4;
}
.changes-view-body .changes-welcome-message {