ui: basic styles for check list

This commit is contained in:
Jack Pearkes 2014-04-24 13:58:03 -04:00
parent 3e4029c010
commit 03138104b9
2 changed files with 18 additions and 4 deletions

View File

@ -101,10 +101,13 @@
</div> </div>
<div class="panel-body"> <div class="panel-body">
{{#each check in node.Checks }} <ul class="list-unstyled list-broken">
<h4>{{ check.Name }} <small>{{ check.CheckID }}</small> <span class="pull-right"><small>{{check.Status}}</small></h4> {{#each check in node.Checks }}
<hr> <li>
{{/each}} <h4>{{ check.Name }} <small>{{ check.CheckID }}</small> <span class="pull-right"><small>{{check.Status}}</small></h4>
</li>
{{/each}}
</ul>
</div> </div>
</div> </div>

View File

@ -36,3 +36,14 @@
border-top-left-radius: 0px; border-top-left-radius: 0px;
} }
} }
ul.list-broken {
li {
border-bottom: 2px $gray-background solid;
}
li:last-child {
border-width: 0px;
}
}