diff options
Diffstat (limited to 'plugins/style')
-rw-r--r-- | plugins/style/style.c | 2 | ||||
-rw-r--r-- | plugins/style/style.h | 2 | ||||
-rw-r--r-- | plugins/style/style.js | 7 |
3 files changed, 9 insertions, 2 deletions
diff --git a/plugins/style/style.c b/plugins/style/style.c index 1010506..347ee3f 100644 --- a/plugins/style/style.c +++ b/plugins/style/style.c @@ -1,7 +1,7 @@ #include <stdio.h> #include <stdlib.h> #include <string.h> -#define STYLE_N 1393 + 1 +#define STYLE_N 1505 + 1 void read_style_js(char* string) { diff --git a/plugins/style/style.h b/plugins/style/style.h index 5e5d76b..ab69b64 100644 --- a/plugins/style/style.h +++ b/plugins/style/style.h @@ -1,7 +1,7 @@ #ifndef STYLE #define STYLE -#define STYLE_N 1393 + 1 +#define STYLE_N 1505 + 1 void read_style_js(char* string); diff --git a/plugins/style/style.js b/plugins/style/style.js index bc0540e..23f68a6 100644 --- a/plugins/style/style.js +++ b/plugins/style/style.js @@ -38,6 +38,13 @@ if (document.domain == "mail.proton.me" ){ } ` } +if (document.domain == "forum.nunosempere.com" ){ + styles = ` + body { + zoom: 0.625 !important; + } + ` +} if(styles != null){ var styleSheet = document.createElement('style') |