diff --git a/htdocs/admin/system/filecheck.php b/htdocs/admin/system/filecheck.php
index 06905ffb3ca..dc06c693897 100644
--- a/htdocs/admin/system/filecheck.php
+++ b/htdocs/admin/system/filecheck.php
@@ -141,6 +141,9 @@ if (dol_is_file($xmlfile)) {
print ' ('.$langs->trans("AvailableOnlyOnPackagedVersions").')';
print '
';
}
+
+print '
';
+
print ''."\n";
if ($enableremotecheck) {
print ' = ';
diff --git a/htdocs/admin/triggers.php b/htdocs/admin/triggers.php
index 042e279bb7d..ad07e9a061e 100644
--- a/htdocs/admin/triggers.php
+++ b/htdocs/admin/triggers.php
@@ -73,7 +73,6 @@ $align = '';
print '
| '.$trigger['picto'].' | '; - print ''.$trigger['file'].' | '; + print ''.$trigger['picto'].' '.$trigger['file'].' | '; print ''.$trigger['status'].' | '; print ''; $text = $trigger['info']; diff --git a/htdocs/core/class/interfaces.class.php b/htdocs/core/class/interfaces.class.php index 5f413215bee..f9a5e3ba0d8 100644 --- a/htdocs/core/class/interfaces.class.php +++ b/htdocs/core/class/interfaces.class.php @@ -363,7 +363,7 @@ class Interfaces } // We set info of modules - $triggers[$j]['picto'] = (!empty($objMod->picto)) ? img_object('', $objMod->picto, 'class="valignmiddle pictomodule "') : img_object('', 'generic', 'class="valignmiddle pictomodule "'); + $triggers[$j]['picto'] = (!empty($objMod->picto)) ? img_object('', $objMod->picto, 'class="valignmiddle pictomodule pictofixedwidth"') : img_object('', 'generic', 'class="valignmiddle pictomodule pictofixedwidth"'); $triggers[$j]['file'] = $files[$key]; $triggers[$j]['fullpath'] = $fullpath[$key]; $triggers[$j]['relpath'] = $relpath[$key]; diff --git a/htdocs/theme/eldy/global.inc.php b/htdocs/theme/eldy/global.inc.php index 2b42d7f9937..a4e4a902d5d 100644 --- a/htdocs/theme/eldy/global.inc.php +++ b/htdocs/theme/eldy/global.inc.php @@ -4493,7 +4493,7 @@ table.tableforfield td, .tagtr.table-border-row .tagtd { padding: 2px 4px 2px 10px; /* t r b l */ } table.liste td, table.noborder td, div.noborder form div, table.tableforservicepart1 td, table.tableforservicepart2 td { - padding: 6px 10px 6px 12px; /* t r b l */ + padding: 8px 10px 8px 12px; /* t r b l */ /* line-height: 22px; This create trouble on cell login on list of last events of a contract */ height: 32px; } |