diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2008-03-16 12:21:54 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2008-03-16 12:21:54 +0000 |
commit | a8fcf8487d4165741cf8bffe71ce6302c6aab4e2 (patch) | |
tree | 9057ac438d134a4f7209f9759b487e12f7edbc1d /public | |
parent | 5b6978a1f3f8d4aa6da9607d06217e4322b7feb8 (diff) | |
download | redmine-a8fcf8487d4165741cf8bffe71ce6302c6aab4e2.tar.gz redmine-a8fcf8487d4165741cf8bffe71ce6302c6aab4e2.zip |
Add a time tracking block for 'My page' (#615).
It lists current user's time entries for the last 7 days across all projects, grouped by day with subtotals for each day, and a grand total.
git-svn-id: http://redmine.rubyforge.org/svn/trunk@1260 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'public')
-rw-r--r-- | public/stylesheets/application.css | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/public/stylesheets/application.css b/public/stylesheets/application.css index 1fd7881df..816cd05a2 100644 --- a/public/stylesheets/application.css +++ b/public/stylesheets/application.css @@ -113,9 +113,9 @@ tr.user.locked, tr.user.registered { color: #aaa; } tr.user.locked a, tr.user.registered a { color: #aaa; } tr.time-entry { text-align: center; white-space: nowrap; } -tr.time-entry td.subject, tr.time-entry td.comments { text-align: left; } -tr.time-entry td.hours { text-align: right; font-weight: bold; padding-right: 0.5em; } -tr.time-entry .hours-dec { font-size: 0.9em; } +tr.time-entry td.subject, tr.time-entry td.comments { text-align: left; white-space: normal; } +td.hours { text-align: right; font-weight: bold; padding-right: 0.5em; } +td.hours .hours-dec { font-size: 0.9em; } table.list tbody tr:hover { background-color:#ffffdd; } table td {padding:2px;} |