Nice extension.
It would be nice if you could add a settings dialog to which the background color + opacity and badge color could be customized.
Currently you need to manually modify:
vendor/wiwatsrt/flarum-ext-best-answer/less/forum/extension.less
I will try playing around with it more, I would prefer a colored border kind of like this text input box, instead of having the background filled.
Edit: To make the Best Answer just have a border instead of background fill:
Change
.Post-footer{
.item-bestAnswerPost {
padding: 10px;
background-color: rgba(88, 164, 0, 0.23);
margin-top: 25px;
To:
.Post-footer{
.item-bestAnswerPost {
padding: 10px;
border-style: solid;
border-color: rgba(88, 164, 0, 0.23);
margin-top: 25px;
For this effect:
border-style: solid;
border-color: transparent;
box-shadow: -10px -5px 20px red, -10px 5px 20px yellow, 10px 5px 20px green, 10px -5px 20px blue;
Thanks again.