Shahiem
I would like to customize how the polls are presented to the forum users. I thought I could just add/modify some css.less but am unable to locate any css.
I did find:
lib/models/Vote.js
import app from 'flarum/app';
import Model from 'flarum/Model';
import mixin from 'flarum/utils/mixin';
import computed from 'flarum/utils/computed';
export default class Vote extends mixin(Model, {
poll_id: Model.attribute('poll_id'),
user_id: Model.attribute('user_id'),
option_id: Model.attribute('option_id'),
}) {
/**
* @inheritDoc
*/
apiEndpoint() {
return '/reflar/polls/votes';
}
}
Which in my limited programming experience believe it creating the
<div class="voted">
How can I modify that so that I make :
Look more like:
Thank you.