Skip to content

Commit

Permalink
NEW Look and fill v11: Introduce CSS "trforbreak"
Browse files Browse the repository at this point in the history
  • Loading branch information
eldy committed Oct 10, 2019
1 parent 3bf6fac commit f82f416
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
4 changes: 2 additions & 2 deletions htdocs/accountancy/bookkeeping/balance.php
Expand Up @@ -279,8 +279,8 @@
print '</tr>';
}

// Affiche le compte comptable en debut de ligne
print "<tr>";
// Show first line of a break
print '<tr class="trforbreak">';
print '<td colspan="6" style="font-weight:bold; border-bottom: 1pt solid black;">' . $line->numero_compte . ($root_account_description ? ' - ' . $root_account_description : '') . '</td>';
print '</tr>';

Expand Down
4 changes: 3 additions & 1 deletion htdocs/theme/eldy/global.inc.php
Expand Up @@ -2942,7 +2942,9 @@
background: #<?php echo colorArrayToHex(colorStringToArray($colorbacklinepair1)); ?> !important;
}
.trforbreak td {
background-color: #<?php echo colorArrayToHex(colorStringToArray($colorbacklinebreak)); ?> !important;
font-weight: bold;
border-bottom: 1pt solid black !important;
/* background-color: #<?php echo colorArrayToHex(colorStringToArray($colorbacklinebreak)); ?> !important; */
}

table.dataTable td {
Expand Down
4 changes: 3 additions & 1 deletion htdocs/theme/md/style.css.php
Expand Up @@ -3046,7 +3046,9 @@
background: #<?php echo colorArrayToHex(colorStringToArray($colorbacklinepair1)); ?> !important;
}
.trforbreak td {
background-color: #<?php echo colorArrayToHex(colorStringToArray($colorbacklinebreak)); ?> !important;
font-weight: bold;
border-bottom: 1pt solid black !important;
/* background-color: #<?php echo colorArrayToHex(colorStringToArray($colorbacklinebreak)); ?> !important; */
}

table.dataTable td {
Expand Down

0 comments on commit f82f416

Please sign in to comment.