|
@@ -512,7 +512,7 @@ if ($mode == 'common' || $mode == 'commonkanban')
|
|
|
$moreforfilter .= $langs->trans('Keyword').': <input type="text" id="search_keyword" name="search_keyword" class="maxwidth100" value="'.dol_escape_htmltag($search_keyword).'">';
|
|
|
$moreforfilter .= '</div>';
|
|
|
$moreforfilter .= '<div class="divsearchfield paddingtop">';
|
|
|
- $moreforfilter .= $langs->trans('Origin').': '.$form->selectarray('search_nature', $arrayofnatures, dol_escape_htmltag($search_nature), 1, 0, 0, '', 0, 0, 0, '', 'maxwidth100');
|
|
|
+ $moreforfilter .= $langs->trans('Origin').': '.$form->selectarray('search_nature', $arrayofnatures, dol_escape_htmltag($search_nature), 1, 0, 0, '', 0, 0, 0, '', 'maxwidth200', 1);
|
|
|
$moreforfilter .= '</div>';
|
|
|
if (!empty($conf->global->MAIN_FEATURES_LEVEL))
|
|
|
{
|
|
@@ -521,17 +521,17 @@ if ($mode == 'common' || $mode == 'commonkanban')
|
|
|
if ($conf->global->MAIN_FEATURES_LEVEL > 0) $array_version['experimental'] = $langs->trans("Experimental");
|
|
|
if ($conf->global->MAIN_FEATURES_LEVEL > 1) $array_version['development'] = $langs->trans("Development");
|
|
|
$moreforfilter .= '<div class="divsearchfield paddingtop">';
|
|
|
- $moreforfilter .= $langs->trans('Version').': '.$form->selectarray('search_version', $array_version, $search_version, 1, 0, 0, '', 0, 0, 0, '', 'maxwidth100');
|
|
|
+ $moreforfilter .= $langs->trans('Version').': '.$form->selectarray('search_version', $array_version, $search_version, 1, 0, 0, '', 0, 0, 0, '', 'maxwidth150', 1);
|
|
|
$moreforfilter .= '</div>';
|
|
|
}
|
|
|
$moreforfilter .= '<div class="divsearchfield paddingtop">';
|
|
|
- $moreforfilter .= $langs->trans('Status').': '.$form->selectarray('search_status', array('active'=>$langs->transnoentitiesnoconv("Enabled"), 'disabled'=>$langs->transnoentitiesnoconv("Disabled")), $search_status, 1, 0, 0, '', 0, 0, 0, '', 'maxwidth100');
|
|
|
+ $moreforfilter .= $langs->trans('Status').': '.$form->selectarray('search_status', array('active'=>$langs->transnoentitiesnoconv("Enabled"), 'disabled'=>$langs->transnoentitiesnoconv("Disabled")), $search_status, 1, 0, 0, '', 0, 0, 0, '', 'maxwidth150', 1);
|
|
|
$moreforfilter .= '</div>';
|
|
|
$moreforfilter .= ' ';
|
|
|
$moreforfilter .= '<div class="divsearchfield">';
|
|
|
$moreforfilter .= '<input type="submit" name="buttonsubmit" class="button" value="'.dol_escape_htmltag($langs->trans("Refresh")).'">';
|
|
|
$moreforfilter .= ' ';
|
|
|
- $moreforfilter .= '<input type="submit" name="buttonreset" class="button" value="'.dol_escape_htmltag($langs->trans("Reset")).'">';
|
|
|
+ $moreforfilter .= '<input type="submit" name="buttonreset" class="butActionDelete noborderbottom" value="'.dol_escape_htmltag($langs->trans("Reset")).'">';
|
|
|
$moreforfilter .= '</div>';
|
|
|
$moreforfilter .= '</div>';
|
|
|
|