JIRA,
WE have been asked to change the background color and font color of the EDIT button - other requests might come to do this for other buttons as well.
Is there an easy way to do this?
Thanks Joe. If we did have to do this, we would probably do this like Nic suggested thru CSS.
Go to the look and feel section under the user interface section. In general, if it can't be done through the UI or with a supported plugin you probably don't really need to do it. Any changes you make to source code will need to be maintained and run the risk of Atlassian changing where they do it making reproducing the modification troublesome.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Easy - no - you need to amend the css to do this.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
or use the header as per https://community.atlassian.com/t5/Jira-Service-Management/Button-Share-with-customer-change-colour/qaq-p/1500156
jira administration-->System-->user interface
or tap fast on your keyboard GG to search "Announcement banner"
<style type="text/css">
button.aui-button.aui-button-primary.sd-external-submit{
background-color:#fff;
color: #0052cc
}
#addcomment .sd-comment-container .sd-rte-bar .sd-internal-submit, .sd-comment-container .sd-rte-bar .sd-internal-submit{
background-color: #0052cc;
color: #ffff
}
</style>
Credit due to Alessandro Lombardo
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.