Api do wyszukiwania dostepności, korekty w powiązanych stronach

This commit is contained in:
dm
2025-11-24 08:40:05 +01:00
parent 20ef0d5293
commit e8881dd23b
22 changed files with 15600 additions and 225 deletions

View File

@@ -33,30 +33,36 @@
color: var(--fuz-text);
}
.fuz-rodo a {
color: var(--fuz-accent); /* Twój kolor linków */
}
/* .fuz-rodo a {
color: var(--fuz-accent);
} */
.fuz-rodo a:hover {
color: var(--fuz-accent-hover); /* jeśli masz globalne zmienne */
}
/* --- TOAST --- */
/* --- TOAST SYSTEM (Tailwind version) --- */
.fuz-toast {
@apply fixed top-5 right-5 z-[9999];
@apply fixed top-5 left-1/2 z-[9999] pointer-events-none;
@apply opacity-0 -translate-y-3 -translate-x-1/2 transition-all duration-300 ease-out;
}
.fuz-toast.visible {
@apply opacity-100 translate-y-0;
}
.fuz-toast-msg {
@apply px-5 py-3 rounded-xl shadow-lg;
@apply px-5 py-3 rounded-xl shadow-lg text-sm;
background: var(--fuz-accent);
color: var(--fuz-accent-text);
}
/* SUKCES = accent */
.fuz-toast-msg.success {
background-color: var(--fuz-accent);
background: var(--fuz-accent);
}
/* ERROR — czerwony zostaje, bo to wyjątek */
.fuz-toast-msg.error {
background-color: #ff4d4f;
@apply bg-red-500 text-white;
}