Note: users can bypass it by disabling custom sheet style in their settings.
Note: users can bypass it by disabling custom sheet style in their settings.
https://poal.co/s/Poaldev/64879
Well at least one sub made code look decent.
Well at least one sub made code look decent.
"decent" - what do you think will make it better? Any suggestions?
"decent" - what do you think will make it better? Any suggestions?
I would make the background coloring a block.
code {
display:block;
}
or
code {
display:contents;
}
I would make the background coloring a block.
code {
display:block;
}
or
code {
display:contents;
}
I tinkered with your code a little. I got the circle to change color in /s/CSS when the down vote is cast.
.c-downvote svg, .downvote svg {
height: 8px;
width: 8px;
margin: auto;
display: block;
background-color: #bbb;
border-radius: 50px;
padding: 5px;
}
.c-downvoted svg, .downvoted svg {
height: 8px;
width: 8px;
margin: auto;
display: block;
background-color: green;
border-radius: 50px;
padding: 5px;
}
I tinkered with your code a little. I got the circle to change color in /s/CSS when the down vote is cast.
`.c-downvote svg, .downvote svg {`
`height: 8px;`
`width: 8px;`
`margin: auto;`
`display: block;`
`background-color: #bbb; `
`border-radius: 50px;`
`padding: 5px;`
`}`
`.c-downvoted svg, .downvoted svg {`
`height: 8px;`
`width: 8px;`
`margin: auto;`
`display: block;`
`background-color: green; `
`border-radius: 50px;`
`padding: 5px;`
`}`
(post is archived)