nbuytaert1 / apex-select2

Select lists in Oracle APEX as they should be
https://apex.oracle.com/pls/apex/f?p=64237:20
GNU General Public License v2.0
56 stars 18 forks source link

Long Text items not wraping #106

Closed JacoFourie closed 6 years ago

JacoFourie commented 6 years ago

Hi. Is there a way to have the text wrap like in the dropdown ? It is now extending past the page item.

image

In the dropdown it is correct

image

JacoFourie commented 6 years ago

I found this fix. How do I get the CSS to work with the plug-in ? https://github.com/select2/select2/issues/4585

JacoFourie commented 6 years ago

OK I got it working.

I added this CSS to the page in-line and now it wrapps

.select2-container .select2-selection--multiple .select2-selection__choice {
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

image