diff options
author | Go MAEDA <maeda@farend.jp> | 2020-02-29 04:27:32 +0000 |
---|---|---|
committer | Go MAEDA <maeda@farend.jp> | 2020-02-29 04:27:32 +0000 |
commit | 12ad0677cc41eef24ea929299cce6d03cf8bca46 (patch) | |
tree | 118575f5cafe1e9890efa5baebbeede5333e1445 /public | |
parent | 2253032ebc46837450ff8fc1c43f087627ec26b7 (diff) | |
download | redmine-12ad0677cc41eef24ea929299cce6d03cf8bca46.tar.gz redmine-12ad0677cc41eef24ea929299cce6d03cf8bca46.zip |
Make group names bold on tracker summary view (#32991).
Patch by Bernhard Rohloff.
git-svn-id: http://svn.redmine.org/redmine/trunk@19537 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'public')
-rw-r--r-- | public/stylesheets/application.css | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/public/stylesheets/application.css b/public/stylesheets/application.css index 815bd4e15..bdfccf664 100644 --- a/public/stylesheets/application.css +++ b/public/stylesheets/application.css @@ -336,7 +336,8 @@ tr.user.locked, tr.user.registered { color: #aaa; } tr.user.locked a, tr.user.registered a { color: #aaa; } table.permissions td.role {color:#999;font-size:90%;font-weight:normal !important;text-align:center;vertical-align:bottom;} -table.permissions tr.group>td:nth-of-type(1) {font-weight: bold;} +table.permissions tr.group>td:nth-of-type(1), +table.tracker-summary tr.group>td:nth-of-type(1) {font-weight: bold;} tr.wiki-page-version td.updated_on, tr.wiki-page-version td.author {text-align:center;} |