Fix look and feel v11
This commit is contained in:
parent
38c8b79c54
commit
e8db3a2aa0
@ -970,7 +970,7 @@ if (empty($action) || $action == 'view' || $action == 'addlink' || $action == 'd
|
|||||||
print '<input type="hidden" name="track_id" value="'.$track_id.'">';
|
print '<input type="hidden" name="track_id" value="'.$track_id.'">';
|
||||||
|
|
||||||
print '<div class="div-table-responsive-no-min">'; // You can use div-table-responsive-no-min if you dont need reserved height for your table
|
print '<div class="div-table-responsive-no-min">'; // You can use div-table-responsive-no-min if you dont need reserved height for your table
|
||||||
print '<table class="border centpercent margintable">';
|
print '<table class="noborder centpercent margintable">';
|
||||||
print '<tr class="liste_titre">';
|
print '<tr class="liste_titre">';
|
||||||
print '<td>';
|
print '<td>';
|
||||||
print $langs->trans('Properties');
|
print $langs->trans('Properties');
|
||||||
|
|||||||
@ -192,7 +192,7 @@ class ActionsTicket
|
|||||||
// Initial message
|
// Initial message
|
||||||
print '<div class="underbanner clearboth"></div>';
|
print '<div class="underbanner clearboth"></div>';
|
||||||
print '<div class="div-table-responsive-no-min">'; // You can use div-table-responsive-no-min if you dont need reserved height for your table
|
print '<div class="div-table-responsive-no-min">'; // You can use div-table-responsive-no-min if you dont need reserved height for your table
|
||||||
print '<table class="border centpercent margintable">';
|
print '<table class="noborder centpercent margintable">';
|
||||||
print '<tr class="liste_titre"><td class="nowrap titlefield">';
|
print '<tr class="liste_titre"><td class="nowrap titlefield">';
|
||||||
print $langs->trans("InitialMessage");
|
print $langs->trans("InitialMessage");
|
||||||
print '</td><td>';
|
print '</td><td>';
|
||||||
@ -381,9 +381,6 @@ class ActionsTicket
|
|||||||
print '<div class="div-table-responsive-no-min">';
|
print '<div class="div-table-responsive-no-min">';
|
||||||
print '<div class="tagtable centpercent">';
|
print '<div class="tagtable centpercent">';
|
||||||
print '<div class="tagtr liste_titre">';
|
print '<div class="tagtr liste_titre">';
|
||||||
print '<div class="tagtd">';
|
|
||||||
print '<strong>' . $langs->trans('TicketChangeStatus') . '</strong>';
|
|
||||||
print '</div>';
|
|
||||||
// Exclude status which requires specific method
|
// Exclude status which requires specific method
|
||||||
$exclude_status = array(Ticket::STATUS_CLOSED, Ticket::STATUS_CANCELED);
|
$exclude_status = array(Ticket::STATUS_CLOSED, Ticket::STATUS_CANCELED);
|
||||||
// Exclude actual status
|
// Exclude actual status
|
||||||
@ -394,7 +391,7 @@ class ActionsTicket
|
|||||||
|
|
||||||
foreach ($object->statuts_short as $status => $status_label) {
|
foreach ($object->statuts_short as $status => $status_label) {
|
||||||
if (!in_array($status, $exclude_status)) {
|
if (!in_array($status, $exclude_status)) {
|
||||||
print '<div class="tagtd">';
|
print '<div class="tagtd center">';
|
||||||
|
|
||||||
if ($status == 1)
|
if ($status == 1)
|
||||||
{
|
{
|
||||||
|
|||||||
@ -2436,7 +2436,7 @@ class User extends CommonObject
|
|||||||
}
|
}
|
||||||
if ($withpictoimg > -2 && $withpictoimg != 2)
|
if ($withpictoimg > -2 && $withpictoimg != 2)
|
||||||
{
|
{
|
||||||
if (empty($conf->global->MAIN_OPTIMIZEFORTEXTBROWSER)) $result .= '<span class=" nopadding valignmiddle usertext'.((!isset($this->statut) || $this->statut) ? '' : ' strikefordisabled').($morecss ? ' '.$morecss : '').'">';
|
if (empty($conf->global->MAIN_OPTIMIZEFORTEXTBROWSER)) $result .= '<span class=" nopadding usertext'.((!isset($this->statut) || $this->statut) ? '' : ' strikefordisabled').($morecss ? ' '.$morecss : '').'">';
|
||||||
if ($mode == 'login') $result .= dol_trunc($this->login, $maxlen);
|
if ($mode == 'login') $result .= dol_trunc($this->login, $maxlen);
|
||||||
else $result .= $this->getFullName($langs, '', ($mode == 'firstelselast' ? 3 : ($mode == 'firstname' ? 2 : -1)), $maxlen);
|
else $result .= $this->getFullName($langs, '', ($mode == 'firstelselast' ? 3 : ($mode == 'firstname' ? 2 : -1)), $maxlen);
|
||||||
if (empty($conf->global->MAIN_OPTIMIZEFORTEXTBROWSER)) $result .= '</span>';
|
if (empty($conf->global->MAIN_OPTIMIZEFORTEXTBROWSER)) $result .= '</span>';
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user