From 3efe6201b5c6475b63a59e33f07dbd20f1d39312 Mon Sep 17 00:00:00 2001 From: Jack Pearkes Date: Mon, 9 Jun 2014 11:12:41 -0400 Subject: [PATCH] ui: add checks for sessions and a double line list --- ui/index.html | 7 ++++++- ui/styles/_lists.scss | 15 +++++++++++++++ 2 files changed, 21 insertions(+), 1 deletion(-) diff --git a/ui/index.html b/ui/index.html index 6facb593c7..b5d241732a 100644 --- a/ui/index.html +++ b/ui/index.html @@ -498,12 +498,17 @@ {{errorMessage}} {{#each session in sessions }} -
+
{{session.ID}}
+
    + {{#each check in session.Checks}} +
  • {{check}}
  • + {{/each}} +
{{/each}} diff --git a/ui/styles/_lists.scss b/ui/styles/_lists.scss index 9fd500f65a..6204f7db3b 100644 --- a/ui/styles/_lists.scss +++ b/ui/styles/_lists.scss @@ -51,6 +51,11 @@ margin-top: 4px; height: 40px; + + &.double-line { + height: 50px; + } + font-weight: 700; .name { @@ -64,6 +69,16 @@ color: $gray-light; } } + + ul.sub { + li { + padding: 0; + } + + margin: 0; + font-size: 12px; + color: $gray-light; + } } .list-bar-horizontal {