- Joined
- Apr 6, 2020
The only thing that's been bugging me since redesign is action bar under posts being too thin and wrongly-colored (instead of gray having the same color as other links in chosen theme), which wasn't a case in ThemeHouse variant.
I fixed it for myself with a simple custom CSS below.
Change a.actionBar-action:hover color to one used in your prefered theme, here it uses the kawaii theme color.
I fixed it for myself with a simple custom CSS below.
CSS:
.message-actionBar {
padding-top: 4px;
padding-bottom: 4px;
}
a.actionBar-action {
color: #b3b3b3;
}
a.actionBar-action:hover {
color: #c596c5;
text-decoration: none;
}
a.reaction:hover .reaction-text, a.reaction:focus .reaction-text {
text-decoration: none;
}
Without fix:
With fix:
With fix: