Update open existing dialog icons (#13571)

* update open existing dialog icons

* undo removing folder.svg

* remove max width and max height
This commit is contained in:
Kim Santiago
2020-12-01 13:01:56 -08:00
committed by GitHub
parent 0b1239b755
commit 593cb45a50
7 changed files with 40 additions and 16 deletions

View File

@@ -22,16 +22,10 @@ export class OpenExistingDialog extends DialogBase {
private _targetTypes = [
{
name: constants.Project,
icon: {
dark: this.extensionContext.asAbsolutePath('images/file_inverse.svg'),
light: this.extensionContext.asAbsolutePath('images/file.svg')
}
icon: this.extensionContext.asAbsolutePath('images/Open_existing_Project.svg')
}, {
name: constants.Workspace,
icon: {
dark: this.extensionContext.asAbsolutePath('images/file_inverse.svg'), // temporary - still waiting for real icon from UX
light: this.extensionContext.asAbsolutePath('images/file.svg')
}
icon: this.extensionContext.asAbsolutePath('images/Open_existing_Workspace.svg')
}
];
@@ -97,8 +91,8 @@ export class OpenExistingDialog extends DialogBase {
]
};
}),
iconHeight: '50px',
iconWidth: '50px',
iconHeight: '100px',
iconWidth: '100px',
cardWidth: '170px',
cardHeight: '170px',
ariaLabel: constants.TypeTitle,