mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-16 10:58:30 -05:00
added fix for disabling dropdown (#2203)
This commit is contained in:
@@ -84,6 +84,7 @@ export class SelectBox extends vsSelectBox {
|
|||||||
this.inputValidationWarningBackground = styles.inputValidationWarningBackground;
|
this.inputValidationWarningBackground = styles.inputValidationWarningBackground;
|
||||||
this.inputValidationErrorBorder = styles.inputValidationErrorBorder;
|
this.inputValidationErrorBorder = styles.inputValidationErrorBorder;
|
||||||
this.inputValidationErrorBackground = styles.inputValidationErrorBackground;
|
this.inputValidationErrorBackground = styles.inputValidationErrorBackground;
|
||||||
|
this.applyStyles();
|
||||||
}
|
}
|
||||||
|
|
||||||
public selectWithOptionName(optionName: string): void {
|
public selectWithOptionName(optionName: string): void {
|
||||||
|
|||||||
@@ -324,13 +324,21 @@ export class SelectBoxList implements ISelectBoxDelegate, IDelegate<ISelectOptio
|
|||||||
|
|
||||||
// Style parent select
|
// Style parent select
|
||||||
|
|
||||||
|
// {{SQL CARBON EDIT}}
|
||||||
let background = null;
|
let background = null;
|
||||||
|
let foreground = null;
|
||||||
|
let border = null;
|
||||||
|
|
||||||
if (this.selectElement) {
|
if (this.selectElement) {
|
||||||
background = this.styles.selectBackground ? this.styles.selectBackground.toString() : null;
|
if (this.selectElement.disabled) {
|
||||||
const foreground = this.styles.selectForeground ? this.styles.selectForeground.toString() : null;
|
background = (<any>this.styles).disabledSelectBackground ? (<any>this.styles).disabledSelectBackground.toString() : null;
|
||||||
const border = this.styles.selectBorder ? this.styles.selectBorder.toString() : null;
|
foreground = (<any>this.styles).disabledSelectForeground ? (<any>this.styles).disabledSelectForeground.toString() : null;
|
||||||
|
border = null;
|
||||||
|
} else {
|
||||||
|
background = this.styles.selectBackground ? this.styles.selectBackground.toString() : null;
|
||||||
|
foreground = this.styles.selectForeground ? this.styles.selectForeground.toString() : null;
|
||||||
|
border = this.styles.selectBorder ? this.styles.selectBorder.toString() : null;
|
||||||
|
}
|
||||||
this.selectElement.style.backgroundColor = background;
|
this.selectElement.style.backgroundColor = background;
|
||||||
this.selectElement.style.color = foreground;
|
this.selectElement.style.color = foreground;
|
||||||
this.selectElement.style.borderColor = border;
|
this.selectElement.style.borderColor = border;
|
||||||
|
|||||||
Reference in New Issue
Block a user