-
Notifications
You must be signed in to change notification settings - Fork 0
/
reddit.css
46 lines (40 loc) · 1.06 KB
/
reddit.css
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
/* ==UserStyle==
@name Reddit Tweaks
@namespace reddit.com
@version 1.0.0
@description Hides a bunch of addictive Reddit stuff.
@author konsuko
==/UserStyle== */
@-moz-document domain("old.reddit.com") {
html {
display: none;
}
}
@-moz-document domain("reddit.com") {
html {
display: none;
}
}
/*@-moz-document domain("reddit.com"), url("https://www.reddit.com/r/all/"), url("https://www.reddit.com/r/popular/") {*/
@document regexp("https://www\.reddit\.com/.*") {
/* This should hide the ALL, POPULAR and RANDOM Buttons on the top bar */
/*.sr-list .flat-list:first-of-type li:nth-child(2) {*/
/*display: none;*/
/*}*/
/*.sr-list .flat-list:first-of-type li:nth-child(3) {*/
/*display: none;*/
/*}*/
/*.sr-list .flat-list:first-of-type li:nth-child(4) {*/
/*display: none;*/
/*}*/
/* This hides all feeds/listings */
body {
display: none;
}
#sr-header-area {
display: none;
}
[data-context="listing"] {
display: none;
}
}