Extend autocomplete product name in Invoice

Hi all, I would like to have product autosuggest in quick search in invoice to be bigger but at the moment some “js code” is adding an inline style “width:127px” to the element overriding any css/class that I put on the custom css. Looking at the enableQS function I cannot see where the rendering of the result is prepared. Anybody fixed this issue in Suitecrm8? I’m using 8.7.1.
Thank you

Welcome to community! So, you are able to increase font width. What else are you trying to do?

If you paste a larger chunk of the produced HTML where the inline style is, I can go searching for where it is generated.

Looking at js code of the Yiu autocomplete a fixed style is added “width: 127px” obtained reading an “offset” property of the container.
I have fixed at the moment with a manual modification to quicksearch.js when the resultDiv is created a manually add resultDiv.style.width = ‘100%’ and that works.
But it seems to me very tricky. As resultDiv is prepared inside the enableQS() function.