summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdam Coldrick <adam@sotk.co.uk>2015-09-27 09:04:21 +0100
committerAdam Coldrick <adam@sotk.co.uk>2015-09-28 20:26:11 +0100
commit4474aac719dafb40683aed58f2329f0593a6a7ce (patch)
tree303fada6aa17b9bda382cf002876e21d9f533d41
parentf4985343ebbdf8943187ff71229d50387dc3cde7 (diff)
downloadciat-ui-4474aac719dafb40683aed58f2329f0593a6a7ce.tar.gz
Detail styling
-rw-r--r--index.html7
-rw-r--r--style.css5
2 files changed, 8 insertions, 4 deletions
diff --git a/index.html b/index.html
index e01daeb..ac6b62d 100644
--- a/index.html
+++ b/index.html
@@ -21,9 +21,10 @@
ng-show="selected"
ng-click="$event.stopPropagation()">
<h3>{{selected.name}}</h3>
- <strong>State:</strong> {{selected.data.state}}
- <br />
- <a ng-href="{{selected.lastBuild.logs[2][1]}}">Last Build Log</a>
+ <div class="detail-contents">
+ <p><strong>State:</strong> {{selected.data.state}}</p>
+ <a ng-href="{{selected.lastBuild.logs[2][1]}}">Last Build Log</a>
+ </div>
</div>
</div>
</div>
diff --git a/style.css b/style.css
index 0a568af..2bcc6d1 100644
--- a/style.css
+++ b/style.css
@@ -76,7 +76,6 @@ h1>span {
font-size: 90%;
position: absolute;
text-align: center;
- overflow: auto;
width: 100%;
top: 45%;
}
@@ -90,6 +89,10 @@ h1>span {
width: 50%;
}
+.detail-contents {
+ text-align: left;
+}
+
.container {
height: 85%;
}