Issue Overview
The widget <p:inputNumber ...> will be displayed incorrectly (ignores leading label) on the page if look for inputs is activated as material. Might the issue is due to the fact that the style is not applied to the class ui-inputnumber but I'm not sure:
|
input.ui-inputfield, textarea.ui-inputtextarea, input.ui-autocomplete-input, span.ui-calendar > input.ui-inputfield { |
Current Behaviour

Expected Behaviour

How to reproduce
A sample xhtml code from PrimeFaces showcases:
<div class="ui-material">
<p:inputNumber id="dailyEvery" value="1"
minValue="0" maxValue="90" decimalPlaces="0"
symbol=" day(s)" symbolPosition="s"/>
<p:outputLabel for="dailyEvery" value="Every:"/>
</div>
Issue Overview
The widget
<p:inputNumber ...>will be displayed incorrectly (ignores leading label) on the page if look for inputs is activated as material. Might the issue is due to the fact that the style is not applied to the classui-inputnumberbut I'm not sure:admin-theme/src/main/resources/less/primefaces-admin/components/material.less
Line 27 in 1a5204b
Current Behaviour
Expected Behaviour
How to reproduce
A sample xhtml code from PrimeFaces showcases: