diff options
| author | makitso <makitso@gmail.com> | 2017-07-05 06:26:08 -0500 |
|---|---|---|
| committer | makitso <makitso@gmail.com> | 2017-07-05 06:26:08 -0500 |
| commit | d21ca44cc74890b1a884defd1205ed8b182e514f (patch) | |
| tree | 9c4429d717e33a513dc86e61451dfe14fc85cff4 /app/Controller/HourglassController.php | |
| parent | 95a9c76c1d0a0648eaac5d13f1626bc2bb8786e4 (diff) | |
| download | webtrees-d21ca44cc74890b1a884defd1205ed8b182e514f.tar.gz webtrees-d21ca44cc74890b1a884defd1205ed8b182e514f.tar.bz2 webtrees-d21ca44cc74890b1a884defd1205ed8b182e514f.zip | |
Revamp Revamp how horizontal lines are handled in charts
Moved horizontal line management to common
Diffstat (limited to 'app/Controller/HourglassController.php')
| -rw-r--r-- | app/Controller/HourglassController.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/app/Controller/HourglassController.php b/app/Controller/HourglassController.php index 7ba2cecf5d..e3d40740f3 100644 --- a/app/Controller/HourglassController.php +++ b/app/Controller/HourglassController.php @@ -112,7 +112,7 @@ class HourglassController extends ChartController { echo '<table cellspacing="0" cellpadding="0" border="0" class="hourglassChart">'; echo '<tr>'; echo '<td style="vertical-align:bottom"><img class="line3 pvline" src="' . Theme::theme()->parameter('image-vline') . '" width="3"></td>'; - echo '<td><img class="line4" src="' . Theme::theme()->parameter('image-hline') . '" width="7" height="3"></td>'; + echo '<td><img class="lineh2" src="' . Theme::theme()->parameter('image-hline') . '" width="7" height="3"></td>'; echo '<td>'; //-- print the father box FunctionsPrint::printPedigreePerson($family->getHusband()); @@ -144,7 +144,7 @@ class HourglassController extends ChartController { echo '</tr><tr>', "<td style='vertical-align:top'><img class='pvline' src='" . Theme::theme()->parameter('image-vline') . "' width='3' alt=''></td>", - '<td><img class="line4" src="' . Theme::theme()->parameter('image-hline') . '" width="7" height="3"></td>', + '<td><img class="lineh3" src="' . Theme::theme()->parameter('image-hline') . '" width="7" height="3"></td>', '<td>'; //-- print the mother box FunctionsPrint::printPedigreePerson($family->getWife()); @@ -280,7 +280,7 @@ class HourglassController extends ChartController { echo '<table cellspacing="0" cellpadding="0" border="0" id="table2_' . $pid . '"><tr><td>'; FunctionsPrint::printPedigreePerson($person); - echo '</td><td><img class="line2" src="' . Theme::theme()->parameter('image-hline') . '" width="7" height="3">'; + echo '</td><td><img class="lineh1" src="' . Theme::theme()->parameter('image-hline') . '" width="7" height="3">'; //----- Print the spouse if ($this->show_spouse) { |
