DragonByte Tech
Well-known member
- Affected version
- 2.3.0b3
In XenForo 2.2, the following code:
Produces the following display:

The same code in XF 2.3:

This is because of the following CSS:
Removing
HTML:
<div class="inputGroup">
<xf:numberbox name="someName" min="0" step="any" class="input--numberNarrow" />
<span class="inputGroup-text">someText</span>
</div>
Produces the following display:

The same code in XF 2.3:

This is because of the following CSS:
CSS:
.inputGroup
{
[...]
> .inputGroup,
> .inputChoices
{
flex: 1;
}
Removing
flex: 1;
fixes this issue.