mirror of
https://github.com/Theodor-Springmann-Stiftung/hamann-ausgabe-core.git
synced 2025-10-30 01:35:32 +00:00
Bugfixes
This commit is contained in:
File diff suppressed because one or more lines are too long
@@ -9,22 +9,6 @@
|
||||
@apply border-b-2 border-slate-200
|
||||
}
|
||||
|
||||
.ha-register .ha-register-head .ha-register-add a {
|
||||
@apply rounded border border-hamannSlate-50 hover:shadow-md hover:border-hamannSlate-300
|
||||
}
|
||||
|
||||
.ha-register .ha-register-head .ha-register-add a .ha-register-add-plusbutton {
|
||||
@apply rounded-l bg-slate-200 border-r border-hamannSlate-50
|
||||
}
|
||||
|
||||
.ha-register .ha-register-head .ha-register-add a:hover .ha-register-add-plusbutton {
|
||||
@apply border-hamannSlate-300 text-hamannSlate-700
|
||||
}
|
||||
|
||||
.ha-register .ha-register-head .ha-register-add a .ha-register-add-text {
|
||||
@apply ml-1
|
||||
}
|
||||
|
||||
.ha-register .ha-register-head .ha-register-nav a {
|
||||
@apply text-slate-700 hover:text-slate-900 dark:text-white dark:hover:text-gray-300
|
||||
}
|
||||
@@ -82,20 +66,21 @@
|
||||
@apply font-bold text-2xl desktop:font-normal desktop:text-5xl mb-6 inline-block
|
||||
}
|
||||
|
||||
|
||||
.ha-register .ha-register-head .ha-register-add a .ha-register-add-text {
|
||||
@apply underline decoration-dotted hover:decoration-solid
|
||||
}
|
||||
|
||||
.ha-register .ha-register-head .ha-register-add {
|
||||
@apply inline-block relative bottom-[0.33rem] ml-2
|
||||
|
||||
}
|
||||
|
||||
.ha-register .ha-register-head .ha-register-add a {
|
||||
@apply -mt-4 mb-6 flex flex-row w-fit text-sm font-sans
|
||||
@apply flex flex-row w-fit text-sm font-sans
|
||||
}
|
||||
|
||||
.ha-register .ha-register-head .ha-register-add a .ha-register-add-plusbutton {
|
||||
@apply px-2 leading-none text-xl font-bold pb-0.5
|
||||
}
|
||||
|
||||
.ha-register .ha-register-head .ha-register-add a:hover .ha-register-add-plusbutton {
|
||||
|
||||
@apply leading-none py-1 font-bold
|
||||
}
|
||||
|
||||
.ha-register .ha-register-head .ha-register-add a .ha-register-add-text {
|
||||
@@ -103,19 +88,19 @@
|
||||
}
|
||||
|
||||
.ha-register .ha-register-head form {
|
||||
@apply -mt-1 mb-6 font-sans
|
||||
@apply -mt-1 mb-1 font-sans py-1 flex flex-row gap-x-2
|
||||
}
|
||||
|
||||
.ha-register .ha-register-head form input {
|
||||
@apply px-1 border
|
||||
@apply px-1 border grow-0 min-w-0
|
||||
}
|
||||
|
||||
.ha-register .ha-register-head form button {
|
||||
@apply px-1 border
|
||||
@apply px-1 border border-slate-200 hover:border-black disabled:bg-gray-200 disabled:hover:border-slate-200 disabled:text-gray-600
|
||||
}
|
||||
|
||||
.ha-register .ha-register-head .ha-register-nav {
|
||||
@apply font-sans
|
||||
@apply font-sans mt-6
|
||||
}
|
||||
|
||||
.ha-register .ha-register-head .ha-register-nav a {
|
||||
|
||||
@@ -1,14 +0,0 @@
|
||||
const ACTIVATESEARCHFILTER = function(filter, button) {
|
||||
let f = filter.value;
|
||||
if (f === "") {
|
||||
button.disabled = true;
|
||||
return;
|
||||
}
|
||||
button.disabled = false;
|
||||
}
|
||||
|
||||
let searchfilter = document.getElementById("ha-searchformtext");
|
||||
let searchsubmitbtn = document.getElementById("ha-searchformsubmit");
|
||||
let searchform = document.getElementById("ha-searchform");
|
||||
ACTIVATESEARCHFILTER(searchfilter, searchsubmitbtn);
|
||||
searchfilter.addEventListener("input", () => ACTIVATESEARCHFILTER(searchfilter, searchsubmitbtn));
|
||||
Reference in New Issue
Block a user