-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhacker-news-tweaks.user.js
72 lines (69 loc) · 1.85 KB
/
hacker-news-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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
// ==UserScript==
// @name Hacker News Tweaks
// @namespace https://github.com/abstraction/userscripts
// @description Easily editable CSS for Hacker News
// @author abstraction
// @version 2024-07-02
// @grant GM_addStyle
// @run-at document-start
// @match https://news.ycombinator.com/*
// @icon https://www.google.com/s2/favicons?sz=64&domain=reddit.com
// @updateURL https://github.com/abstraction/userscripts/raw/master/src/hacker-news-tweaks.user.js
// @downloadURL https://github.com/abstraction/userscripts/raw/master/src/hacker-news-tweaks.user.js
// ==/UserScript==
const styles = {
base: {
'*': {
'font-family': '"Gotham Pro", Helvetica, sans-serif',
'font-size': '20px'
},
body: {
margin: '0 auto'
}
},
comments: {
'.comment': {
'max-width': '600px',
'text-align': 'justify',
'line-height': '1.4'
},
'.comment p': {
margin: '1rem 0 0 0'
}
},
voting: {
'.votelinks': {
'border-left': '2px dashed #828282',
'border-right': '2px dashed #828282'
}
},
interactive: {
'div.reply a': {
color: '#828282 !important' // impt otherwsie gets overwritten
}
}
};
function applyStyles(styleObject) {
let cssString = '';
for (let element in styleObject) {
cssString += `${element} { `;
for (let property in styleObject[element]) {
cssString += `${property}: ${styleObject[element][property]}; `;
}
cssString += '} ';
}
if (typeof GM_addStyle !== 'undefined') {
GM_addStyle(cssString);
} else {
const node = document.createElement('style');
node.type = 'text/css';
node.appendChild(document.createTextNode(cssString));
document.head.appendChild(node);
}
}
applyStyles({
...styles.base,
...styles.comments,
...styles.voting,
...styles.interactive
});