diff options
Diffstat (limited to 'app/Template/board/tooltip_external_links.php')
-rw-r--r-- | app/Template/board/tooltip_external_links.php | 38 |
1 files changed, 20 insertions, 18 deletions
diff --git a/app/Template/board/tooltip_external_links.php b/app/Template/board/tooltip_external_links.php index 24cd1d88..65331864 100644 --- a/app/Template/board/tooltip_external_links.php +++ b/app/Template/board/tooltip_external_links.php @@ -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>
\ No newline at end of file + <?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> |