Update publish project dialog to look closer to the mockups (#11875)

* initial changes

* got everything lined up

* get rid of bottom scrollbar

* change database textbox to dropdown and cleanup

* more cleanup and fix profile text box

* fix label

* add fireOnTextChange to editable dropdown

* change edit icon and enable input boxes
This commit is contained in:
Kim Santiago
2020-08-21 18:17:42 -07:00
committed by GitHub
parent 1eb2e5f41a
commit 9133bef329
8 changed files with 142 additions and 76 deletions

View File

@@ -21,6 +21,8 @@ export class IconPathHelper {
public static referenceDatabase: IconPath;
public static refresh: IconPath;
public static folder: IconPath;
public static edit: IconPath;
public static setExtensionContext(extensionContext: vscode.ExtensionContext) {
IconPathHelper.extensionContext = extensionContext;
@@ -34,6 +36,8 @@ export class IconPathHelper {
IconPathHelper.referenceDatabase = IconPathHelper.makeIcon('reference-database');
IconPathHelper.refresh = IconPathHelper.makeIcon('refresh');
IconPathHelper.folder = IconPathHelper.makeIcon('folder');
IconPathHelper.edit = IconPathHelper.makeIcon('edit');
}
private static makeIcon(name: string) {