Skip to content

Commit

Permalink
Fix #1090
Browse files Browse the repository at this point in the history
  • Loading branch information
tbar0970 committed Nov 15, 2024
1 parent c3de61e commit 48598b4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion db_objects/service.class.php
Original file line number Diff line number Diff line change
Expand Up @@ -733,7 +733,7 @@ class="table table-bordered table-condensed table-full-width run-sheet no-narrow
$title = str_replace('%title%', $item['title'], $title);
$title = $this->replaceKeywords($title);
echo ents($title);
if ($item['note']) echo '<br /><i><small>'.nl2br(ents($item['note'])).'</small></i>';
if ($item['note']) echo '<div class="smallprint"><i>'.nl2br(ents($item['note'])).'</i></div>';
?>
</td>
<td class="narrow"><?php echo ents($item['personnel']); ?></td>
Expand Down
4 changes: 3 additions & 1 deletion resources/less/jethro.less.php
Original file line number Diff line number Diff line change
Expand Up @@ -2151,7 +2151,9 @@
table.run-sheet tbody td {
background-color: @jethroLightest;
}

table.run-sheet .smallprint {
line-height: 95%;
}

#service-comp-manager .tab-content {
overflow-y: auto;
Expand Down

0 comments on commit 48598b4

Please sign in to comment.