-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbadkarma.user.css
More file actions
32 lines (26 loc) · 1.12 KB
/
Copy pathbadkarma.user.css
File metadata and controls
32 lines (26 loc) · 1.12 KB
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
/* ==UserStyle==
@name BadKarma
@namespace github.com/WesCook/BadKarma
@version 1.4.1
@description A userstyle to hide all karma on old reddit
@author Wes Cook (https://wescook.ca)
@homepageURL https://github.com/WesCook/BadKarma
@license MIT
==/UserStyle== */
@-moz-document domain("reddit.com") {
/* Link and comment scores, top-right "upvoted" percentage */
body:not(.moderator) .score {display: none !important;}
/* Hidden/reported page inherits moderator class, so requires special handling */
.thing.hidden .score {display: none !important;}
/* Search page */
body:not(.moderator) .search-score {display: none;}
/* Top-right user karma */
.userkarma {display: none;}
.user, .user span {font-size: 0;} /* Hide parenthesis around score (no element) */
.user a {font-size: x-small !important;} /* Restore username to original size */
/* User hover cards */
.author-tooltip__credentials-list > .author-tooltip__credential:first-child {display: none;}
.author-tooltip {width: 345px;} /* Reduce card width to better fit contents */
/* Profile Page */
.profile-page .score.likes {display: none !important;}
}