This commit is contained in:
Laurent Destailleur 2021-06-05 02:42:49 +02:00
parent b6ba1de3b3
commit 865bf3b849
3 changed files with 14 additions and 7 deletions

View File

@ -348,7 +348,7 @@ a.butStatus {
padding-right: 5px;
background-color: transparent;
color: var(--colortext) !important;
border: 2px solid var( --butactionbg);
border: 2px solid var( --butactionbg) !important;
margin: 0 0.45em !important;
}
@ -3894,7 +3894,7 @@ table.noborder.paymenttable {
}
.paymenttable tr td:first-child, .margintable tr td:first-child
{
padding-left: 2px;
//padding-left: 2px;
}
.paymenttable, .margintable tr td {
height: 22px;

View File

@ -3902,14 +3902,19 @@ tr.liste_sub_total, tr.liste_sub_total td {
}
.paymenttable, .margintable {
margin: 0px 0px 0px 0px !important;
}
.paymenttable, .margintable:not(.margintablenotop) {
border-top-width: <?php echo $borderwidth ?>px !important;
border-top-color: rgb(<?php echo $colortopbordertitle1 ?>) !important;
border-top-style: solid !important;
margin: 0px 0px 0px 0px !important;
}
.margintable.margintablenotop {
border-top-width: 0;
}
.paymenttable tr td:first-child, .margintable tr td:first-child
{
padding-left: 2px;
//padding-left: 2px;
}
.paymenttable, .margintable tr td {
height: 22px;

View File

@ -192,7 +192,7 @@ class ActionsTicket
// Initial message
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 '<table class="noborder centpercent margintable">';
print '<table class="noborder centpercent margintable margintablenotop">';
print '<tr class="liste_titre trforfield"><td class="nowrap titlefield">';
print $langs->trans("InitialMessage");
print '</td><td>';
@ -391,7 +391,7 @@ class ActionsTicket
{
global $langs;
print '<div class="div-table-responsive-no-min margintoponly">';
print '<div class="div-table-responsive-no-min margintoponly navBarForStatus">';
print '<div class="centpercent right">';
// Exclude status which requires specific method
$exclude_status = array(Ticket::STATUS_CLOSED, Ticket::STATUS_CANCELED);
@ -419,7 +419,9 @@ class ActionsTicket
print '</div>';
}
}
print '</div></div><br>';
print '</div>';
print '</div>';
print '<br>';
}
/**