From 3181ed3ed973dc408e4dedc75b8551fdef0e4549 Mon Sep 17 00:00:00 2001 From: vince-fugnitto Date: Tue, 13 Jul 2021 09:27:58 -0400 Subject: [PATCH] monaco: fix monaco peek styling The commit updates the monaco peekview-widget `fontFamily` styling. The title and references are now aligned with the styling of vscode. Signed-off-by: vince-fugnitto --- packages/monaco/src/browser/style/index.css | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/packages/monaco/src/browser/style/index.css b/packages/monaco/src/browser/style/index.css index 4ccc93696552f..784eb1d28234d 100644 --- a/packages/monaco/src/browser/style/index.css +++ b/packages/monaco/src/browser/style/index.css @@ -180,5 +180,13 @@ } .monaco-list:not(.drop-target) .monaco-list-row:hover:not(.selected):not(.focused) { - background: var(--theia-list-hoverBackground); + background: var(--theia-list-hoverBackground); +} + +.monaco-editor .peekview-widget .head .peekview-title { + font-family: var(--theia-ui-font-family); +} + +.monaco-editor .peekview-widget .referenceMatch { + font-family: var(--theia-ui-font-family); }