summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPedro Alvarez <pedro.alvarez@codethink.co.uk>2015-10-01 10:12:26 +0100
committerPedro Alvarez <pedro.alvarez@codethink.co.uk>2015-10-01 10:12:26 +0100
commit208405c29ff3b9efdf3c9b23e4606eddd52f4b20 (patch)
tree6a9b948ba483e592e2cc19167c5b6fb72bd0c0b1
parentb090c887c3f36c70056326c6ae63321ae4393217 (diff)
downloadciat-ui-208405c29ff3b9efdf3c9b23e4606eddd52f4b20.tar.gz
Put the progress bars inside of the boxes
-rw-r--r--partials/visualisation.html10
1 files changed, 5 insertions, 5 deletions
diff --git a/partials/visualisation.html b/partials/visualisation.html
index 4bde367..df02dea 100644
--- a/partials/visualisation.html
+++ b/partials/visualisation.html
@@ -26,11 +26,11 @@
ng-class="{'pass': step.lastBuild.success, 'active': step.data.state == 'building', 'fail': step.lastBuild.failed}"
ng-click="select(step, $event)">
{{step.name}}
- </div>
- <div class="progress">
- <div class="progress-bar {{step.style}}" role="progressbar" aria-valuenow="{{step.progress}}" aria-valuemin="0" aria-valuemax="100" style="width: {{step.progress}}%">
- <span class="sr-only">{{step.progress}}% Complete</span>
- </div>
+ <div class="progress">
+ <div class="progress-bar {{step.style}}" role="progressbar" aria-valuenow="{{step.progress}}" aria-valuemin="0" aria-valuemax="100" style="width: {{step.progress}}%">
+ <span class="sr-only">{{step.progress}}% Complete</span>
+ </div>
+ </div>
</div>
</div>
</div>