Feature #41910
closedBold current user's name in Assignee and Author columns on issues list
0%
Description
It would be a nice improvement on the UI side if, in each query (custom or not), the issues assigned to me were highlighted with bold text. This would add a better glance when viewing queries. This feature is available for example in the purplemine2 theme here https://github.com/mrliptontea/PurpleMine2
Files
Updated by Go MAEDA about 1 month ago
Thank you for your suggestion. Instead of highlighting the entire issue row, I propose bolding only the Assignee field for issues assigned to the user and the Author field for issues created by the user. This approach offers several advantages:
1. Clearer Meaning:
Highlighting specific fields avoids confusion about why an issue is emphasized, unlike bolding the entire row, which might imply higher priority.
2. Cleaner UI:
By focusing on relevant fields, the interface remains visually balanced.
diff --git a/app/assets/stylesheets/application.css b/app/assets/stylesheets/application.css
index 1c9595172..689a6323a 100644
--- a/app/assets/stylesheets/application.css
+++ b/app/assets/stylesheets/application.css
@@ -372,6 +372,9 @@ tr.issue td.relations { text-align: left; }
tr.issue td.done_ratio table.progress { margin-left:auto; margin-right: auto;}
tr.issue td.relations span, tr.issue td.watcher_users a {white-space: nowrap;}
tr.issue td.watcher_users ul {list-style: none; padding: 0; margin: 0}
+tr.issue.created-by-me td.author {font-weight: bold;}
+tr.issue.assigned-to-me td.assigned_to {font-weight: bold;}
+tr.issue.assigned-to-my-group td.assigned_to {font-weight: bold;}
table.issues td.block_column {color:#777; font-size:90%; padding:4px 4px 4px 24px; text-align:left; white-space:normal;}
table.issues td.block_column>span {font-weight: bold; display: block; margin-bottom: 4px;}
table.issues td.block_column>pre {white-space:normal;}
Updated by pasquale [:dedalus] about 1 month ago
Hi Go MAEDA I totally agree with you.
Thanks!
Updated by Go MAEDA about 1 month ago
- Target version set to 6.1.0
Setting the target version to 6.1.0.
Updated by Go MAEDA about 1 month ago
- Subject changed from [UX] Default theme: make bold the text in custom queries list when an issue is assigned to me to Bold current user's name in Assignee and Author columns on issues list
Updated by Go MAEDA about 1 month ago
- Status changed from New to Closed
- Assignee set to Go MAEDA
- Resolution set to Fixed
Committed the patch in r23406.