Fix transparency and algorithm for calculating severity icon

This commit is contained in:
James Brooks
2015-06-27 14:03:24 +01:00
parent 54011d7635
commit ea89254bf6
7 changed files with 6 additions and 8 deletions

View File

@@ -28,7 +28,7 @@ class IndexComposer
$withData = [
'systemStatus' => 'danger',
'systemMessage' => trans('cachet.service.bad'),
'favicon' => 'favicon',
'favicon' => 'favicon-high-alert',
];
if (Component::notStatus(1)->count() === 0) {
@@ -40,15 +40,13 @@ class IndexComposer
$withData = [
'systemStatus' => 'success',
'systemMessage' => trans('cachet.service.good'),
'favicon' => 'favicon',
];
}
}
// Determine favicon to use
if (Component::where('status', 4)->count() > 0 || Incident::where('status', 2)->count() > 0) {
$withData['favicon'] = 'favicon-high-alert';
} elseif (Component::whereIn('status', [2, 3])->count() > 0 || Incident::whereIn('status', [1, 3])->count() > 0) {
$withData['favicon'] = 'favicon-medium-alert';
} else {
if (Component::whereIn('status', [2, 3])->count() > 0) {
$withData['favicon'] = 'favicon-medium-alert';
}
}
$view->with($withData);

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 1.0 KiB

BIN
public/img/favicon-high-alert.ico Executable file → Normal file

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 1.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 14 KiB

After

Width:  |  Height:  |  Size: 14 KiB

BIN
public/img/favicon-medium-alert.ico Executable file → Normal file

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 1.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 12 KiB

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 1.0 KiB