Add a separator between multiple alert silences

This commit is contained in:
Łukasz Mierzwa
2017-06-21 13:29:04 -07:00
parent e0ef9c2da8
commit a6bf82c92d
3 changed files with 6 additions and 3 deletions

View File

@@ -236,6 +236,9 @@ input#filter:focus {
margin-top: 6px;
display: block;
}
.silence-block {
margin-bottom: 2px;
}
.incident .panel {
margin-bottom: 0;

View File

@@ -111,7 +111,7 @@
Silenced by:
</small>
<% _.each(alert.silencedBy, function(silenceID) { %>
<div>
<div class="silence-block">
<% var silence = silences[silenceID] %>
<% if (silence) { %>
<blockquote class="silence-comment">

File diff suppressed because one or more lines are too long