WelcomeUser Guide
ToSPrivacyCanary
DonateBugsLicense

©2024 Poal.co

717

figured out custom button colors:

.c-upvote svg, .c-downvote svg, .upvote svg,.downvote svg

{

//not voted button color

fill: #fff; //white, default is #bbb

}

.upvoted path

{

// up voted color

fill: blue;

}

.downvoted path

{

// down voted color

fill: green;

}

figured out custom button colors: `.c-upvote svg, .c-downvote svg, .upvote svg,.downvote svg` `{` //not voted button color `fill: #fff; //white, default is #bbb` `}` `.upvoted path` `{` // up voted color `fill: blue;` `}` `.downvoted path` `{` // down voted color `fill: green;` `}`

(post is archived)

[–] 1 pt

If you want to disable the downvote (only in your sub) add this to the Stylesheet:

.c-downvote, .downvote { display: none; }

People will still have the ability to downvote your post in /all

[–] 1 pt

mostly looking for a way to change the hover over text from "Downvote" to "spam report" or the like.

[–] 0 pt

Spam report is misleading since the mod will not receive a notification when a post/comment is downvoted.

[–] 0 pt

I guess disabling in a sub is the nearest compromise possible atm. Thanks for your help!