-
Notifications
You must be signed in to change notification settings - Fork 1
/
Matheon Forum Tweaks.user.js
45 lines (43 loc) · 1.1 KB
/
Matheon Forum Tweaks.user.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
// ==UserScript==
// @name Matheon Forum Tweaks
// @namespace http://tampermonkey.net/
// @version 0.8
// @description Wir mathen das…
// @author https://github.com/Skeeve
// @match https://www.mathekalender.de/wp/forums/*
// @match https://www.mathekalender.de/wp/forum/
// @match https://www.mathekalender.de/wp/de/forums/*
// @match https://www.mathekalender.de/wp/de/forum/
// @icon https://www.google.com/s2/favicons?sz=64&domain=mathekalender.de
// @grant GM_addStyle
// ==/UserScript==
(function() {
'use strict';
GM_addStyle(`
.forums.bbp-replies,
.bbp-forum.content,
.bbp-forum-info,
.bbp-body {
font-size: 15px !important;
}
.bsp-previewtext {
display: none !important;
}
li.bbp-forum {
display: block !important;
}
div > div > blockquote {
background-color: beige;
border-left: 0.5em solid blue;
padding-left: 0.5em;
margin: 0;
margin-bottom: 0.5em;
}
div > div > blockquote:before,
div > div > blockquote:after {
display: none !important;
margin: 0px;
background-color: pink;
}
`);
})();