Improve board tooltips

This commit is contained in:
Frederic Guillot
2016-03-19 16:51:25 -04:00
parent 6351cb0e27
commit caf8cb3323
15 changed files with 108 additions and 108 deletions

View File

@@ -1,20 +1,22 @@
<table class="table-striped table-small">
<tr>
<th class="column-20"><?= t('Type') ?></th>
<th class="column-80"><?= t('Title') ?></th>
<th class="column-10"><?= t('Dependency') ?></th>
</tr>
<?php foreach ($links as $link): ?>
<div class="tooltip-large">
<table>
<tr>
<td>
<?= $link['type'] ?>
</td>
<td>
<a href="<?= $link['url'] ?>" target="_blank"><?= $this->text->e($link['title']) ?></a>
</td>
<td>
<?= $this->text->e($link['dependency_label']) ?>
</td>
<th class="column-20"><?= t('Type') ?></th>
<th class="column-70"><?= t('Title') ?></th>
<th class="column-10"><?= t('Dependency') ?></th>
</tr>
<?php endforeach ?>
</table>
<?php foreach ($links as $link): ?>
<tr>
<td>
<?= $link['type'] ?>
</td>
<td>
<a href="<?= $link['url'] ?>" target="_blank"><?= $this->text->e($link['title']) ?></a>
</td>
<td>
<?= $this->text->e($link['dependency_label']) ?>
</td>
</tr>
<?php endforeach ?>
</table>
</div>