This commit is contained in:
Francesco
2023-09-26 16:38:42 +02:00
parent ca657340c0
commit ca1931cda6
11 changed files with 202 additions and 166 deletions

View File

@@ -181,6 +181,19 @@ AUTOCOMPLETE
background-color: #F0F0F0;
}
ul.categorical-select {
list-style-type: none;
margin-bottom: 0px;
}
ul.categorical-select button {
color: #007fd0;
text-decoration: underline;
background: transparent;
border: none;
}
/**
* Images
*/

View File

@@ -9,7 +9,7 @@ document.addEventListener("DOMContentLoaded", () => {
activeFilters.forEach(activeFilter => {
activeFilter.addEventListener('click', function(e) {
let formId = e.target.dataset.formid;
document.getElementById(formId).submit()
document.getElementById(formId).submit();
});
});