summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPedro Alvarez <pedro.alvarez@codethink.co.uk>2015-09-30 14:26:44 +0100
committerPedro Alvarez <pedro.alvarez@codethink.co.uk>2015-09-30 14:26:44 +0100
commit3ad0f4ed1b3eec817ebe840fa0f3f76159aa4bce (patch)
tree40201f2ae0848257a866f3232be9ffb895d79c09
parent8e1003ece0b394f310f83791b55b026431b27622 (diff)
downloadciat-ui-3ad0f4ed1b3eec817ebe840fa0f3f76159aa4bce.tar.gz
Add links to lane names
-rw-r--r--partials/visualisation.html12
-rw-r--r--style.css7
2 files changed, 11 insertions, 8 deletions
diff --git a/partials/visualisation.html b/partials/visualisation.html
index 9ddd8a1..c3f5eb1 100644
--- a/partials/visualisation.html
+++ b/partials/visualisation.html
@@ -5,11 +5,11 @@
<div class="row boxes">
<div class="lane col-md-2 ng-hide">
- <h3>Change detection</h3>
+ <a class="lanelink" href="http://wiki.baserock.org/ciat/"><h3>Change detection</h3></a>
</div>
<div class="lane col-md-2">
- <h3>Integration</h3>
+ <a class="lanelink" href="http://wiki.baserock.org/ciat/"><h3>Integration</h3></a>
<div class="box"
ng-class="{'pass': step.lastBuild.success, 'active': step.data.state == 'building', 'fail': step.lastBuild.failed}"
ng-repeat="step in integrations"
@@ -19,7 +19,7 @@
</div>
<div class="lane col-md-2">
- <h3>Build</h3>
+ <a class="lanelink" href="http://wiki.baserock.org/ciat/"><h3>Build</h3></a>
<div class="box"
ng-class="{'pass': step.lastBuild.success, 'active': step.data.state == 'building', 'fail': step.lastBuild.failed}"
ng-repeat="step in builds"
@@ -29,7 +29,7 @@
</div>
<div class="lane col-md-2">
- <h3>Provisioning</h3>
+ <a class="lanelink" href="http://wiki.baserock.org/ciat/"><h3>Provisioning</h3></a>
<div class="box"
ng-class="{'pass': step.lastBuild.success, 'active': step.data.state == 'building', 'fail': step.lastBuild.failed}"
ng-repeat="step in deploys"
@@ -39,7 +39,7 @@
</div>
<div class="lane col-md-2">
- <h3>Automatic test</h3>
+ <a class="lanelink" href="http://wiki.baserock.org/ciat/"><h3>Automatic test</h3></a>
<div class="box"
ng-class="{'pass': step.lastBuild.success, 'active': step.data.state == 'building', 'fail': step.lastBuild.failed}"
ng-repeat="step in tests"
@@ -49,7 +49,7 @@
</div>
<div class="lane col-md-2">
- <h3>Publishing</h3>
+ <a class="lanelink" href="http://wiki.baserock.org/ciat/"><h3>Publishing</h3></a>
<div class="box"
ng-class="{'pass': step.lastBuild.success, 'active': step.data.state == 'building', 'fail': step.lastBuild.failed}"
ng-repeat="step in publishings"
diff --git a/style.css b/style.css
index 0601a6d..b366bb5 100644
--- a/style.css
+++ b/style.css
@@ -57,8 +57,11 @@ h1>em>a:hover {
width: 20%;
margin: 0 auto;
}
-.lane.h3 {
- color: white;
+.lanelink:link {
+ color: white;
+}
+.lanelink:hover {
+ color: #F84525;
}
.box:hover {