aboutsummaryrefslogtreecommitdiff
path: root/src/utils/quickCss.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/utils/quickCss.ts')
-rw-r--r--src/utils/quickCss.ts10
1 files changed, 7 insertions, 3 deletions
diff --git a/src/utils/quickCss.ts b/src/utils/quickCss.ts
index fe35a3c..0ce50e5 100644
--- a/src/utils/quickCss.ts
+++ b/src/utils/quickCss.ts
@@ -27,8 +27,12 @@ export async function toggle(isEnabled: boolean) {
if (isEnabled) {
style = document.createElement("style");
style.id = "vencord-custom-css";
- document.head.appendChild(style);
- VencordNative.quickCss.addChangeListener(css => style.textContent = css);
+ document.documentElement.appendChild(style);
+ VencordNative.quickCss.addChangeListener(css => {
+ style.textContent = css;
+ // At the time of writing this, changing textContent resets the disabled state
+ style.disabled = !Settings.useQuickCss;
+ });
style.textContent = await VencordNative.quickCss.get();
}
} else
@@ -39,7 +43,7 @@ async function initThemes() {
if (!themesStyle) {
themesStyle = document.createElement("style");
themesStyle.id = "vencord-themes";
- document.head.appendChild(themesStyle);
+ document.documentElement.appendChild(themesStyle);
}
const { themeLinks } = Settings;