Hello!
I was searching for ways to make fields longer in the create issue dialog. I have found this solution:
<style> #summary /* The "id" of the "Summary" text box */ { max-width: 100px; /* This line will set the length of the text box to 100px */ } #priority-single-select /* The "id" of the "Priority" text box */ { max-width: 100px; /* This line will set the length of the text box to 100px */ } </style>
However, it doesn't work for the Project field, it only shortens it. It seems that the Project field has a maximum size of about 300px, whereas I would need it to be at least 500px.
Do you know how to solve this, please?
You need to make the two elements larger #project-single-select, #project-field {max-width: 500px !important}
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.