Tweak instance errors boxes UI

This commit is contained in:
Łukasz Mierzwa
2017-06-30 23:12:51 -07:00
parent 2420212eb0
commit 514eacb81d
3 changed files with 11 additions and 7 deletions

View File

@@ -210,6 +210,11 @@ input#filter:focus {
margin-right: 10px;
}
#instance-errors > .alert {
padding: 8px;
margin-bottom: 6px;
}
.panel-title {
overflow: hidden;
}

View File

@@ -80,11 +80,10 @@
<script type="application/json" id="instance-error">
<% _.each(instances, function(instance) { %>
<div class="alert alert-warning" role="alert">
<strong>
<i class="fa fa-exclamation-circle"></i>
<%- instance.name %>:
</strong>
<div class="alert alert-warning text-center" role="alert">
<span class='label label-list label-primary'>
<%- instance.name %>
</span>
<%- instance.error %>
</div>
<% }) %>

File diff suppressed because one or more lines are too long