first load
Some checks failed
Build, Push, Publish / Build & Release (push) Failing after 2s
Sync Repo / sync (push) Failing after 2s

This commit is contained in:
2025-12-16 04:40:00 -03:00
parent 9f33a94e0e
commit 6fa41a771d
856 changed files with 70411 additions and 1 deletions

57
styles/_vote.scss Normal file
View File

@@ -0,0 +1,57 @@
/***** Vote *****/
/* Used in article comments, post comments and post */
.vote {
display: flex;
flex-direction: column;
text-align: center;
a {
&:active,
&:hover,
&:focus {
text-decoration: none;
}
}
}
.vote-sum {
color: $secondary-text-color;
display: block;
margin: 3px 0;
[dir="rtl"] & {
direction: ltr;
unicode-bidi: bidi-override;
}
}
.vote-up svg {
transform: scale(1, -1);
}
.vote-up:hover,
.vote-down:hover {
color: $brand_color;
}
.vote-up, .vote-down {
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
background-color: transparent;
border: none;
color: $secondary-text-color;
cursor: pointer;
min-height: 35px;
min-width: 35px;
display: flex;
align-items: center;
justify-content: center;
}
.vote-voted {
color: $brand_color;
}
.vote-voted:hover {
color: $hover-button-color;
}