diff --git a/htdocs/core/lib/project.lib.php b/htdocs/core/lib/project.lib.php index 9b94c301177..7f5daf77c4a 100644 --- a/htdocs/core/lib/project.lib.php +++ b/htdocs/core/lib/project.lib.php @@ -679,22 +679,23 @@ function projectLinesa(&$inc, $parent, &$lines, &$level, $var, $showproject, &$t // Title of task if (count($arrayfields) > 0 && !empty($arrayfields['t.label']['checked'])) { - print ''; + $labeltoshow = ''; if ($showlineingray) { - print ''; + $labeltoshow .= ''; } //else print ''; for ($k = 0; $k < $level; $k++) { - print '
'; + $labeltoshow .= '
'; } - print $lines[$i]->label; + $labeltoshow .= dol_escape_htmltag($lines[$i]->label); for ($k = 0; $k < $level; $k++) { - print '
'; + $labeltoshow .= '
'; } if ($showlineingray) { - print '
'; + $labeltoshow .= '
'; } - //else print ''; + print ''; + print $labeltoshow; print "\n"; } diff --git a/htdocs/theme/eldy/global.inc.php b/htdocs/theme/eldy/global.inc.php index 3d7ae19e179..3b09b210349 100644 --- a/htdocs/theme/eldy/global.inc.php +++ b/htdocs/theme/eldy/global.inc.php @@ -381,6 +381,10 @@ a.butStatus { margin: 0 0.45em !important; } +span.userimg.notfirst { + margin-left: -5px; +} + /* Used by timesheets */ span.timesheetalreadyrecorded input { border: none; diff --git a/htdocs/theme/md/style.css.php b/htdocs/theme/md/style.css.php index 696f3cb83b1..94b81cb91d9 100644 --- a/htdocs/theme/md/style.css.php +++ b/htdocs/theme/md/style.css.php @@ -568,6 +568,10 @@ a.butStatus { margin: 0 0.45em !important; } +span.userimg.notfirst { + margin-left: -5px; +} + /* Used by timesheets */ span.timesheetalreadyrecorded input { border: none; @@ -1718,7 +1722,7 @@ select.widthcentpercentminusxx, span.widthcentpercentminusxx:not(.select2-select text-overflow: ellipsis; white-space: nowrap; } - + select { padding-top: 4px; padding-bottom: 5px; @@ -4463,7 +4467,7 @@ table.titlemodulehelp tr td img.widthpictotitle { width: 80px; } .dolgraphtitle { margin-top: 6px; margin-bottom: 4px; } .dolgraphtitlecssboxes { /* margin: 0px; */ } -.dolgraphchart canvas { +.dolgraphchart canvas { /* width: calc(100% - 20px) !important; */ } .legendColorBox, .legendLabel { border: none !important; }