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!

  • We are aware that a no permission error was shown when you tried to purchase in the last 2 days, this is now fixed.

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
 
Top