Multiselect checkbox not showing full value

Hello,

I am using helical insight vesion. 4.1. The multiselect checkbox not showing full value in the dropdown. It is getting cut as shown in below image

image

Thanks,
Vema.

Hello Vema,

This is happening because you have put all the input parmeters in a single group and the drop down values are not going outside that group.

Option 1: You can remove the group.

Option 2: You can put code like below in the common CSS portion which appears

.ms-options-wrap > button:focus, .ms-options-wrap> button{
width: auto !important;
}
div[data-comp-type=checkbox]
{
z-index: 100 !important;
display: table-footer-group !important;
}
.ms-options{
z-index: 1 !important;
}
div[data-comp-type=checkbox]
{
display: table-footer-group;
}

Thank You,
Helical Insight.