aboutsummaryrefslogtreecommitdiff
path: root/plugins/style/style.js
diff options
context:
space:
mode:
authorfenze <contact@fenze.dev>2023-02-06 18:05:33 +0100
committerGitHub <noreply@github.com>2023-02-06 18:05:33 +0100
commit327344ee40cfd4e17313f0e6be6929cc19a24e17 (patch)
treea34a0ef56a600758a63f81e67b7e4c4e8af5a0ed /plugins/style/style.js
parent584a5d68a833c6fa58dd165ebac83cf4de1e4c0d (diff)
parentb48c504871c4732895b00ae6c2a87c97a63ad3d8 (diff)
Merge pull request #36 from NunoSempere/feats-and-tweaks
Various feats and tweaks
Diffstat (limited to 'plugins/style/style.js')
-rw-r--r--plugins/style/style.js26
1 files changed, 26 insertions, 0 deletions
diff --git a/plugins/style/style.js b/plugins/style/style.js
new file mode 100644
index 0000000..01524d0
--- /dev/null
+++ b/plugins/style/style.js
@@ -0,0 +1,26 @@
+// Replicates the Stylus app: <https://addons.mozilla.org/en-GB/firefox/addon/styl-us/>
+
+if (document.domain == "forum.effectivealtruism.org"){
+ var styles = `
+ .Layout-main {
+ margin-left: 100px;
+ }
+ .SingleColumnSection-root {
+ width: 1000px !important;
+ max-width: 1400px !important;
+ padding-left: 100px !important;
+ }
+ .NavigationStandalone-sidebar {
+ display: none;
+ }
+ .intercom-lightweight-app{
+ display: none;
+ }
+ `
+ var styleSheet = document.createElement('style')
+ styleSheet.innerText = styles
+ document.head.appendChild(styleSheet)
+ console.log('Style changed')
+}
+
+document.body.style.visibility = "visible"