Re: Hiding upvote count on Bear
Unlikely Upvote Button for Bear | Robert Birming
Birming provides a bunch of CSS to keep your toast button, but hide the vote count so that you don't stress about how many upvotes you have.
Their solution seems very nice, likely better, but if you want something simple:
.upvote-count {
visibility: hidden; /* Hide the text */
}
.upvote-count::before {
visibility: visible; /* show the button */
}
.upvote-button.upvoted {
border-bottom: 1px solid black; /* indicate that the button has been clicked */
}
Also: Robert, did you mark the code's language in your post? Mine has syntax highlighting & yours does not. After the three tildes that start the code block (on the same line), write 'css' to get your syntax highlighting, hopefully.