1
0
mirror of https://github.com/freescout-helpdesk/freescout.git synced 2024-11-24 11:22:42 +01:00

customer.profile_preview_prepend hook

This commit is contained in:
FreeScout 2020-12-16 23:10:30 -08:00
parent 3a3dd05393
commit ef8d6ddf07
2 changed files with 8 additions and 1 deletions

View File

@ -1157,6 +1157,9 @@ a h4 {
color: #72808e;
text-decoration: none;
}
.profile-preview {
position: relative;
}
.profile-preview .customer-social-profiles {
top: 61px;
}
@ -3734,10 +3737,11 @@ a.help-icon:hover {
.link-grey:hover,
.link-grey:focus {
color: #93a1af!important;
text-decoration: none!important;
}
.link-grey:hover {
color: #4f5d6b!important;
text-decoration: none;
text-decoration: none!important;
}
.link-underlined {
text-decoration: underline;

View File

@ -3,8 +3,11 @@
@section('title_full', $customer->getFullName(true).' - '.__('Customer Profile'))
@section('body_class', 'sidebar-no-height')
@section('body_attrs')@parent data-customer_id="{{ $customer->id }}"@endsection
@section('sidebar')
<div class="profile-preview">
@action('customer.profile_preview_prepend', $customer)
@include('customers/profile_snippet')
</div>
@endsection