| ';
+ print dolPrintHTML($titleofmodule);
print ' | ';
$entity = preg_replace('/:.*$/', '', $objexport->array_export_icon[$key]);
$entityicon = strtolower(!empty($entitytoicon[$entity]) ? $entitytoicon[$entity] : $entity);
$label = $objexport->array_export_label[$key];
- //print $value.'-'.$icon.'-'.$label." ";
- print img_object($objexport->array_export_module[$key]->getName(), $entityicon).' ';
- print $label;
+ print '';
+ print img_object($objexport->array_export_module[$key]->getName(), $entityicon, 'class="pictofixedwidth"');
+ print dolPrintHTML($label);
+ print ' ';
print ' | ';
if ($objexport->array_export_perms[$key]) {
print ''.img_picto($langs->trans("NewExport"), 'next', 'class="fa-15"').'';
diff --git a/htdocs/imports/import.php b/htdocs/imports/import.php
index 1e9d77989f4..4d42caf99de 100644
--- a/htdocs/imports/import.php
+++ b/htdocs/imports/import.php
@@ -351,7 +351,7 @@ if ($step == 1 || !$datatoimport) {
// Affiche les modules d'imports
print ''; // You can use div-table-responsive-no-min if you don't need reserved height for your table
- print ' ';
+ print '';
print '';
print '| '.$langs->trans("Module").' | ';
print ''.$langs->trans("ImportableDatas").' | ';
@@ -362,18 +362,21 @@ if ($step == 1 || !$datatoimport) {
$sortedarrayofmodules = dol_sort_array($objimport->array_import_module, 'position_of_profile', 'asc', 0, 0, 1);
foreach ($sortedarrayofmodules as $key => $value) {
//var_dump($key.' '.$value['position_of_profile'].' '.$value['import_code'].' '.$objimport->array_import_module[$key]['module']->getName().' '.$objimport->array_import_code[$key]);
- print ' | ';
$titleofmodule = $objimport->array_import_module[$key]['module']->getName();
+ print ' | | ';
// Special case for import common to module/services
if (in_array($objimport->array_import_code[$key], array('produit_supplierprices', 'produit_multiprice', 'produit_languages'))) {
$titleofmodule = $langs->trans("ProductOrService");
}
- print $titleofmodule;
+ print dolPrintHTML($titleofmodule);
print ' | ';
$entity = preg_replace('/:.*$/', '', $objimport->array_import_icon[$key]);
$entityicon = strtolower(!empty($entitytoicon[$entity]) ? $entitytoicon[$entity] : $entity);
- print img_object($objimport->array_import_module[$key]['module']->getName(), $entityicon).' ';
- print $objimport->array_import_label[$key];
+ $label = $objimport->array_import_label[$key];
+ print ' ';
+ print img_object($objimport->array_import_module[$key]['module']->getName(), $entityicon, 'class="pictofixedwidth"');
+ print dolPrintHtml($label);
+ print ' ';
print ' | ';
if ($objimport->array_import_perms[$key]) {
print ''.img_picto($langs->trans("NewImport"), 'next', 'class="fa-15"').'';
diff --git a/htdocs/langs/en_US/companies.lang b/htdocs/langs/en_US/companies.lang
index ad0813153e1..bff22a33e9f 100644
--- a/htdocs/langs/en_US/companies.lang
+++ b/htdocs/langs/en_US/companies.lang
@@ -383,8 +383,8 @@ ExportCardToFormat=Export card to format
ContactNotLinkedToCompany=Contact not linked to any third party
DolibarrLogin=Dolibarr login
NoDolibarrAccess=No Dolibarr access
-ExportDataset_company_1=Third-parties (companies/foundations/physical people) and their properties
-ExportDataset_company_2=Contacts and their properties
+ExportDataset_company_1=Third-parties (organizations/natural persons) and attributes
+ExportDataset_company_2=Third-parties additional contacts/addresses and attributes
ExportDataset_company_3=Third-parties payment modes (bank accounts)
ImportDataset_company_1=Third-parties and their properties
ImportDataset_company_2=Third-parties additional contacts/addresses and attributes
diff --git a/htdocs/theme/eldy/global.inc.php b/htdocs/theme/eldy/global.inc.php
index b198e461b82..5db98f3af5c 100644
--- a/htdocs/theme/eldy/global.inc.php
+++ b/htdocs/theme/eldy/global.inc.php
@@ -1712,7 +1712,7 @@ select.flat.selectlimit {
-webkit-line-clamp: 2;
overflow: hidden;
}
-.twolinesmax {
+.twolinesmax, .twolinesmax-normallineheight { /* To be used into a into a td for example */
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-line-clamp: 2;
@@ -1720,6 +1720,9 @@ select.flat.selectlimit {
height: auto !important;
word-break: break-word;
}
+.twolinesmax-normallineheight {
+ line-height: normal;
+}
.tenlinesmax {
display: -webkit-box;
-webkit-box-orient: vertical;
@@ -4481,8 +4484,8 @@ table.tableforfield td, .tagtr.table-border-row .tagtd {
}
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 */
- /* line-height: 22px; This create trouble on cell login on list of last events of a contract*/
- height: 30px;
+ /* line-height: 22px; This create trouble on cell login on list of last events of a contract */
+ height: 32px;
}
table.liste tr.trkanban td {
padding: 12px 15px 12px 15px; /* t r b l */
diff --git a/htdocs/theme/md/main_menu_fa_icons.inc.php b/htdocs/theme/md/main_menu_fa_icons.inc.php
index d5373467280..a08b85c27c1 100644
--- a/htdocs/theme/md/main_menu_fa_icons.inc.php
+++ b/htdocs/theme/md/main_menu_fa_icons.inc.php
@@ -107,14 +107,15 @@ div.mainmenu.generic4::before {
text-align: center;
}
-.menu_titre .em092 {
+
+.em092 {
font-size: 0.92em;
}
-.menu_titre .em088 {
+.em088 {
font-size: 0.88em;
}
-.menu_titre .em080 {
+.em080 {
font-size: 0.80em;
}
diff --git a/htdocs/theme/md/style.css.php b/htdocs/theme/md/style.css.php
index c1c1ff04592..5d31a78fe22 100644
--- a/htdocs/theme/md/style.css.php
+++ b/htdocs/theme/md/style.css.php
@@ -1863,7 +1863,7 @@ select.flat.selectlimit {
-webkit-line-clamp: 2;
overflow: hidden;
}
-.twolinesmax {
+.twolinesmax, .twolinesmax-normallineheight { /* To be used into a into a td for example */
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-line-clamp: 2;
@@ -1871,6 +1871,9 @@ select.flat.selectlimit {
height: auto !important;
word-break: break-word;
}
+.twolinesmax-normallineheight {
+ line-height: normal;
+}
.tenlinesmax {
display: -webkit-box;
-webkit-box-orient: vertical;
@@ -4515,7 +4518,7 @@ table.liste th, table.noborder th, table.noborder tr.liste_titre td, table.nobor
table.liste td, table.noborder td, div.noborder form div, table.tableforservicepart1 td, table.tableforservicepart2 td {
padding: 4px 8px 4px 10px; /* t r b l */
- height: 22px;
+ height: 28px;
}
table.liste tr.trkanban td {
padding: 12px 15px 12px 15px; /* t r b l */
| |