WelcomeUser Guide
ToSPrivacyCanary
DonateBugsLicense

©2024 Poal.co

469

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)

[–] 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!

[–] [deleted] 0 pt (edited )

Think I figured a solution for now at least to this problem. Don't need to change the "Downvote" to "Spam Report" which is better off being done in HTML instead of CSS anyways. My fix / solution changes the size of the downvote to be smaller and maybe it works just fine for now? I'm enjoying my gin (drinking) for now, but let me know if you want me to try to change anything for the future if you like this idea. SVG is XML so I'll have to figure out someway to manipulate the XML through CSS in my favor.

`.c-downvote svg, .downvote svg {
height: 8px;
width: 8px;
margin: auto;
display: block;

}`

`.c-downvote svg, .downvote svg {
height: 8px;
width: 8px;
margin: auto;
display: block;
background-color: #ff0000;  
border-radius: 50px;
padding: 5px;

}`

Example - 2nd one. Maybe a start at least?

https://poal.co/s/ExtremeCSS/hot

~~ Can I do "at AOU"? I'm drinking so I kind of just want to, but maybe a mod will see this instead and help me out? ~~

Asked in chat and someone said it's fine.

It should keep both sides working properly though. It changes the downvote so people can see it clearly in a new / different way, but it also keeps with AOU's "downvote" area to as well and doesn't change anything there for now at least.

@AOU