This commit is contained in:
Sandeep Somavarapu 2020-07-17 11:00:48 +02:00
parent a24b362980
commit a6aa3902d4
2 changed files with 1 additions and 2 deletions

View file

@ -12,7 +12,6 @@
.monaco-workbench .pane > .pane-body > .manual-sync-buttons-container .monaco-button {
margin-block-start: 13px;
margin-block-end: 13px;
margin-inline-start: 0px;
margin-inline-end: 0px;
max-width: 260px;

View file

@ -80,7 +80,7 @@ export class UserDataManualSyncViewPane extends TreeViewPane {
this._register(attachButtonStyler(this.syncButton, this.themeService));
this._register(this.syncButton.onDidClick(() => this.apply()));
this.cancelButton = this._register(new Button(this.buttonsContainer));
this.cancelButton = this._register(new Button(this.buttonsContainer, { secondary: true }));
this.cancelButton.label = localize('cancel', "Cancel");
this._register(attachButtonStyler(this.cancelButton, this.themeService));
this._register(this.cancelButton.onDidClick(() => this.cancel()));