Merge branch '2.4' of github.com:CachetHQ/Cachet into 2.4

This commit is contained in:
James Brooks
2019-07-12 13:37:59 +01:00
7 changed files with 42 additions and 40 deletions
@@ -21,6 +21,7 @@ body.dashboard {
margin: 0;
padding: 0;
list-style: none;
padding-bottom: 64px; /* Ensure the sidebar isn't being covered by the bottom links */
.profile {
text-align: center;
+4 -3
View File
@@ -33,7 +33,8 @@
@if($incident->updates->isNotEmpty())
<div class="list-group">
@foreach($incident->updates as $update)
<a class="list-group-item incident-update-item" href="{{ $update->permalink }}">
<li class="list-group-item incident-update-item">
<i class="{{ $update->icon }}" title="{{ $update->human_status }}" data-toggle="tooltip"></i>
{!! $update->formatted_message !!}
<small>
@@ -42,9 +43,9 @@
data-timeago="{{ $update->timestamp_iso }}">
</abbr>
</small>
<span class="ion-ios-arrow-right pull-right"></span>
<a href="{{ $update->permalink }}" class="pull-right"><span class="ion-ios-arrow-right"></span></a>
</a>
</li>
@endforeach
</div>
@endif