Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in
Celebration

Earn badges and make progress

You're on your way to the next level! Join the Kudos program to earn points and save your progress.

Deleted user Avatar
Deleted user

Level 1: Seed

25 / 150 points

Next: Root

Avatar

1 badge earned

Collect

Participate in fun challenges

Challenges come and go, but your rewards stay with you. Do more to earn more!

Challenges
Coins

Gift kudos to your peers

What goes around comes around! Share the love by gifting kudos to your peers.

Recognition
Ribbon

Rise up in the ranks

Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!

Leaderboard

Come for the products,
stay for the community

The Atlassian Community can help you and your team get more value out of Atlassian products and practices.

Atlassian Community about banner
4,646,751
Community Members
 
Community Events
196
Community Groups

New colors for issue statuses in conflict with agile gadgets

Edited

Colors were changed in 8.2 update. Details can be found here (RN: New colors of issue statuses). 

I saw several threads and tickets mentioning this and the confusion this has created. You can like or dislike the colors. I do not like the new styles used, as it has been mentioned somewhere, even for color blindness it could be more difficult now to distinguish between these pastel tones.

Anyway, that discussion could be endless, and it could be just a matter of taste. 

But at least to be consequent with this change Atlassian should have updated "Sprint Health Gadget". I know dashboards and gadgets have been forgotten for years, but some people are still using these things.

It is quite clear:

Capture.JPG

How can I explain above picture?

For Sprint progress, "In Progress" (it means, all statuses in that category) uses yellow. 

But, for user stories status "IN PROGRESS" uses the new blue. 

I think it's pretty obvious this change has an impact beyond personal tastes or color preferences.

Does the blue means "Open" (something pending) or "In Progress" (work in progress)

There is a ticket asking for a rollback or at least an option to use old colors:

https://jira.atlassian.com/browse/JRASERVER-69448?_ga=2.149714934.1776537625.1571764340-523257500.1542881725

 

I would suggest to the rest of the people facing this issue or thinking that this has been probably a wrong decision to vote for this change or option.

2 comments

Pawel Wodkowski
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
Nov 04, 2019 • edited

Hi jcarazoi,

Thank you for pointing out the inconsistency. You are right that the current state may be confusing. We will update the Sprint Health Gadget colors to match the new colors for issue statuses released in Jira 8.2.0. We’ll be shipping the corrected Sprint Health Gadget in the upcoming 8.6.0 release, but also we will backport the fix to Jira 8.5, which is our most recent Enterprise Release.

You can watch our progress here - https://jira.atlassian.com/browse/JRASERVER-70207

Regarding the suggestion to bring back the original status colors to Jira Server ad Data Center, we are not considering this option as the way forward. Instead, to improve the overall experience, especially for color-blind users, we are considering introducing user settings to add patterns in issue statuses. You can see a sample design below. 

Best regards,

Pawel Wodkowski
Senior UX Designer
Jira Server team

 

preview---patterns.jpgpreview---patterns2.jpg

Nirmani Kalakheti
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
Sep 16, 2020 • edited Oct 23, 2020

@Pawel Wodkowski , What is back port in Atlassian applications? e.g. LTS versions are back port supported. What does that mean to a layman users or admins? You said, "we will back port the fix to Jira 8.5". Has this been implemented? If so, why my Jira 8.5.0 Gadget shows the same old legacy color? JRASERVER-70207 closed without any workaround.

I am not sure how to modify the pattern. Can @Javier Carazo or @Pawel Wodkowski explain about this?

 

Jira8.5._Gadget_Legacy_Color.PNG

For Anyone that could be interested on this, there is an option to tweak status label colours and set them back to original palette.

Credits go to : Putri Nur Dayana Kamarudin

She suggested to use CSS Styles in announcement banner, I just adapted and extended CSS example provided. 

Use bellow code to get back to BLUE/YELLOW/GREEN colours.

<style type="text/css">
.aui-lozenge.jira-issue-status-lozenge-yellow, .aui-lozenge.jira-issue-status-lozenge-inprogress
{
  background-color: #ffd351 !important;
  border-color: #ffd351 !important;
  color: #594300 !important;
}
.aui-lozenge.jira-issue-status-lozenge-blue-gray, .aui-lozenge.jira-issue-status-lozenge-new
{
  background-color: #4a6785 !important;
  border-color: #4a6785 !important;
  color: #fff !important;
}
.aui-lozenge.jira-issue-status-lozenge-green, .aui-lozenge.jira-issue-status-lozenge-done
{
  background-color: #14892c !important;
  border-color: #14892c !important;
  color: #fff !important;
}
</style>

Et voilà!!!

greenhopper.png

Comment

Log in or Sign up to comment