diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2015-10-09 09:02:11 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2015-10-09 09:02:11 +0000 |
commit | 498a429a41bc47fc7e3980926901cc60863afe9a (patch) | |
tree | b72a844dd383e35a87562d6278134737a8f660ee /public | |
parent | 3a3fe668c77cdb3266bfd1b067a30a1c09713763 (diff) | |
download | redmine-498a429a41bc47fc7e3980926901cc60863afe9a.tar.gz redmine-498a429a41bc47fc7e3980926901cc60863afe9a.zip |
Display totals for each group on grouped queries (#1561).
git-svn-id: http://svn.redmine.org/redmine/trunk@14665 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'public')
-rw-r--r-- | public/stylesheets/application.css | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/public/stylesheets/application.css b/public/stylesheets/application.css index b5df98a90..f66b96b1b 100644 --- a/public/stylesheets/application.css +++ b/public/stylesheets/application.css @@ -231,9 +231,12 @@ table.plugins span.name { font-weight: bold; display: block; margin-bottom: 6px; table.plugins span.description { display: block; font-size: 0.9em; } table.plugins span.url { display: block; font-size: 0.9em; } -table.list tbody tr.group td { padding: 0.8em 0 0.5em 0.3em; font-weight: bold; border-bottom: 1px solid #ccc; text-align:left; } -table.list tbody tr.group span.count {position:relative; top:-1px; color:#fff; font-size:10px; background:#9DB9D5; padding:0px 6px 1px 6px; border-radius:3px; margin-left:4px;} -tr.group a.toggle-all { color: #aaa; font-size: 80%; font-weight: normal; display:none;} +tr.group td { padding: 0.8em 0 0.5em 0.3em; border-bottom: 1px solid #ccc; text-align:left; } +tr.group span.name {font-weight:bold;} +tr.group span.count {font-weight:bold; position:relative; top:-1px; color:#fff; font-size:10px; background:#9DB9D5; padding:0px 6px 1px 6px; border-radius:3px; margin-left:4px;} +tr.group span.totals {color: #aaa; font-size: 80%;} +tr.group span.totals .value {font-weight:bold; color:#777;} +tr.group a.toggle-all { color: #aaa; font-size: 80%; display:none; float:right; margin-right:4px;} tr.group:hover a.toggle-all { display:inline;} a.toggle-all:hover {text-decoration:none;} |