From 9eb859bfd21b963476facadd291ba34b4297dde6 Mon Sep 17 00:00:00 2001 From: Changyong Gong Date: Tue, 9 Jun 2026 11:26:25 +0800 Subject: [PATCH] fix: bundle codicon font in Java Help Center webview The welcome (Java Help Center) webview used codicon glyphs but never imported the codicon font CSS, relying on VS Code's auto-injected font. That font is not reliably available across platforms, so the icons rendered as empty boxes on Linux. Import @vscode/codicons so the font is inlined into the bundle, matching the other webviews in this repo. Fixes #1390 --- src/welcome/assets/style.scss | 1 + 1 file changed, 1 insertion(+) diff --git a/src/welcome/assets/style.scss b/src/welcome/assets/style.scss index 9869c3c8..e24d6deb 100644 --- a/src/welcome/assets/style.scss +++ b/src/welcome/assets/style.scss @@ -1,4 +1,5 @@ @import "../../assets/vscode.scss"; +@import "../../../node_modules/@vscode/codicons/dist/codicon.css"; // Custom styles dedicated to this webview: