Look and feel v13

This commit is contained in:
Laurent Destailleur 2020-12-17 12:15:34 +01:00
parent d0cc93c608
commit 075181a8d5
3 changed files with 12 additions and 2 deletions

View File

@ -856,7 +856,7 @@ function getTicketTimelineIcon($actionstatic, &$histo, $key)
if ($actionstatic->code == 'AC_TICKET_CREATE') {
$iconClass = 'fa fa-ticket';
} elseif ($actionstatic->code == 'AC_TICKET_MODIFY') {
$iconClass = 'fa fa-pencil';
$iconClass = 'fa fa-pencilxxx';
} elseif ($actionstatic->code == 'TICKET_MSG') {
$iconClass = 'fa fa-comments';
} elseif ($actionstatic->code == 'TICKET_MSG_PRIVATE') {

View File

@ -191,6 +191,16 @@ a.badge-dark:focus, a.badge-dark:hover {
}
@media only screen and (max-width: 570px)
{
span.badge.badge-status {
overflow: hidden;
max-width: 130px;
text-overflow: ellipsis;
}
}
/* STATUS BADGES */
<?php
for ($i = 0; $i <= 9; $i++) {

View File

@ -695,7 +695,7 @@ if ($action == 'create' || $action == 'presend')
print '</td></tr>';
// Group
print '<tr><td><span class="fieldrequired"><label for="selectcategory_code">'.$langs->trans("TicketGroup").'</span></label></td><td>';
print '<tr><td><span class="fieldrequired"><label for="selectcategory_code">'.$langs->trans("TicketCategory").'</span></label></td><td>';
$formticket->selectGroupTickets((GETPOST('category_code') ? GETPOST('category_code') : $object->category_code), 'category_code', '', '2');
print '</td></tr>';