Theming of Cachet is much simpler with more color settings

This commit is contained in:
James Brooks
2015-08-24 22:39:11 +01:00
parent 4f05f910e9
commit 6b362fd88d
16 changed files with 304 additions and 173 deletions

View File

@@ -1,6 +1,6 @@
<li class="list-group-item {{ $component->group_id ? "sub-component" : "component" }}">
@if($component->link)
<a href="{{ $component->link }}" target="_blank">{{ $component->name }}</a>
<a href="{{ $component->link }}" target="_blank" class="links">{{ $component->name }}</a>
@else
{{ $component->name }}
@endif
@@ -10,6 +10,6 @@
@endif
<div class="pull-right">
<small class="text-component-{{ $component->status }}">{{ $component->humanStatus }}</small>
<small class="text-component-{{ $component->status }} {{ $component->status_color }}">{{ $component->humanStatus }}</small>
</div>
</li>