How to extend the width of Project Dropdown list in the create issue popup?

Andreas Langwaldt August 29, 2017

I have successfully extended the width of the Project Dropdown list in the issue navigator, following the instructions here  >>  How to extend the width of Project Dropdown list in the modal create issue popup?

How can I do the same with the Project Dropdown list in the "create issue" popup?

Thank you.

2 answers

0 votes
A L November 23, 2019

?
Issue Type

<style type="text/css">
#Issue-field, #Issue-single-select{min-width: 1500px;}
</style>

 

doesn't want to work

tell me how to increase other fields such as Issue  type or drop down list on the More button

A L November 23, 2019

<style type="text/css">
#project-field, #issuetype-field, #project-single-select, #issuetype-single-select{min-width: 500px;}
</style>


!!!good

and 

<style type="text/css">
#project-field, #issuetype-field, #project-single-select, #issuetype-single-select{min-width: 500px;}
</style>

0 votes
Hans-Martin Maucher October 19, 2017
  1. Go to the Edit Announcement Banner page.

  2. Add the following CSS script to modify the behavior of the dropdown

    <style type="text/css">
    #project-field, #project-single-select{min-width: 500px;}
    </style>
  3. You can change the min-width: 500px; to the width of your preference.

Suggest an answer

Log in or Sign up to answer