Make it so you can hover over a post's score to see the list of public upvotes. Also show the upvote count, the downvote count, and the upvote ratio.
17 lines
415 B
SCSS
17 lines
415 B
SCSS
.post-votes {
|
|
// Fix it so that the vote buttons don't move when the score changes width.
|
|
// XXX duplicated from app/components/comment_component/comment_component.scss
|
|
.post-score {
|
|
display: inline-block;
|
|
text-align: center;
|
|
min-width: 1.25em;
|
|
white-space: nowrap;
|
|
vertical-align: middle;
|
|
|
|
a {
|
|
color: var(--text-color);
|
|
&:hover { text-decoration: underline; }
|
|
}
|
|
}
|
|
}
|