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,553,483
Community Members
 
Community Events
184
Community Groups

Show component inline with backlog

Hi all, 

 

I cant figure out how to get the "component" to show inline in my backlog.

 

The component is created, I went to edit the board layout. I can get the "component" to show if I do a "card layout", but it puts the component on the second line. i don't want that.

I want it to show up like a label so visually its easier to sort items by "component" as I drag and drop items in the backlog. Like the last image where the "epic" is highlighted

 

Screen Shot 2018-06-06 at 12.40.55 PM.pngScreen Shot 2018-06-06 at 12.42.41 PM.png

Screen Shot 2018-06-06 at 12.44.33 PM.png

4 answers

7 votes
Deleted user Jun 07, 2018

Hi @Abe,

Go to the the Board Settings > Card layout > Under the Backlog Section add the Components field. Go back to your board and you should see Components on your issues in the Backlog view.

Hope this helps

Hi Danny, 

I had already done that as the picture showed above but as stated it drops it onto a second line, whereas I am trying to get it to look like a label like the Epic called "Login" 

Like # people like this

Would also like to see this inline... 4 years later.

Like # people like this

This works for me, ymmv:

.ghx-issue-compact .ghx-end.ghx-estimate {
display: flex !important;
flex-direction: row !important;
align-items: center !important;
flex-wrap: nowrap !important;
}
.ghx-issue-compact .ghx-end.ghx-estimate > .ghx-avatar-img {
line-height: initial;
margin-top: 0 !important;
font-size: initial;
}
.ghx-agile .aui-label.ghx-label {
display: flex;
flex-wrap: nowrap;
align-items: center;
margin: 0 5px;
}
.ghx-issue-compact .ghx-row:first-child {
margin: 0 !important;
display: flex !important;
align-items: center !important;
flex-grow: 1 !important;
}
.ghx-issue-compact .ghx-row-version-epic-subtasks {
padding: 0 !important;
position: static !important;
order: 3 !important;
display: flex !important;
align-items: center !important;
}
.ghx-issue-content {
display: flex;
padding: 3px 5px !important;
align-items: center;
}
.ghx-issue-compact .ghx-type img {
display: static !important;
vertical-align: initial !important;
}
.ghx-issue-compact .ghx-plan-extra-fields {
margin: 0 !important;
}

 (I use https://chrome.google.com/webstore/detail/user-javascript-and-css/nbhcbdghjpllgmfilhnhkllmkecfmpld)

You guys at Atlassian give up a bit too easy sometimes.   Low votes doesn't mean you can't spend an hour on some CSS improvements. :-/

Like # people like this

@Dan Dumont Did you get this working? Only on the browser side not for all users?

Browser only, using a chrome extension that lets me inject custom css.

Like Eric Wyman likes this

There may be a place to dump css overrides on the page, I don't have access to admin my instance.

1 vote
Tarun Sapra
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 17, 2018

Hello @Abe

I was looking into implementing this behaviour this morning, but it seems it's not possible and due to low votes Atlassian has turned down this request

https://jira.atlassian.com/browse/JSWSERVER-14722

terrible support

0 votes
Stephen Bulsara
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
May 17, 2023

For anyone arriving at this question in 2023, the below works for me with a CSS browser extension:

.ghx-issue-content {
display: flex !important;
justify-content: space-between;
}

.ghx-row.ghx-end.ghx-items-container {
display: flex !important;
position: initial !important;
order: 3;
height: auto;
}

.ghx-extra-field {
background-color: var(--ds-background-accent-green-bolder,#00875a);
border: 1px solid var(--ds-border, #00875a);
color: var(--ds-text-inverse,#fff);
border-radius: 3px;
border-top-left-radius: 3px;
border-top-right-radius: 3px;
border-bottom-right-radius: 3px;
border-bottom-left-radius: 3px;
display: inline-block;
margin: 0;
padding: 2px 5px;
text-align: center;
text-decoration: none;
Font-size: 14px;
line-height: 14px;
Font-weight: Normal;
text-transform: none;
}

.ghx-fa {
background: var(--ds-background-selected, #ccc);
border: 1px solid var(--ds-border, #ccc);
color: var(--ds-text, #333);
}

.ghx-row.ghx-plan-main-fields {
flex-grow: 2;
}

This turns the components into a similar design as Epics. Without some custom JS there is no way to colour code them so have made them a single colour for now

Suggest an answer

Log in or Sign up to answer