How to hide the "Assign" and "Assign to me" links via CSS

Platform Notice: Data Center Only - This article only applies to Atlassian products on the Data Center platform.

Note that this KB was created for the Data Center version of the product. Data Center KBs for non-Data-Center-specific features may also work for Server versions of the product, however they have not been tested. Support for Server* products ended on February 15th 2024. If you are running a Server product, you can visit the Atlassian Server end of support announcement to review your migration options.

*Except Fisheye and Crucible

Summary

The information in this page relates to customizations in Jira. Consequently, Atlassian Support cannot guarantee to provide any support for the steps described on this page as customizations are not covered under Atlassian Support Offerings. Please be aware that this material is provided for your information only and that you use it at your own risk.

Also, please be aware that customizations done by directly modifying files are not included in the upgrade process. These modifications will need to be reapplied manually on the upgraded instance.

Certain workflows may require that issue assignment is done in a specific workflow step, or with a custom screen. This may make JIRA Administrators require some customization to hide the default JIRA assignment buttons and links, so that users are forced to use their custom workflows assignment procedure. This knowledge base article describes how to hide the 'Assign button' from the issue menu, and the 'Assign to me' links by simple CSS rules.

Solution

Workaround

Modify the JIRA Announcement Banner, add the following lines of CSS

1 2 3 4 5 <style> a#assign-issue {display:none} /* Removes assign issue from main menu */ a#assign-to-me {display:none} /* Removes assign to me link from Issue View */ #assign-to-me-trigger {display:none !important} /* Removes assign to me link from Assign Screen */ </style>

Notes

  • This will affect or apply to all projects in the JIRA instance.

  • This will not actually disable accessing the assign screen using the keyboard shortcut 'a'.

Updated on April 11, 2025

Still need help?

The Atlassian Community is here for you.