Details
Description
Steps to Reproduce
<combobox popupWidth="100%"> <comboitem label="short text" /> <comboitem label="a longer text here, at least longer than box is wide." /> </combobox>
open the popup
(inside the popup) scroll to the right
hover any item
The same happens with <chosenbox>
Current Result
the hover style (background color/gradient, doesn't cover the whole width of the highlighted comboitem)
Expected Result
background style cover the whole widths
Debug Info
Root Cause
Workaround
.z-combobox-content { width: auto!important; min-width: 100%; display: inline-block!important; }
for chosenbox
.z-chosenbox-select { width: auto!important; min-width: 100%; display: inline-block!important; }