TouchUI field description(tooltip) property in a form/select box not adding carriage return on rendered page
I need some help with TouchUI field description (tooltip) property in AEM 6.3. So I have a long tooltip for a "granite/ui/components/coral/foundation/form/select". When the dialog is rendered the tooltip does not add a carriage return and runs off the dialog (see below ex. 1b).
I have tried adding a <br> in dialog "fieldDescription="Options to change the padding around the text of Checkerboard,<br>present in the current dialog's component"."
I'v tried adding html in dialog - "fieldDescription="<p><span style="display:block">Options to change the padding around the text of Checkerboard,</span>present in the current dialog's component</p>""
I've tried adding manual carriage return in dialog - "fieldDescription="Options to change the padding around the text of Checkerboard,
present in the current dialog's component"."
None of this forces the rendered dialog to carriage return. My text keeps getting cut off. This is very weird behavior. See my second screen shot (see below ex. 2b), the checkbox field does add a carriage return without any customization on my part. Don't know why the checkbox works and the select box field description doesnt. does anyone have any idea how to solve this issue.
1a. Select xml
------------------------------
<selectfield
jcr:primaryType="nt:unstructured"
sling:resourceType="granite/ui/components/coral/foundation/form/select"
fieldLabel="Padding"
fieldDescription="Options to change the padding around the text of Checkerboard,</span>present in the current dialog's component"
defaultValue="80"
name="./selectfield">
<items jcr:primaryType="nt:unstructured">
<eighty
jcr:primaryType="nt:unstructured"
text="80 (Default)"
value="80"/>
<forty
jcr:primaryType="nt:unstructured"
text="40"
value="40"/>
</items>
</selectfield>
---------------------------------
1b. Textbox tooltip rendered broken

3a. Checkbox dialog xml
---------------------
<flipCheckerboard
jcr:primaryType="nt:unstructured"
sling:resourceType="granite/ui/components/coral/foundation/form/checkbox"
value="{Boolean}true"
uncheckedValue="{Boolean}false"
fieldLabel="Flip checkerboard?"
fieldDescription="Checking this will put the image in the first checkerboard on the right instead of the left."
text="Flip checkerboard?"
name="./flipCheckerboard"/>
-----------------------
3. Checkbox tooltip rendered,not broken
