2022-11-23 19:14:59 +00:00
|
|
|
.rating {
|
|
|
|
align-items: center;
|
|
|
|
display: flex;
|
2023-02-28 17:13:14 +00:00
|
|
|
|
|
|
|
&.isDownvoted .downvoteButton,
|
|
|
|
&.isUpvoted .upvoteButton {
|
|
|
|
background: #000;
|
|
|
|
border-color: #000;
|
|
|
|
color: #fff;
|
|
|
|
}
|
2022-11-23 19:14:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.ratingValue {
|
|
|
|
font-weight: bold;
|
|
|
|
margin: 0 0.5em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.ratingControl {
|
|
|
|
align-items: center;
|
2022-12-04 15:10:27 +00:00
|
|
|
border: 2px solid;
|
|
|
|
border-radius: 100%;
|
2022-11-23 19:14:59 +00:00
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
height: 0.9em;
|
|
|
|
line-height: 0;
|
2023-01-20 04:40:55 +00:00
|
|
|
font-size: 1.6em;
|
2022-11-23 19:14:59 +00:00
|
|
|
padding: 0;
|
|
|
|
width: 0.9em;
|
2022-12-04 15:10:27 +00:00
|
|
|
|
2022-11-23 19:14:59 +00:00
|
|
|
&:hover {
|
2022-12-04 15:10:27 +00:00
|
|
|
background: #000;
|
|
|
|
border-color: #000;
|
|
|
|
color: #fff;
|
2022-11-23 19:14:59 +00:00
|
|
|
}
|
|
|
|
}
|