diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2008-02-26 18:15:58 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2008-02-26 18:15:58 +0000 |
commit | 328df74dd1779963b80317b72e56aa2a4ea5e2f2 (patch) | |
tree | bc34c905768eeae2106de016d9887ba106c14a8a /public | |
parent | 792b7f30e32eec84d6106e947fc3987e4e26a0b0 (diff) | |
download | redmine-328df74dd1779963b80317b72e56aa2a4ea5e2f2.tar.gz redmine-328df74dd1779963b80317b72e56aa2a4ea5e2f2.zip |
Adds date range filter and pagination on time entries detail view (closes #434).
git-svn-id: http://redmine.rubyforge.org/svn/trunk@1173 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'public')
-rw-r--r-- | public/stylesheets/application.css | 7 | ||||
-rw-r--r-- | public/stylesheets/calendar.css | 2 |
2 files changed, 8 insertions, 1 deletions
diff --git a/public/stylesheets/application.css b/public/stylesheets/application.css index cffcab26f..003b21eca 100644 --- a/public/stylesheets/application.css +++ b/public/stylesheets/application.css @@ -110,6 +110,10 @@ tr.user td { white-space: nowrap; } 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.6em; } + table.list tbody tr:hover { background-color:#ffffdd; } table td {padding:2px;} table p {margin:0;} @@ -169,6 +173,9 @@ div#roadmap .wiki h1:first-child { display: none; } div#roadmap .wiki h1 { font-size: 120%; } div#roadmap .wiki h2 { font-size: 110%; } +div.total-hours { text-align: left; font-size: 110%; font-weight: bold; } +div.total-hours span.hours-int { font-size: 120%; } + .autoscroll {overflow-x: auto; padding:1px; width:100%; margin-bottom: 1.2em;} #user_firstname, #user_lastname, #user_mail, #my_account_form select { width: 90%; } diff --git a/public/stylesheets/calendar.css b/public/stylesheets/calendar.css index 842dbf71a..c8d2dd619 100644 --- a/public/stylesheets/calendar.css +++ b/public/stylesheets/calendar.css @@ -6,7 +6,7 @@ img.calendar-trigger { margin-left: 4px; } -div.calendar { position: relative; z-index: 15;} +div.calendar { position: relative; z-index: 30;} .calendar, .calendar table { border: 1px solid #556; |