rename button and update dialog button width (#7369)

* rename button and update dialog button width

* update padding to match portal
This commit is contained in:
Alan Ren
2019-09-25 20:21:41 -07:00
committed by GitHub
parent e3c347e148
commit 2d9f6dcd86
2 changed files with 5 additions and 3 deletions

View File

@@ -47,7 +47,7 @@ export class DeployClusterWizard extends WizardBase<DeployClusterWizard, DeployC
protected initialize(): void { protected initialize(): void {
this.setPages(this.getPages()); this.setPages(this.getPages());
this.wizardObject.generateScriptButton.hidden = true; this.wizardObject.generateScriptButton.hidden = true;
this.wizardObject.doneButton.label = localize('deployCluster.openNotebook', 'Open Notebook'); this.wizardObject.doneButton.label = localize('deployCluster.ScriptToNotebook', 'Script to Notebook');
} }
protected onCancel(): void { protected onCancel(): void {

View File

@@ -139,7 +139,9 @@
} }
.modal .footer-button a.monaco-button.monaco-text-button { .modal .footer-button a.monaco-button.monaco-text-button {
width: 100px; min-width: 100px;
padding-left: 20px;
padding-right: 20px;
} }
.vs .monaco-text-button:focus { .vs .monaco-text-button:focus {
@@ -281,4 +283,4 @@
.dialog-message.error .dialog-message-icon { .dialog-message.error .dialog-message-icon {
background: url('error_notification_inverse.svg') center center no-repeat; background: url('error_notification_inverse.svg') center center no-repeat;
} }