From c7818fe35554b76932754f30e26a7b8e2c212139 Mon Sep 17 00:00:00 2001 From: fen4flo <75260616+FlorianButz@users.noreply.github.com> Date: Sat, 30 May 2026 21:10:37 +0200 Subject: [PATCH] gh-13839: Fix icons when using custom fonts (gh-13956) Co-authored-by: mr. m <91018726+mr-cheffy@users.noreply.github.com> Signed-off-by: mr. m <91018726+mr-cheffy@users.noreply.github.com> --- src/zen/boosts/ZenBoostStyles.sys.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/zen/boosts/ZenBoostStyles.sys.mjs b/src/zen/boosts/ZenBoostStyles.sys.mjs index 40c230f6f..ac2a022f8 100644 --- a/src/zen/boosts/ZenBoostStyles.sys.mjs +++ b/src/zen/boosts/ZenBoostStyles.sys.mjs @@ -82,7 +82,7 @@ export class nsZenBoostStyles { if (fontCase != "" || fontFamily != "") { style += `/* Text Format */\n`; - style += `body * {\n`; + style += `body *:not(.google-symbols, gf-load-icon-font, mat-icon, .google-material-icons) {\n`; style += `${fontFamily}\n`; style += `${fontCase}\n`; style += `}\n`;