Add background image to sql db projects dashboard (#14942)

* Add background image to sql db projects dashboard

* Removed gradient color

* Added bottom border for header

* Fixed border color
This commit is contained in:
Sakshi Sharma
2021-04-01 17:24:16 -07:00
committed by GitHub
parent ce6ea8af41
commit 30a2b76faf
6 changed files with 117 additions and 22 deletions

View File

@@ -81,6 +81,11 @@ declare module 'dataworkspace' {
* Gets the project data to be placed in the dashboard container
*/
readonly dashboardComponents: IDashboardTable[];
/**
* Gets the project image to be used as background in dashboard container
*/
readonly image?: azdata.ThemedIconPath;
}
/**
@@ -110,7 +115,7 @@ declare module 'dataworkspace' {
/**
* Gets the icon path of the project type
*/
readonly icon: string | vscode.Uri | { light: string | vscode.Uri, dark: string | vscode.Uri }
readonly icon: azdata.IconPath
}
/**
@@ -178,7 +183,7 @@ declare module 'dataworkspace' {
*/
export interface IDashboardColumnInfo {
displayName: string;
width: number;
width: number | string;
type?: IDashboardColumnType;
}