mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-16 10:58:30 -05:00
Table Designer - Save Changes feature and Editor related features (#17335)
* table designer add/remove row support * save changes and editor support * address comments * fix build error * including missing change * lower case request name
This commit is contained in:
@@ -229,6 +229,21 @@ export interface IButtonStyleOverrides extends IStyleOverrides {
|
||||
buttonDisabledBorder?: ColorIdentifier;
|
||||
}
|
||||
|
||||
// {{SQL CARBON EDIT}}
|
||||
export const defaultButtonStyles: IButtonStyleOverrides = {
|
||||
buttonForeground: buttonForeground,
|
||||
buttonBackground: buttonBackground,
|
||||
buttonHoverBackground: buttonHoverBackground,
|
||||
buttonSecondaryForeground: buttonSecondaryForeground,
|
||||
buttonSecondaryBackground: buttonSecondaryBackground,
|
||||
buttonSecondaryHoverBackground: buttonSecondaryHoverBackground,
|
||||
buttonBorder: buttonBorder,
|
||||
buttonSecondaryBorder: buttonSecondaryBorder,
|
||||
buttonDisabledBorder: buttonDisabledBorder,
|
||||
buttonDisabledBackground: buttonDisabledBackground,
|
||||
buttonDisabledForeground: buttonDisabledForeground
|
||||
};
|
||||
|
||||
export function attachButtonStyler(widget: IThemable, themeService: IThemeService, style?: IButtonStyleOverrides): IDisposable {
|
||||
return attachStyler(themeService, {
|
||||
buttonForeground: style?.buttonForeground || buttonForeground,
|
||||
|
||||
Reference in New Issue
Block a user