Page 1 of 1

Run Button wordwrap

Posted: Fri Nov 23, 2018 12:31 pm
by stevedb
Hi,
What's the best way to make the text on all Run Button objects wrap?
I see the css file has wordwrap and this works if I add it on each form, but I want this applied across my whole nuBuilder instance.
Putting $(':button').addClass('wordwrap'); in the header does not work.
Steve

Re: Run Button wordwrap

Posted: Fri Nov 23, 2018 12:56 pm
by kev1n
In the header, add this style (login again after you have added the code)

Code: Select all

<style>
.nuButton, .input_button {
    white-space: normal;
}
</style>

Re: Run Button wordwrap

Posted: Fri Nov 23, 2018 1:05 pm
by stevedb
Awesome!
Thanks kev1n

Re: Run Button wordwrap

Posted: Fri Nov 23, 2018 10:12 pm
by admin
.