[TASK] improve style searchable table
All checks were successful
CI/CD Pipeline / test (push) Successful in 12m4s
CI/CD Pipeline / deploy-staging (push) Has been skipped
CI/CD Pipeline / deploy-main (push) Has been skipped

This commit is contained in:
Marie Birner
2024-04-14 17:43:18 +02:00
parent b0c936cc34
commit 0b6461eeb5
6 changed files with 204 additions and 25 deletions

View File

@ -1,21 +1,7 @@
{% import "includes/macros" as macros %}
{% extends "base" %}
{% block content %}
<style>
.dt-input {
color: black;
}
.dt-selector {
width: 70px;
}
.dt-table th{
min-width: 100px;
}
.dt-table td {
border: 1px gray solid;
}
}
</style>
<link rel="stylesheet" href="/public/table.css" />
<div class="max-w-screen-lg w-full">
<h1 class="h1">Bootsauswertung</h1>
<div class="text-black dark:text-white">
@ -48,12 +34,5 @@
</div>
</div>
<script src="/public/jstable.min.js"></script>
<script>new JSTable("#basic", {
perPage: 100,
perPageSelect: [10,100],
labels: {
placeholder: 'Suchen (zB "Linz")'
}
});
</script>
<script src="/public/table.js"></script>
{% endblock content %}