diff options
author | joseph Borremans <joseph.borremans@gmail.com> | 2012-10-05 17:48:52 +0200 |
---|---|---|
committer | joseph Borremans <joseph.borremans@gmail.com> | 2012-10-05 17:48:52 +0200 |
commit | 82425cf358d6abb316dce04dca1567481f57c463 (patch) | |
tree | 8551ee7ab4ce572d2f8407bd26b3f78d93838b6c | |
parent | 8ec956421c5e94bc2a51e30414d85417c10404b8 (diff) | |
download | gitlab-ce-82425cf358d6abb316dce04dca1567481f57c463.tar.gz |
reversed order of progress indication for visual harmony so that text matches the progress bar
-rw-r--r-- | app/views/milestones/show.html.haml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/views/milestones/show.html.haml b/app/views/milestones/show.html.haml index ba71ead7311..8acf9ca35e2 100644 --- a/app/views/milestones/show.html.haml +++ b/app/views/milestones/show.html.haml @@ -28,9 +28,9 @@ %h5 Progress: %small - #{@milestone.issues.opened.count} open - – #{@milestone.issues.closed.count} closed + – + #{@milestone.issues.opened.count} open .progress.progress-success .bar{style: "width: #{@milestone.percent_complete}%;"} |