mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-02 00:09:30 +01:00
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:
@@ -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;
|
||||
|
||||
@@ -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'));
|
||||
|
||||
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user