OpenProject is the leading open source project management software.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
openproject/public/templates/components/progress_bar.html

8 lines
267 B

<table class="progress" ng-style="{width: width}">
<tbody>
<tr>
<td class="closed" ng-if="progress > 0" ng-style="{width: progress + '%'}"></td>
<td class="todo" ng-style="{width: (scaleLength - progress) + '%'}"></td>
</tr>
</tbody>
</table>