What's new
Xen Factory

Register today to become a member! Once signed in, you'll be able to start purchasing our products, ask questions, request support and suggest new ideas!

Bug Fixed Style issue in filter form

McAtze

New Member
I found a styling issue in the manage countdowns view filter form.

Screenshot 2020-02-02 19.10.29.png

It is a quite simple template edit. E.g.
Before:
HTML:
<div class="inputGroup inputGroup--inline inputGroup--joined">
    <input type="text" class="input js-filterInput" placeholder="{{ phrase('filter...') }}" data-xf-key="{{ phrase('shortcut.filter') }}" />
    <xf:checkbox standalone="true">
        <xf:option labelclass="inputGroup-text" class="js-filterPrefix" label="{{ phrase('prefix') }}" />
    </xf:checkbox>
    <i class="inputGroup-text js-filterClear is-disabled" aria-hidden="true"></i>
</div>
After:
HTML:
<div class="inputGroup inputGroup--inline inputGroup--joined">
    <input type="text" class="input js-filterInput" placeholder="{{ phrase('filter...') }}" data-xf-key="{{ phrase('shortcut.filter') }}" />
    <span class="inputGroup-text">
        <xf:checkbox standalone="true">
            <xf:option class="js-filterPrefix" label="{{ phrase('prefix') }}" />
        </xf:checkbox>
    </span>
    <i class="inputGroup-text js-filterClear is-disabled" aria-hidden="true"></i>
</div>
Screenshot 2020-02-11 17.46.05.png
 

From bespoke add-on development to complex integrations and specialized enhancements, we offer a range of XenForo development services designed to help your community thrive.

Start discussing your needs
Back
Top
Cart