mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-16 18:46:40 -05:00
Nasc/per role parameters (#14425)
* Creating separate pages for worker and coordinator parameters * Added new gear, hid coordinator server parameters page * Commented out azdataApi * Added white gear, created abstract class for server parameters page * Chaged gear name, condensed base class more, changed file name * Added colored gears for parameter pages * Edited to describe configuring both coordinator and worker
This commit is contained in:
@@ -45,7 +45,8 @@ export class IconPathHelper {
|
||||
public static discard: IconPath;
|
||||
public static fail: IconPath;
|
||||
public static information: IconPath;
|
||||
public static gear: IconPath;
|
||||
public static gearBlue: IconPath;
|
||||
public static gearGray: IconPath;
|
||||
|
||||
public static setExtensionContext(context: vscode.ExtensionContext) {
|
||||
IconPathHelper.context = context;
|
||||
@@ -141,9 +142,13 @@ export class IconPathHelper {
|
||||
light: context.asAbsolutePath('images/information.svg'),
|
||||
dark: context.asAbsolutePath('images/information.svg'),
|
||||
};
|
||||
IconPathHelper.gear = {
|
||||
light: context.asAbsolutePath('images/gear.svg'),
|
||||
dark: context.asAbsolutePath('images/gear.svg'),
|
||||
IconPathHelper.gearBlue = {
|
||||
light: context.asAbsolutePath('images/gear-colored-blue.svg'),
|
||||
dark: context.asAbsolutePath('images/gear-colored-blue.svg'),
|
||||
};
|
||||
IconPathHelper.gearGray = {
|
||||
light: context.asAbsolutePath('images/gear-colored-gray.svg'),
|
||||
dark: context.asAbsolutePath('images/gear-colored-gray.svg'),
|
||||
};
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user