diff --git a/htdocs/modulebuilder/index.php b/htdocs/modulebuilder/index.php index 60f23cbee1a..8488eac3026 100644 --- a/htdocs/modulebuilder/index.php +++ b/htdocs/modulebuilder/index.php @@ -2287,7 +2287,7 @@ if ($module == 'initmodule') { print '
| '.$langs->trans("Property"); + print ' | '.$langs->trans("Property"); print ' ('.$langs->trans("SeeExamples").')'; print ' | '; print ''; @@ -2736,7 +2736,7 @@ if ($module == 'initmodule') { if (!empty($properties)) { // Line to add a property print ' | ||
|---|---|---|---|---|
| '; + print ' | '; print ' | '; print ' | '; print ' | '; @@ -2803,7 +2803,7 @@ if ($module == 'initmodule') { print ' |
| '; + print ' | '; print dol_escape_htmltag($propname); print ' | '; print ''; diff --git a/htdocs/theme/eldy/global.inc.php b/htdocs/theme/eldy/global.inc.php index 06b52f7f4f1..1ba6ec11119 100644 --- a/htdocs/theme/eldy/global.inc.php +++ b/htdocs/theme/eldy/global.inc.php @@ -3543,6 +3543,12 @@ td.border, div.tagtable div div.border { width:auto; } +.thsticky, .tdsticky { + position: sticky; + left: 0px; +} + + /* To have left column sticky */ /*.tagtable td[data-key="ref"], .tagtable th[data-key="ref"] { position: sticky; diff --git a/htdocs/theme/md/style.css.php b/htdocs/theme/md/style.css.php index 700449d177a..be8bf0f009e 100644 --- a/htdocs/theme/md/style.css.php +++ b/htdocs/theme/md/style.css.php @@ -3599,6 +3599,11 @@ td.border, div.tagtable div div.border { width:auto; } +.thsticky, .tdsticky { + position: sticky; + left: 0px; +} + global->THEME_ENABLE_STICKY_COLUMN_REF)) { ?> /* To have left column sticky */ .tagtable td[data-key="ref"], .tagtable th[data-key="ref"] { |