galaxyproject / galaxy

Data intensive science for everyone.
https://galaxyproject.org
Other
1.39k stars 999 forks source link

incorrect word wrapping in toolform param label #18993

Open martenson opened 4 days ago

martenson commented 4 days ago

This happens both in proper tool form and in workflows (where it is more pronounced due to limited width)

Galaxy Version and/or server at which you observed the bug Main b56ad8d12a77da51dc9129e4c80705dd46c19839

Browser and Operating System chrome macos

Screenshot 2024-10-15 at 9 07 55 AM

mvdbeek commented 3 days ago

CSS class may need tweaking:

                <span v-if="props.title" class="ui-form-title-text ml-1">
                    <label :for="props.id">{{ props.title }}</label>
                </span>
            </span>
            <span v-else-if="props.title" class="ui-form-title-text">
                <label :for="props.id">{{ props.title }}</label>
            </span>