Improve CSS layout

This commit is contained in:
Frederic Guillot
2017-11-10 11:56:01 -08:00
parent 455b909e48
commit 38a4271643
9 changed files with 41 additions and 31 deletions

View File

@@ -1,12 +1,15 @@
<?php if (! empty($links)): ?>
<table class="table-striped table-scrolling">
<tr>
<th class="column-15"><?= t('Type') ?></th>
<th><?= t('Title') ?></th>
<th class="column-10"><?= t('Dependency') ?></th>
<th class="column-15"><?= t('Creator') ?></th>
<th class="column-15"><?= t('Date') ?></th>
</tr>
<thead>
<tr>
<th class="column-15"><?= t('Type') ?></th>
<th><?= t('Title') ?></th>
<th class="column-10"><?= t('Dependency') ?></th>
<th class="column-15"><?= t('Creator') ?></th>
<th class="column-15"><?= t('Date') ?></th>
</tr>
</thead>
<tbody>
<?php foreach ($links as $link): ?>
<tr>
<td>
@@ -39,5 +42,6 @@
</td>
</tr>
<?php endforeach ?>
</tbody>
</table>
<?php endif ?>