ui: improve health check formatting

This commit is contained in:
Jack Pearkes 2014-06-03 14:45:37 -04:00
parent 3092e81eaa
commit 1f447b4a41
2 changed files with 10 additions and 1 deletions

View File

@ -442,9 +442,17 @@
<div class="panel-body">
<h5>Notes</h5>
<p>{{ check.Notes }}</p>
{{#if check.Notes}}
<p>{{ check.Notes }}</p>
{{else}}
<p>No notes</p>
{{/if}}
<h5>Output</h5>
{{#if check.Output }}
<pre>{{check.Output}}</pre>
{{else}}
<pre>No output</pre>
{{/if}}
</div>
</div>

View File

@ -31,6 +31,7 @@
}
.panel-body {
padding: 0px 15px 0px 15px;
p {
font-size: 14px;
color: $text-color;