comments: tweak styling of vote buttons.

* Tweak hover colors for vote buttons.
* Tweak sizes to avoid the vote buttons shifting when the score changes.
This commit is contained in:
evazion
2021-01-21 06:40:03 -06:00
parent f4216b323f
commit 49bc2364bd
5 changed files with 54 additions and 29 deletions

View File

@@ -22,6 +22,23 @@ a.active {
font-weight: bold;
}
a.active-link {
color: var(--link-color);
&:hover {
background-color: var(--subnav-menu-background-color);
}
}
a.inactive-link {
color: var(--muted-text-color);
&:hover {
color: var(--link-hover-color);
background-color: var(--subnav-menu-background-color);
}
}
a[rel*="external"] {
word-break: break-all;
}