- Cambiarle los permisos al archivo:
chmod 777 -R /opt/faveo/faveo-helpdesk/public/lb-faveo/css/app.css
a {
color: #3367D6;
}
a:focus,
a:hover {
color: #FF582F;
}
.btn-custom {
background-color: #3367D6;
border-color: #224286;
}
.site-hero {
background: #3367D6;
}
Corregir problema formularios no aparecen en tiquete
- Darle permisos a los archivos:
chmod 777 -R /opt/faveo/faveo-helpdesk/resources/views/themes/default1/agent/helpdesk/ticket/timeline.blade.php
chmod 777 -R /opt/faveo/faveo-helpdesk/resources/views/themes/default1/client/helpdesk/ckeckticket.blade.php
nano /opt/faveo/faveo-helpdesk/resources/views/themes/default1/agent/helpdesk/ticket/timeline.blade.php
@if($conversation->id == $ij->id)
<?php $ticket_form_datas = App\Model\helpdesk\Ticket\Ticket_Form_Data::where('ticket_id', '=', $tickets->ticket_id)->select('id')->get(); ?>
@if(isset($ticket_form_datas))
<br/>
<table class="table table-bordered">
<tbody>
@foreach($ticket_form_datas as $ticket_form_data)
<tr>
<td style="width: 30%">{!! $ticket_form_data->getFieldKeyLabel() !!}</td>
<td>{!! removeUnderscore($ticket_form_data->content) !!}</td>
</tr>
@endforeach
</tbody></table>
@endif
@endif
@if($conversation->id == $ij->id)
<?php $ticket_form_datas = App\Model\helpdesk\Ticket\Ticket_Form_Data::where('ticket_id', '=', $tickets->id)->get(); ?>
@if(isset($ticket_form_datas))
<br/>
<table class="table table-bordered">
<tbody>
@foreach($ticket_form_datas as $ticket_form_data)
<tr>
<td style="width: 30%">{!! $ticket_form_data->getFieldKeyLabel() !!}</td>
<td>{!! removeUnderscore($ticket_form_data->content) !!}</td>
</tr>
@endforeach
</tbody></table>
@endif
@endif
jQuery('#loader_frame{{$conversation->id}}').css('height', h+20);
X
jQuery('#loader_frame{{$conversation->id}}').css('height', h+200);