The generated select objects do have the size property, but the stylesheet is enforcing both a min-height (of "120") and a max-height (of "28").
Supplying a class or style as a parameter in the call to &ui_select doesn't do anything either, presumably because both of those attributes are overridden after rendering. Mitigating this problem therefore requires adding additional $(document).ready() JS code.
Notice also that the value of min-height is greater than that for max-height, meaning that both values must be overridden to predictably get the desired result.
The generated
select
objects do have thesize
property, but the stylesheet is enforcing both amin-height
(of "120") and amax-height
(of "28").Supplying a
class
orstyle
as a parameter in the call to&ui_select
doesn't do anything either, presumably because both of those attributes are overridden after rendering. Mitigating this problem therefore requires adding additional$(document).ready()
JS code.Notice also that the value of
min-height
is greater than that formax-height
, meaning that both values must be overridden to predictably get the desired result.