mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-16 18:46:40 -05:00
Merge from vscode c58aaab8a1cc22a7139b761166a0d4f37d41e998 (#7880)
* Merge from vscode c58aaab8a1cc22a7139b761166a0d4f37d41e998 * fix pipelines * fix strict-null-checks * add missing files
This commit is contained in:
@@ -71,6 +71,7 @@ class DomCharWidthReader {
|
||||
regularDomNode.style.fontFamily = this._bareFontInfo.getMassagedFontFamily();
|
||||
regularDomNode.style.fontWeight = this._bareFontInfo.fontWeight;
|
||||
regularDomNode.style.fontSize = this._bareFontInfo.fontSize + 'px';
|
||||
regularDomNode.style.fontFeatureSettings = this._bareFontInfo.fontFeatureSettings;
|
||||
regularDomNode.style.lineHeight = this._bareFontInfo.lineHeight + 'px';
|
||||
regularDomNode.style.letterSpacing = this._bareFontInfo.letterSpacing + 'px';
|
||||
container.appendChild(regularDomNode);
|
||||
@@ -79,6 +80,7 @@ class DomCharWidthReader {
|
||||
boldDomNode.style.fontFamily = this._bareFontInfo.getMassagedFontFamily();
|
||||
boldDomNode.style.fontWeight = 'bold';
|
||||
boldDomNode.style.fontSize = this._bareFontInfo.fontSize + 'px';
|
||||
boldDomNode.style.fontFeatureSettings = this._bareFontInfo.fontFeatureSettings;
|
||||
boldDomNode.style.lineHeight = this._bareFontInfo.lineHeight + 'px';
|
||||
boldDomNode.style.letterSpacing = this._bareFontInfo.letterSpacing + 'px';
|
||||
container.appendChild(boldDomNode);
|
||||
@@ -87,6 +89,7 @@ class DomCharWidthReader {
|
||||
italicDomNode.style.fontFamily = this._bareFontInfo.getMassagedFontFamily();
|
||||
italicDomNode.style.fontWeight = this._bareFontInfo.fontWeight;
|
||||
italicDomNode.style.fontSize = this._bareFontInfo.fontSize + 'px';
|
||||
italicDomNode.style.fontFeatureSettings = this._bareFontInfo.fontFeatureSettings;
|
||||
italicDomNode.style.lineHeight = this._bareFontInfo.lineHeight + 'px';
|
||||
italicDomNode.style.letterSpacing = this._bareFontInfo.letterSpacing + 'px';
|
||||
italicDomNode.style.fontStyle = 'italic';
|
||||
|
||||
Reference in New Issue
Block a user