Fix contextpage for list of tickets
This commit is contained in:
parent
e558adbcfc
commit
2c32c6c5c9
@ -1732,6 +1732,20 @@ td.showDragHandle {
|
|||||||
display: inline-block;
|
display: inline-block;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
.classforhorizontalscrolloftabs .fiche .div-table-responsive
|
||||||
|
{
|
||||||
|
transform:rotateX(180deg);
|
||||||
|
-ms-transform:rotateX(180deg);
|
||||||
|
-webkit-transform:rotateX(180deg);
|
||||||
|
}
|
||||||
|
.classforhorizontalscrolloftabs .fiche .div-table-responsive-inside
|
||||||
|
{
|
||||||
|
transform:rotateX(180deg);
|
||||||
|
-ms-transform:rotateX(180deg);
|
||||||
|
-webkit-transform:rotateX(180deg);
|
||||||
|
}
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
<?php if (empty($conf->global->THEME_DISABLE_STICKY_TOPMENU)) { ?>
|
<?php if (empty($conf->global->THEME_DISABLE_STICKY_TOPMENU)) { ?>
|
||||||
@ -1842,10 +1856,11 @@ div.vmenu, td.vmenu {
|
|||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* if no side-nav, we don't need to have width forced */
|
/* if no side-nav, we don't need to have width forced to calc(100% - 210px); */
|
||||||
.classforhorizontalscrolloftabs #id-right {
|
.classforhorizontalscrolloftabs #id-right {
|
||||||
width: unset;
|
width: 100%;
|
||||||
display: unset;
|
/* width: unset; */
|
||||||
|
/* display: unset; */
|
||||||
}
|
}
|
||||||
|
|
||||||
body.sidebar-collapse .login_block {
|
body.sidebar-collapse .login_block {
|
||||||
|
|||||||
@ -45,7 +45,7 @@ $show_files = GETPOST('show_files', 'int'); // Show files area generated by bulk
|
|||||||
$confirm = GETPOST('confirm', 'alpha'); // Result of a confirmation
|
$confirm = GETPOST('confirm', 'alpha'); // Result of a confirmation
|
||||||
$cancel = GETPOST('cancel', 'alpha'); // We click on a Cancel button
|
$cancel = GETPOST('cancel', 'alpha'); // We click on a Cancel button
|
||||||
$toselect = GETPOST('toselect', 'array'); // Array of ids of elements selected into a list
|
$toselect = GETPOST('toselect', 'array'); // Array of ids of elements selected into a list
|
||||||
$contextpage = GETPOST('contextpage', 'aZ') ? GETPOST('contextpage', 'aZ') : 'tickep#selectedfieldstlist'; // To manage different context of search
|
$contextpage = GETPOST('contextpage', 'aZ') ? GETPOST('contextpage', 'aZ') : 'ticketlist'; // To manage different context of search
|
||||||
$backtopage = GETPOST('backtopage', 'alpha'); // Go back to a dedicated page
|
$backtopage = GETPOST('backtopage', 'alpha'); // Go back to a dedicated page
|
||||||
$optioncss = GETPOST('optioncss', 'aZ'); // Option for the css output (always '' except when 'print')
|
$optioncss = GETPOST('optioncss', 'aZ'); // Option for the css output (always '' except when 'print')
|
||||||
|
|
||||||
@ -698,6 +698,7 @@ print '<input type="hidden" name="sortfield" value="'.$sortfield.'">';
|
|||||||
print '<input type="hidden" name="sortorder" value="'.$sortorder.'">';
|
print '<input type="hidden" name="sortorder" value="'.$sortorder.'">';
|
||||||
print '<input type="hidden" name="contextpage" value="'.$contextpage.'">';
|
print '<input type="hidden" name="contextpage" value="'.$contextpage.'">';
|
||||||
print '<input type="hidden" name="mode" value="'.$mode.'" >';
|
print '<input type="hidden" name="mode" value="'.$mode.'" >';
|
||||||
|
|
||||||
if ($socid) {
|
if ($socid) {
|
||||||
print '<input type="hidden" name="socid" value="'.$socid.'" >';
|
print '<input type="hidden" name="socid" value="'.$socid.'" >';
|
||||||
}
|
}
|
||||||
@ -759,6 +760,7 @@ $selectedfields = $form->multiSelectArrayWithCheckbox('selectedfields', $arrayfi
|
|||||||
$selectedfields .= (count($arrayofmassactions) ? $form->showCheckAddButtons('checkforselect', 1) : '');
|
$selectedfields .= (count($arrayofmassactions) ? $form->showCheckAddButtons('checkforselect', 1) : '');
|
||||||
|
|
||||||
print '<div class="div-table-responsive">'; // You can use div-table-responsive-no-min if you dont need reserved height for your table
|
print '<div class="div-table-responsive">'; // You can use div-table-responsive-no-min if you dont need reserved height for your table
|
||||||
|
print '<div class="div-table-responsive-inside">';
|
||||||
print '<table class="tagtable liste'.($moreforfilter ? " listwithfilterbefore" : "").'">'."\n";
|
print '<table class="tagtable liste'.($moreforfilter ? " listwithfilterbefore" : "").'">'."\n";
|
||||||
|
|
||||||
|
|
||||||
@ -1088,6 +1090,7 @@ print $hookmanager->resPrint;
|
|||||||
|
|
||||||
print '</table>'."\n";
|
print '</table>'."\n";
|
||||||
print '</div>'."\n";
|
print '</div>'."\n";
|
||||||
|
print '</div>'."\n";
|
||||||
|
|
||||||
print '</form>'."\n";
|
print '</form>'."\n";
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user