diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2007-11-17 15:34:10 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2007-11-17 15:34:10 +0000 |
commit | 9ad79612fed43e70f318aed2f90d8b29ad667a77 (patch) | |
tree | 8030568ddb4230e06f329f8aec733edf7afe8ccd /public | |
parent | 1469a4c8df574d066c49b55f9fd9096638740272 (diff) | |
download | redmine-9ad79612fed43e70f318aed2f90d8b29ad667a77.tar.gz redmine-9ad79612fed43e70f318aed2f90d8b29ad667a77.zip |
Roadmap: more accurate completion percentage calculation (done ratio of open issues is now taken into account).
Issues and issues list: 'done ratio' field now displayed as a progress bar.
git-svn-id: http://redmine.rubyforge.org/svn/trunk@908 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'public')
-rw-r--r-- | public/stylesheets/application.css | 15 | ||||
-rw-r--r-- | public/stylesheets/context_menu.css | 2 |
2 files changed, 10 insertions, 7 deletions
diff --git a/public/stylesheets/application.css b/public/stylesheets/application.css index 97d4a291d..f398895e8 100644 --- a/public/stylesheets/application.css +++ b/public/stylesheets/application.css @@ -75,6 +75,7 @@ table.list td.checkbox { width: 15px; padding: 0px;} tr.issue { text-align: center; white-space: nowrap; } tr.issue td.subject, tr.issue td.category { white-space: normal; } tr.issue td.subject { text-align: left; } +tr.issue td.done_ratio table.progress { margin-left:auto; margin-right: auto;} table.list tbody tr:hover { background-color:#ffffdd; } table td {padding:2px;} @@ -242,19 +243,21 @@ color:#505050; } /***** Progress bar *****/ -.progress { +table.progress { border: 1px solid #D7D7D7; border-collapse: collapse; border-spacing: 0pt; empty-cells: show; - padding: 3px; - width: 40em; text-align: center; + float:left; + margin: 1px 6px 1px 0px; } -.progress td { height: 1em; } -.progress .closed { background: #BAE0BA none repeat scroll 0%; } -.progress .open { background: #FFF none repeat scroll 0%; } +table.progress td { height: 0.9em; } +table.progress td.closed { background: #BAE0BA none repeat scroll 0%; } +table.progress td.open { background: #FFF none repeat scroll 0%; } +p.pourcent {font-size: 80%;} +p.progress-info {clear: left; font-style: italic; font-size: 80%;} /***** Tabs *****/ #content .tabs{height: 2.6em;} diff --git a/public/stylesheets/context_menu.css b/public/stylesheets/context_menu.css index 52cac79ee..69acf7b73 100644 --- a/public/stylesheets/context_menu.css +++ b/public/stylesheets/context_menu.css @@ -1,4 +1,4 @@ -#context-menu { position: absolute; } +#context-menu { position: absolute; z-index: 10;} #context-menu ul, #context-menu li, #context-menu a { display:block; |