From 979ae7149ff5663905ee34585560bb54bd1f23b9 Mon Sep 17 00:00:00 2001 From: Jaxon Lewis-Wilson Date: Wed, 21 Jan 2026 11:17:49 +0800 Subject: [PATCH 1/3] fix: Incorrect styling due to SEQTA update --- src/css/injected.scss | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/css/injected.scss b/src/css/injected.scss index 95a1dc1e..088ad951 100644 --- a/src/css/injected.scss +++ b/src/css/injected.scss @@ -824,7 +824,7 @@ div > ol:has(.uiFileHandlerWrapper) { min-height: 128px !important; } .student #menu > ul::before { - background-image: var(--betterseqta-logo); + background-image: var(--betterseqta-logo) !important; position: -webkit-sticky; position: sticky; top: 0; @@ -1043,8 +1043,8 @@ html.transparencyEffects display: none; } #title { - background: var(--background-primary); - color: var(--text-primary); + background: var(--background-primary) !important; + color: var(--text-primary) !important; display: flex; justify-content: space-between; padding-right: 56px !important; From ce6538f85097c06dcaf873f5c225c32e052b8fd9 Mon Sep 17 00:00:00 2001 From: Jaxon Lewis-Wilson Date: Wed, 21 Jan 2026 11:40:16 +0800 Subject: [PATCH 2/3] fix: Global font Overrides SEQTA's new important tag for font under *{} --- src/css/injected.scss | 1 + 1 file changed, 1 insertion(+) diff --git a/src/css/injected.scss b/src/css/injected.scss index 088ad951..897cd017 100644 --- a/src/css/injected.scss +++ b/src/css/injected.scss @@ -58,6 +58,7 @@ select { background: var(--auto-background) !important; } * { + font-family: Rubik, sans-serif !important; --theme-fg-parts: white; } .extension-editor { From 82a789bbecbcf639701c9214bfbbe231b351feb9 Mon Sep 17 00:00:00 2001 From: Jaxon Lewis-Wilson Date: Wed, 21 Jan 2026 12:22:45 +0800 Subject: [PATCH 3/3] fix: Global fonts Prior commit was not actually functional upon review --- src/css/injected.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/css/injected.scss b/src/css/injected.scss index 897cd017..b8f99795 100644 --- a/src/css/injected.scss +++ b/src/css/injected.scss @@ -57,7 +57,7 @@ select { transition: 200ms; background: var(--auto-background) !important; } -* { +:root * { font-family: Rubik, sans-serif !important; --theme-fg-parts: white; }