diff options
author | Go MAEDA <maeda@farend.jp> | 2024-12-12 03:55:26 +0000 |
---|---|---|
committer | Go MAEDA <maeda@farend.jp> | 2024-12-12 03:55:26 +0000 |
commit | a7fad287546c2644e42fd1fc274e1f0a0e48ef33 (patch) | |
tree | 9e11ae8461850ae36b10497abf4773f32f785ce4 | |
parent | 665566702c985c0154c9d75ef2ff464ddbe5ed81 (diff) | |
download | redmine-a7fad287546c2644e42fd1fc274e1f0a0e48ef33.tar.gz redmine-a7fad287546c2644e42fd1fc274e1f0a0e48ef33.zip |
Bold current user's name in Assignee and Author columns on issues list (#41910).
Patch by Go MAEDA (user:maeda).
git-svn-id: https://svn.redmine.org/redmine/trunk@23406 e93f8b46-1217-0410-a6f0-8f06a7374b81
-rw-r--r-- | app/assets/stylesheets/application.css | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/app/assets/stylesheets/application.css b/app/assets/stylesheets/application.css index e385964fb..4e4b171fd 100644 --- a/app/assets/stylesheets/application.css +++ b/app/assets/stylesheets/application.css @@ -374,6 +374,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;} |