# sanity.user.js -rw-r--r-- 445 bytes View raw
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// ==UserScript==
// @name         PINE64 forum sanity
// @namespace    http://forum.pine64.org/
// @version      0.1
// @description  Better thread icons
// @author       Martijn Braam
// @match        https://forum.pine64.org/*
// @grant        GM_addStyle
// ==/UserScript==

(function() {
    'use strict';

GM_addStyle ( `
    .thread_status.dot_hotfolder:after,
    .thread_status.hotfolder:after {
        color: #2969b1;
    }
` );
})();