fields.className is applied to the field's container div rather than the input itself which is why it doesn't appear to work for you.
Is it only the checkbox that isn't styling correctly for you? Looking at the Bulma docs and code I think it just needs a checkbox class on the container, so in editor.bulma.js look for:
Answers
As well, it seems setting a className in the editor fields definition has no effect.
fields.className
is applied to the field's containerdiv
rather than the input itself which is why it doesn't appear to work for you.Is it only the
checkbox
that isn't styling correctly for you? Looking at the Bulma docs and code I think it just needs acheckbox
class on the container, so ineditor.bulma.js
look for:and replace with:
Regards,
Allan