diff --git a/htdocs/ecm/index.php b/htdocs/ecm/index.php
index 18157ee60ba..1e852f55791 100644
--- a/htdocs/ecm/index.php
+++ b/htdocs/ecm/index.php
@@ -380,7 +380,7 @@ $moreheadjs=empty($conf->use_javascript_ajax)?"":"
, north__paneSelector: \"#ecm-layout-north\"
, west__paneSelector: \"#ecm-layout-west\"
, resizable: true
- , north__size: 36
+ , north__size: 37 /* 2 are removed by js */
, north__resizable: false
, north__closable: false
, west__size: 340
@@ -509,24 +509,17 @@ if (empty($action) || $action == 'file_manager' || preg_match('/refresh/i',$acti
// Root of manual section
- print '
';
- print '';
- print '| ';
- print img_picto_common('','treemenu/base.gif');
- print ' | ';
+ print ' | ';
+ print '| ';
+ print img_picto_common('','treemenu/base.gif','class="inline-block valignmiddle"');
$txt=$langs->trans("ECMRoot").' ('.$langs->trans("ECMSectionsManual").')';
print $form->textwithpicto($txt, $htmltooltip, 1, 'info');
print ' | ';
- print '
| ';
- print '';
- print ' | ';
- print ' | ';
- //print ''.img_edit_add().' | ';
- print ' | ';
- print ' | ';
- print '';
- //print $form->textwithpicto('',$htmltooltip,1,"info");
- print ' | ';
+ print ' | ';
+ print ' | ';
+ print ' | ';
+ print ' | ';
+ print ' | ';
print '
';
if (! empty($conf->use_javascript_ajax) && empty($conf->global->MAIN_ECM_DISABLE_JS))
diff --git a/htdocs/ecm/index_auto.php b/htdocs/ecm/index_auto.php
index 5119c66194a..b90f306fa2f 100644
--- a/htdocs/ecm/index_auto.php
+++ b/htdocs/ecm/index_auto.php
@@ -373,7 +373,7 @@ $moreheadjs=empty($conf->use_javascript_ajax)?"":"
, north__paneSelector: \"#ecm-layout-north\"
, west__paneSelector: \"#ecm-layout-west\"
, resizable: true
- , north__size: 36
+ , north__size: 37 /* 2 are removed by js */
, north__resizable: false
, north__closable: false
, west__size: 340
@@ -495,23 +495,17 @@ if (empty($action) || $action == 'file_manager' || preg_match('/refresh/i',$acti
$htmltooltip=$langs->trans("ECMAreaDesc2");
// Root title line (Automatic section)
- print '';
- print '';
- print '';
- print '| ';
- print img_picto_common('','treemenu/base.gif');
- print ' | ';
+ print ' | ';
+ print '| ';
+ print img_picto_common('','treemenu/base.gif','class="inline-block valignmiddle"');
$txt=$langs->trans("ECMRoot").' ('.$langs->trans("ECMSectionsAuto").')';
print $form->textwithpicto($txt, $htmltooltip, 1, 0);
print ' | ';
- print ' ';
- print ' | ';
- print ' | ';
- print ' | ';
- print ' | ';
- print ' | ';
- print '';
- print ' | ';
+ print ' | ';
+ print ' | ';
+ print ' | ';
+ print ' | ';
+ print ' | ';
print '
';
$sectionauto=dol_sort_array($sectionauto,'label','ASC',true,false);
diff --git a/htdocs/theme/eldy/style.css.php b/htdocs/theme/eldy/style.css.php
index 354013e7ea3..1bb11a910d7 100644
--- a/htdocs/theme/eldy/style.css.php
+++ b/htdocs/theme/eldy/style.css.php
@@ -1772,6 +1772,10 @@ td.photo {
/* Toolbar for ECM or Filemanager */
/* ============================================================================== */
+td.ecmroot {
+ padding-bottom: 0 !important;
+}
+
.largebutton {
background-image: -o-linear-gradient(bottom, rgba(200,200,200,0.1) 0%, rgba(255,255,255,0.3) 120%) !important;
background-image: -moz-linear-gradient(bottom, rgba(200,200,200,0.1) 0%, rgba(255,255,255,0.3) 120%) !important;
diff --git a/htdocs/theme/md/style.css.php b/htdocs/theme/md/style.css.php
index 473ea8e243b..9b640669cd4 100644
--- a/htdocs/theme/md/style.css.php
+++ b/htdocs/theme/md/style.css.php
@@ -1752,6 +1752,10 @@ td.photo {
/* Toolbar for ECM or Filemanager */
/* ============================================================================== */
+td.ecmroot {
+ padding-bottom: 0 !important;
+}
+
.largebutton {
background-image: -o-linear-gradient(bottom, rgba(200,200,200,0.1) 0%, rgba(255,255,255,0.3) 120%) !important;
background-image: -moz-linear-gradient(bottom, rgba(200,200,200,0.1) 0%, rgba(255,255,255,0.3) 120%) !important;