XF 2.3 Checkbox input issue

beerForo

Well-known member
The checkbox for moderators to select per post (left of Report), where is this styled in Style Properties please?
 
Last edited:
Solution
Should be fixed in 2.3.4, but in the meantime:

Less:
.iconic
{
    > input[type=checkbox] + i
    {
        &:before { .m-faContent(@fa-var-regular-square, .88em); }
        &:after  { .m-faContent(@fa-var-regular-check-square, .88em); }
    }

    > input[type=radio] + i
    {
        &:before { .m-faContent(@fa-var-regular-circle, 1em); }
        &:after  { .m-faContent(@fa-var-regular-check-circle, 1em); }
    }
}
It uses the linkColor property, if that's what you mean, like the other tools in the action bar. Beyond that there's not much styling applied beyond the global checkbox styling. What are you trying to accomplish?
 
@Jeremy P looks like an unintended bug/conflict with this setting: Font Awesome weight (solid).
I use the solid setting because I like my icons that way, but that should not affect a checkbox, this happens with all checkboxes in Preferences also, etc. I would expect this setting to affect our forum icons and anyone choosing solid might turn it back off since it's affecting settings checkboxes that you happen to use fontawesome for.

1729903675260.webp
 
Last edited:
Should be fixed in 2.3.4, but in the meantime:

Less:
.iconic
{
    > input[type=checkbox] + i
    {
        &:before { .m-faContent(@fa-var-regular-square, .88em); }
        &:after  { .m-faContent(@fa-var-regular-check-square, .88em); }
    }

    > input[type=radio] + i
    {
        &:before { .m-faContent(@fa-var-regular-circle, 1em); }
        &:after  { .m-faContent(@fa-var-regular-check-circle, 1em); }
    }
}
 
Solution
Back
Top Bottom