From 61275153ebaa2a9221676f5647962649742311c7 Mon Sep 17 00:00:00 2001 From: "mr. m" <91018726+mr-cheffy@users.noreply.github.com> Date: Mon, 10 Aug 2026 08:57:28 +0200 Subject: [PATCH] Revert "gh-14483: Fix boost font override breaking certain icons" (gh-14903) --- src/zen/boosts/ZenBoostStyles.sys.mjs | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/src/zen/boosts/ZenBoostStyles.sys.mjs b/src/zen/boosts/ZenBoostStyles.sys.mjs index 88acf51c9..ac2a022f8 100644 --- a/src/zen/boosts/ZenBoostStyles.sys.mjs +++ b/src/zen/boosts/ZenBoostStyles.sys.mjs @@ -81,15 +81,8 @@ export class nsZenBoostStyles { } if (fontCase != "" || fontFamily != "") { - const ignoredElements = [ - ".google-symbols", - "gf-load-icon-font", - "mat-icon", - ".google-material-icons", - "span", - ]; style += `/* Text Format */\n`; - style += `body *:not(${ignoredElements.join(",")}) {\n`; + style += `body *:not(.google-symbols, gf-load-icon-font, mat-icon, .google-material-icons) {\n`; style += `${fontFamily}\n`; style += `${fontCase}\n`; style += `}\n`;