diff options
| author | Greg Roach <fisharebest@webtrees.net> | 2019-08-25 08:33:56 +0100 |
|---|---|---|
| committer | Greg Roach <fisharebest@webtrees.net> | 2019-08-25 18:21:47 +0100 |
| commit | ca8f62c941ab944caae77784d065d8b5c470a5d1 (patch) | |
| tree | b1157a51c0418e8314f071a84a85aeb1e43f7de2 /resources/views | |
| parent | f220ef576b96d71398161a2d12ecba9c5db7d573 (diff) | |
| download | webtrees-ca8f62c941ab944caae77784d065d8b5c470a5d1.tar.gz webtrees-ca8f62c941ab944caae77784d065d8b5c470a5d1.tar.bz2 webtrees-ca8f62c941ab944caae77784d065d8b5c470a5d1.zip | |
Fix drag-cursor on timeline chart
Diffstat (limited to 'resources/views')
| -rw-r--r-- | resources/views/modules/timeline-chart/chart.phtml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/resources/views/modules/timeline-chart/chart.phtml b/resources/views/modules/timeline-chart/chart.phtml index 7987c693bb..672df9f15c 100644 --- a/resources/views/modules/timeline-chart/chart.phtml +++ b/resources/views/modules/timeline-chart/chart.phtml @@ -305,7 +305,7 @@ $placements[$place] = $yoffset; echo "<div id=\"fact$factcount\" style=\"position:absolute; " . (I18N::direction() === 'ltr' ? 'left: ' . $xoffset : 'right: ' . $xoffset) . 'px; top:' . $yoffset . 'px; font-size: 8pt; height: ' . $bheight . "px;\" onmousedown=\"factMouseDown(this, '" . $factcount . "', " . ($yoffset - $tyoffset) . ');">'; - echo '<table cellspacing="0" cellpadding="0" border="0" style="cursor: hand;"><tr><td>'; + echo '<table cellspacing="0" cellpadding="0" border="0" style="cursor: grab;"><tr><td>'; echo '<img src="' . e(asset('css/images/hline.png')) . '" id="boxline' . $factcount . '" height="3" width="10" style="padding-'; if (I18N::direction() === 'ltr') { echo 'left: 3px;">'; @@ -400,7 +400,7 @@ <td> <?php if (!empty($birthyears[$indi->xref()])) : ?> <?php $tyear = round(($ageyoffset + ($bheight / 2)) / $scale) + $baseyear; ?> - <table class="person<?= $p % 6 ?>" style="cursor: hand;"> + <table class="person<?= $p % 6 ?>" style="cursor: grab;"> <tr> <td> <?= I18N::translate('Year:') ?> |
