summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdam Coldrick <adam@sotk.co.uk>2015-09-26 18:16:39 +0100
committerAdam Coldrick <adam@sotk.co.uk>2015-09-28 20:24:04 +0100
commitd4febb6aca849067d4347548e04ad245ab5a32c0 (patch)
tree6cc4440dd09aca758bfdb6f7b3b11fbee7e2cbb9
parent64b7a94a9fb1d76dce41e38148d1f465668601cb (diff)
downloadciat-ui-d4febb6aca849067d4347548e04ad245ab5a32c0.tar.gz
Detail panel
-rw-r--r--index.html5
-rw-r--r--style.css6
2 files changed, 11 insertions, 0 deletions
diff --git a/index.html b/index.html
index 424dbd2..1c69906 100644
--- a/index.html
+++ b/index.html
@@ -15,6 +15,11 @@
ng-repeat="step in steps">
{{step.name}}
</div>
+ <div class="details"
+ ng-show="selected">
+ <h3>{{step.name}}</h3>
+ <em>State:</em> {{step.data.state}}
+ </div>
</div>
</body>
</html>
diff --git a/style.css b/style.css
index 42a8f20..b2a9d46 100644
--- a/style.css
+++ b/style.css
@@ -77,3 +77,9 @@ h1>span {
top: 45%;
}
+.detail {
+ background: #eee;
+ display: block;
+ padding: 1em;
+ border-radius: 0.5em;
+}