diff --git a/htdocs/cron/list.php b/htdocs/cron/list.php
index f3db35737e4..a73ba1bdd55 100644
--- a/htdocs/cron/list.php
+++ b/htdocs/cron/list.php
@@ -313,8 +313,8 @@ print '
| ';
print '';
print $form->selectarray('status', array('0'=>$langs->trans("Disabled"), '1'=>$langs->trans("Enabled"), '-2'=>$langs->trans("EnabledAndDisabled"), '2'=>$langs->trans("Archived")), $status, 1);
print ' | ';
-print '';
-print '';
+$searchpicto=$form->showFilterButtons();
+print $searchpicto;
print ' | ';
print '';
@@ -449,7 +449,7 @@ if ($num > 0)
print $object->getLibStatut(3);
print '';
- print '';
+ print ' | ';
if ($user->rights->cron->create)
{
print "rowid."&action=edit".($sortfield?'&sortfield='.$sortfield:'').($sortorder?'&sortorder='.$sortorder:'').$param."&backtourl=".urlencode($_SERVER["PHP_SELF"].($param?'?'.$param:''))."\" title=\"".dol_escape_htmltag($langs->trans('Edit'))."\">".img_picto($langs->trans('Edit'),'edit')." ";
diff --git a/htdocs/theme/eldy/style.css.php b/htdocs/theme/eldy/style.css.php
index 3472a710e7a..2b216b58cf2 100644
--- a/htdocs/theme/eldy/style.css.php
+++ b/htdocs/theme/eldy/style.css.php
@@ -598,7 +598,7 @@ textarea.centpercent {
.liste_titre .nowrap {
white-space: nowrap;
}
-.nowraponall {
+.nowraponall { /* no wrap on all devices */
white-space: nowrap;
}
.wordwrap {
diff --git a/htdocs/theme/md/style.css.php b/htdocs/theme/md/style.css.php
index 397a3c9ff3a..2883d1c2226 100644
--- a/htdocs/theme/md/style.css.php
+++ b/htdocs/theme/md/style.css.php
@@ -596,7 +596,7 @@ textarea.centpercent {
.liste_titre .nowrap {
white-space: nowrap;
}
-.nowraponall {
+.nowraponall { /* no wrap on all devices */
white-space: nowrap;
}
.wordwrap {
|