Version 5.1 - All the GraphQL #32

Closed
timw4mail wants to merge 1160 commits from develop into master
3 changed files with 11 additions and 3 deletions
Showing only changes of commit 6e58844286 - Show all commits

View File

@ -5,7 +5,12 @@
<?php if (empty($sections)): ?>
<h3>There's nothing here!</h3>
<?php else: ?>
<?php $i = 0; ?>
<div class="tabs">
<?php foreach ($sections as $name => $items): ?>
<input <?= $i === 0 ? 'checked="checked"' : '' ?> type="radio" id="collection-tab-<?= $i ?>" name="collection-tabs" />
<label for="collection-tab-<?= $i ?>"><?= $name ?></label>
<div class="content">
<h2><?= $name ?></h2>
<table>
<thead>
@ -44,8 +49,10 @@
<?php endforeach ?>
</tbody>
</table>
<br />
</div>
<?php $i++ ?>
<?php endforeach ?>
</div>
<?php endif ?>
</main>
<script defer="defer" src="<?= $urlGenerator->assetUrl('js.php/g/table') ?>"></script>

File diff suppressed because one or more lines are too long

View File

@ -756,4 +756,5 @@ CSS Tabs
.tabs .content {
order: 99;
}
}
}