From a727bbe7905341b00e5bca441e3c4b9253609d84 Mon Sep 17 00:00:00 2001 From: Jack Pearkes Date: Thu, 24 Apr 2014 13:58:03 -0400 Subject: [PATCH] ui: basic styles for check list --- ui/index.html | 11 +++++++---- ui/styles/_lists.scss | 11 +++++++++++ 2 files changed, 18 insertions(+), 4 deletions(-) diff --git a/ui/index.html b/ui/index.html index 6cf504f6b..ce38767ff 100644 --- a/ui/index.html +++ b/ui/index.html @@ -101,10 +101,13 @@
- {{#each check in node.Checks }} -

{{ check.Name }} {{ check.CheckID }} {{check.Status}}

-
- {{/each}} +
diff --git a/ui/styles/_lists.scss b/ui/styles/_lists.scss index 2ff53b6f4..a8a1a68d8 100644 --- a/ui/styles/_lists.scss +++ b/ui/styles/_lists.scss @@ -36,3 +36,14 @@ border-top-left-radius: 0px; } } + +ul.list-broken { + li { + border-bottom: 2px $gray-background solid; + } + + li:last-child { + border-width: 0px; + } + +}