Reply to thread

In XenForo 2.2, the following code:

[CODE=html]<div class="inputGroup">

    <xf:numberbox name="someName" min="0" step="any" class="input--numberNarrow" />

    <span class="inputGroup-text">someText</span>

</div>[/CODE]


Produces the following display:

[ATTACH=full]301192[/ATTACH]


The same code in XF 2.3:

[ATTACH=full]301193[/ATTACH]


This is because of the following CSS:

[CODE=css].inputGroup

{

    [...]

   

    > .inputGroup,

    > .inputChoices

    {

        flex: 1;

    }[/CODE]


Removing flex: 1; fixes this issue.


Back
Top Bottom