summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPedro Alvarez <pedro.alvarez@codethink.co.uk>2015-09-29 16:19:16 +0100
committerPedro Alvarez <pedro.alvarez@codethink.co.uk>2015-09-29 16:19:16 +0100
commit01071fb7ffa5f4e2b433be70e475a66a43a319c9 (patch)
tree4d3231116f8388cbc96ece255d007b69d6eff998
parent5ac5196f4080823873ff351bc23cb7dac0692ac3 (diff)
downloadciat-ui-01071fb7ffa5f4e2b433be70e475a66a43a319c9.tar.gz
Add names to the lanes, in white
-rw-r--r--partials/visualisation.html12
-rw-r--r--style.css4
2 files changed, 14 insertions, 2 deletions
diff --git a/partials/visualisation.html b/partials/visualisation.html
index 19fd886..4cb9c61 100644
--- a/partials/visualisation.html
+++ b/partials/visualisation.html
@@ -4,9 +4,12 @@
<div class="row">
- <div class="lane col-md-2"></div>
+ <div class="lane col-md-2">
+ <h3>Change detection</h3>
+ </div>
<div class="lane col-md-2">
+ <h3>Integration</h3>
<div class="box"
ng-class="{'pass': step.lastBuild.success, 'active': step.data.state == 'building', 'fail': step.lastBuild.failed}"
ng-repeat="step in integrations"
@@ -16,6 +19,7 @@
</div>
<div class="lane col-md-2">
+ <h3>Build</h3>
<div class="box"
ng-class="{'pass': step.lastBuild.success, 'active': step.data.state == 'building', 'fail': step.lastBuild.failed}"
ng-repeat="step in builds"
@@ -25,6 +29,7 @@
</div>
<div class="lane col-md-2">
+ <h3>Provisioning</h3>
<div class="box"
ng-class="{'pass': step.lastBuild.success, 'active': step.data.state == 'building', 'fail': step.lastBuild.failed}"
ng-repeat="step in deploys"
@@ -34,6 +39,7 @@
</div>
<div class="lane col-md-2">
+ <h3>Automatic test</h3>
<div class="box"
ng-class="{'pass': step.lastBuild.success, 'active': step.data.state == 'building', 'fail': step.lastBuild.failed}"
ng-repeat="step in tests"
@@ -42,7 +48,9 @@
</div>
</div>
- <div class="lane col-md-2"></div>
+ <div class="lane col-md-2">
+ <h3>Publishing</h3>
+ </div>
</div>
diff --git a/style.css b/style.css
index 1ac4395..642d940 100644
--- a/style.css
+++ b/style.css
@@ -53,6 +53,10 @@ h1>em>a:hover {
border-radius: 0.5em;
}
+.lane.h3 {
+ color: white;
+}
+
.box:hover {
cursor: pointer;
}