mirror of
https://github.com/microsoft/vscode.git
synced 2026-05-01 05:51:32 +01:00
Fix monaco-editor/issues#513. Setting property to null on IE11 does not remove the property.
This commit is contained in:
@@ -105,7 +105,7 @@ export class Checkbox extends Widget {
|
||||
|
||||
protected applyStyles(): void {
|
||||
if (this.domNode) {
|
||||
this.domNode.style.borderColor = this._checked && this._opts.inputActiveOptionBorder ? this._opts.inputActiveOptionBorder.toString() : null;
|
||||
this.domNode.style.borderColor = this._checked && this._opts.inputActiveOptionBorder ? this._opts.inputActiveOptionBorder.toString() : 'transparent';
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user