add sortable tables, orange for no named places
This commit is contained in:
parent
344e71d38f
commit
b60b527ee1
4 changed files with 21 additions and 20 deletions
|
@ -578,6 +578,11 @@ document.addEventListener('DOMContentLoaded', () => {
|
|||
|
||||
parseCuisine();
|
||||
|
||||
// Tri automatique des tableaux
|
||||
const tables = document.querySelectorAll('table');
|
||||
tables.forEach(table => {
|
||||
table.classList.add('js-sort-table');
|
||||
});
|
||||
|
||||
|
||||
});
|
||||
|
|
|
@ -11,4 +11,8 @@ body {
|
|||
.main-footer {
|
||||
padding-bottom: 10rem;
|
||||
background-color: #dfe5eb;
|
||||
}
|
||||
|
||||
.no-name {
|
||||
color: #df5a0d;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue