diff --git a/htdocs/societe/list.php b/htdocs/societe/list.php
index bdc0fae08e0..80b0142a572 100644
--- a/htdocs/societe/list.php
+++ b/htdocs/societe/list.php
@@ -1466,7 +1466,7 @@ while ($i < min($num, $limit)) {
}
// Address
if (!empty($arrayfields['s.address']['checked'])) {
- print '
'.dol_escape_htmltag($obj->address).' | ';
+ print ''.dol_escape_htmltag($obj->address).' | ';
if (!$i) {
$totalarray['nbfield']++;
}
@@ -1673,7 +1673,7 @@ while ($i < min($num, $limit)) {
print $hookmanager->resPrint;
// Date creation
if (!empty($arrayfields['s.datec']['checked'])) {
- print '';
+ print ' | ';
print dol_print_date($db->jdate($obj->date_creation), 'dayhour', 'tzuser');
print ' | ';
if (!$i) {
@@ -1682,7 +1682,7 @@ while ($i < min($num, $limit)) {
}
// Date modification
if (!empty($arrayfields['s.tms']['checked'])) {
- print '';
+ print ' | ';
print dol_print_date($db->jdate($obj->date_update), 'dayhour', 'tzuser');
print ' | ';
if (!$i) {
@@ -1691,7 +1691,7 @@ while ($i < min($num, $limit)) {
}
// Status
if (!empty($arrayfields['s.status']['checked'])) {
- print ''.$companystatic->getLibStatut(5).' | ';
+ print ''.$companystatic->getLibStatut(5).' | ';
if (!$i) {
$totalarray['nbfield']++;
}
diff --git a/htdocs/theme/eldy/global.inc.php b/htdocs/theme/eldy/global.inc.php
index 2ac2e0744b3..83d7bc120e2 100644
--- a/htdocs/theme/eldy/global.inc.php
+++ b/htdocs/theme/eldy/global.inc.php
@@ -3481,6 +3481,8 @@ div .tdtop {
vertical-align: top !important;
/*padding-top: 10px !important;
padding-bottom: 2px !important; */
+ padding-top: 6px !important;
+ padding-bottom: 4px !important;
}
table.border td, table.bordernooddeven td, div.border div div.tagtd {
diff --git a/htdocs/theme/md/style.css.php b/htdocs/theme/md/style.css.php
index 15c9ef74612..d8a6a1d928c 100644
--- a/htdocs/theme/md/style.css.php
+++ b/htdocs/theme/md/style.css.php
@@ -4144,7 +4144,7 @@ div.tabBar .noborder {
}
div .tdtop {
vertical-align: top !important;
- padding-top: 5px !important;
+ padding-top: 8px !important;
padding-bottom: 0px !important;
}
diff --git a/htdocs/user/card.php b/htdocs/user/card.php
index 3a27e308172..f789023b8d4 100644
--- a/htdocs/user/card.php
+++ b/htdocs/user/card.php
@@ -1707,7 +1707,7 @@ if ($action == 'create' || $action == 'adduserldap') {
print "\n";
// VCard
- print '| '.$langs->trans("VCard").' | ';
+ print '
| '.$langs->trans("VCard").' | ';
print '';
print '';
print img_picto($langs->trans("Download"), 'vcard.png', 'class="paddingrightonly"');
|