ui: basic styles for check list

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

View File

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

View File

@ -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;
}
}