选择下拉宽度,与输入无关

我正在尝试使用Selectize来渲染非常长标签的下拉列表。 文本可以很宽,但输入对宽度有约束。 Selectize完美地包装文本(在输入和下拉中),但理想情况下,下拉可以比输入更宽,以提供更好的可读性。 是否有可能使Selectize具有与输入无关的下拉宽度?

 Enter some tags... QID7_4 : Where do you store your digital photos? Check all that apply.-On a cloud service like iCloud, Dropbox, Google Drive, or Amazon Cloud QID5_2 : What do you take pictures of most often? Please rank the following / by drag and drop.-Friends and social activities QID13_5 : How important is it to you that your photos are organized in the / following ways?-By quality (including favorites) 

目前看:

在此处输入图像描述

期望的样子: 在此处输入图像描述

我们的想法是,如果下拉列表扩展为包含更少,则文本更具可读性。

示例jsFiddle

每个标签的宽度都是通过JS动态设置的。 要覆盖那样做的事情:

 .selectize-dropdown { width: 600px !important; } 

小提琴

罗宾的答案对我不起作用。 但是以下做了。

 .selectize-input { min-width: 600px !important; } 

当下拉列表应该动态地将其宽度更改为最大选项:

 .selectize-dropdown { width: auto !important; } .selectize-dropdown [data-selectable], .selectize-dropdown .optgroup-header { white-space: nowrap; }