Forums » Development »
Making issues that are assigned to you more visible
Added by Michael Barry over 5 years ago
I'm hoping I could draw on the experts for some advice...
When a user opens up a list of issues, I'd like to bring to attention those issues that are specifically assigned to that person--the current user. Nothing too garish; for now I'm thinking of just making that person's name appear bold in the Assignee column.
The best I've been able to do is:
(To my theme's application.css file...)
td.assigned_to a.user.active { font-weight:bold;}
...but "a.user.active" isn't the right term here. This changes the appearance of the names of ALL active users, in the Assignee column, not just the one current user. Is there a way to call out just YOU? ("You" as in, the current user who is logged in, alone.)
Thanks.
Replies (2)
RE: Making issues that are assigned to you more visible - Added by Bernhard Rohloff over 5 years ago
You just have to look at the above layer to solve your problem. You can find it in the <tr> element.
This should do the trick:
tr.assigned-to-me td.assigned_to { font-weight:bold;}
RE: Making issues that are assigned to you more visible - Added by Michael Barry over 5 years ago
Bernhard,
Thank you so much! This does indeed work! (I had to be careful not to confuse those hyphens with underscores...)
Best regards,
Mike