mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-12 16:44:08 -08:00
Remove the regular logo fallback, make image capped by height
Signed-off-by: snipe <snipe@snipe.net>
This commit is contained in:
parent
e7fb29fced
commit
4c350bd5a3
|
@ -14,7 +14,7 @@
|
||||||
@endif
|
@endif
|
||||||
|
|
||||||
{{-- Show images in email! --}}
|
{{-- Show images in email! --}}
|
||||||
@if (($snipeSettings->show_images_in_email=='1' ) && (($snipeSettings->brand == '3') || ($snipeSettings->brand == '2')))
|
@if (($snipeSettings->show_images_in_email=='1') && ($snipeSettings->email_logo!=''))
|
||||||
|
|
||||||
{{-- $snipeSettings->brand = 1 = Text --}}
|
{{-- $snipeSettings->brand = 1 = Text --}}
|
||||||
{{-- $snipeSettings->brand = 2 = Logo --}}
|
{{-- $snipeSettings->brand = 2 = Logo --}}
|
||||||
|
@ -22,32 +22,27 @@
|
||||||
@if ($snipeSettings->brand == '3')
|
@if ($snipeSettings->brand == '3')
|
||||||
|
|
||||||
@if ($snipeSettings->email_logo!='')
|
@if ($snipeSettings->email_logo!='')
|
||||||
<img style="max-height: 100px; vertical-align:middle;" src="{{ \Storage::disk('public')->url(e($snipeSettings->email_logo)) }}">
|
<img style="max-height: 100px; vertical-align:middle;" src="{{ \Storage::disk('public')->url(e($snipeSettings->email_logo)) }}">
|
||||||
@elseif ($snipeSettings->logo!='')
|
|
||||||
<img style="max-height: 100px; vertical-align:middle;" src="{{ \Storage::disk('public')->url(e($snipeSettings->logo)) }}">
|
|
||||||
@endif
|
@endif
|
||||||
|
|
||||||
<br><br>
|
<br><br>
|
||||||
{{ $snipeSettings->site_name }}
|
{{ $snipeSettings->site_name }}
|
||||||
<br><br>
|
<br><br>
|
||||||
|
|
||||||
{{-- else if branding type is just logo --}}
|
{{-- else if branding type is just logo --}}
|
||||||
@elseif ($snipeSettings->brand == '2')
|
@elseif ($snipeSettings->brand == '2')
|
||||||
@if ($snipeSettings->email_logo!='')
|
@if ($snipeSettings->email_logo!='')
|
||||||
|
<img style="max-height: 100px; vertical-align:middle;" src="{{ \Storage::disk('public')->url(e($snipeSettings->email_logo)) }}">
|
||||||
<img style="max-width: 100px; vertical-align:middle;" src="{{ \Storage::disk('public')->url(e($snipeSettings->email_logo)) }}">
|
@else
|
||||||
@elseif ($snipeSettings->logo!='')
|
{{ $snipeSettings->site_name }}
|
||||||
<img style="max-width: 100px; vertical-align:middle;" src="{{ \Storage::disk('public')->url(e($snipeSettings->logo)) }}">
|
|
||||||
@endif
|
@endif
|
||||||
@endif
|
@endif
|
||||||
|
|
||||||
@else
|
@else
|
||||||
{{ $snipeSettings->site_name }}
|
{{ $snipeSettings->site_name ?? config('app.name') }}
|
||||||
@endif
|
@endif
|
||||||
|
|
||||||
{{-- Either the $snipeSettings variable isn't set or setup is not complete --}}
|
|
||||||
@else
|
|
||||||
{{ config('app.name') }}
|
|
||||||
@endif
|
@endif
|
||||||
|
|
||||||
@endcomponent
|
@endcomponent
|
||||||
@endslot
|
@endslot
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue