Post your userscripts and custom styles for old and newpunch here.
Here's my latest one:
Echo Chamber
https://files.facepunch.com/forum/upload/132997/d34afe95-ca04-4e13-8ba1-96e7af83b40c/chrome_2018-02-27_13-19-57.png
Converts all ratings into "agree" ratings on oldpunch, in case your feelings are too easily hurt or you've stumbled your way into the whitehouse somehow.
Put this in your favorite style editor
.rating_results img{
background-image: url('/fp/ratings/tick.png');
width: 16px;
height: 16px;
padding-left: 16px;
overflow-x: hidden;
box-sizing: border-box;
}
.rating_results font{
font-size: 0px;
}
.rating_results font::before{
content: "Agree";
font-size: 11px;
}
.ratingslist .ratingsbox span img{
background-image: url('/fp/ratings/tick.png');
width: 16px;
height: 16px;
padding-left: 16px;
overflow-x: hidden;
box-sizing: border-box;
}
.ratingslist .ratingsbox > span{
font-size: 0px
}
.ratingslist .ratingsbox > span strong{
font-size: 11px
}
.ratingslist .ratingsbox > span strong::before{
font-weight: normal;
content: "Agree x ";
}
Sorry, you need to Log In to post a reply to this thread.