Overflow cutting off Chosen select options in views filters
>>> [!note] Migrated issue
<!-- Drupal.org comment -->
<!-- Migrated from issue #3212343. -->
Reported by: [Baptiste Marck](https://www.drupal.org/user/3403986)
>>>
<h3 id="summary-problem-motivation">Problem/Motivation</h3>
<p>When using <a href="https://www.drupal.org/project/chosen">Chosen</a> module, the select box get cut off by the overflow css of the views exposed form.</p>
<p>See the attached screenshots for an example.</p>
<h4 id="summary-steps-reproduce">Steps to reproduce</h4>
<p>Have more than a few options available returned by the chosen module in a view filter.</p>
<h3 id="summary-proposed-resolution">Proposed resolution</h3>
<p>Remove "overflow: hidden" from views-exposed-form on line 185 in _views.scss</p>
<h4>Before</h4>
<pre>.views-exposed-form.views-exposed-form,<br>.views-displays {<br> border: 1px solid var(--colorGinLayer2Border);<br> border-radius: $borderDefault;<br> overflow: hidden;<br>}</pre><h4>After</h4>
<pre>.views-exposed-form.views-exposed-form,<br>.views-displays {<br> border: 1px solid var(--colorGinLayer2Border);<br> border-radius: $borderDefault;<br>}</pre>
issue