2026-04-17 15:28:22 +02:00
|
|
|
|
<script lang="ts">
|
|
|
|
|
|
import { onMount } from 'svelte';
|
2026-04-17 17:31:08 +02:00
|
|
|
|
import { page } from '$app/stores';
|
2026-04-17 17:41:10 +02:00
|
|
|
|
import { goto, afterNavigate } from '$app/navigation';
|
2026-04-17 15:28:22 +02:00
|
|
|
|
import { profileStore } from '$lib/client/profile.svelte';
|
|
|
|
|
|
import ProfileSwitcher from '$lib/components/ProfileSwitcher.svelte';
|
feat(ui): custom confirmation dialog replacing native window.confirm
Single reusable dialog with a promise-based API: confirmAction({...})
returns Promise<boolean>. Supports title, optional message body,
confirm/cancel labels, and a 'destructive' flag that paints the confirm
button red.
Accessibility: Escape cancels, Enter confirms, confirm button auto-focus,
role=dialog + aria-labelledby, backdrop click = cancel.
Rolled out to: recipe delete, domain remove, profile delete, wishlist
remove. Native confirm() is gone from the codebase.
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-04-17 17:15:21 +02:00
|
|
|
|
import ConfirmDialog from '$lib/components/ConfirmDialog.svelte';
|
2026-04-17 17:41:10 +02:00
|
|
|
|
import type { SearchHit } from '$lib/server/recipes/search-local';
|
2026-04-17 17:47:26 +02:00
|
|
|
|
import type { WebHit } from '$lib/server/search/searxng';
|
2026-04-17 15:28:22 +02:00
|
|
|
|
|
|
|
|
|
|
let { children } = $props();
|
|
|
|
|
|
|
2026-04-17 17:31:08 +02:00
|
|
|
|
let navQuery = $state('');
|
2026-04-17 17:41:10 +02:00
|
|
|
|
let navHits = $state<SearchHit[]>([]);
|
2026-04-17 17:47:26 +02:00
|
|
|
|
let navWebHits = $state<WebHit[]>([]);
|
2026-04-17 17:41:10 +02:00
|
|
|
|
let navSearching = $state(false);
|
2026-04-17 17:47:26 +02:00
|
|
|
|
let navWebSearching = $state(false);
|
|
|
|
|
|
let navWebError = $state<string | null>(null);
|
2026-04-17 17:41:10 +02:00
|
|
|
|
let navOpen = $state(false);
|
|
|
|
|
|
let navContainer: HTMLElement | undefined = $state();
|
|
|
|
|
|
let debounceTimer: ReturnType<typeof setTimeout> | null = null;
|
|
|
|
|
|
|
|
|
|
|
|
const showHeaderSearch = $derived(
|
|
|
|
|
|
$page.url.pathname.startsWith('/recipes/') || $page.url.pathname === '/preview'
|
|
|
|
|
|
);
|
2026-04-17 17:31:08 +02:00
|
|
|
|
|
|
|
|
|
|
$effect(() => {
|
2026-04-17 17:41:10 +02:00
|
|
|
|
const q = navQuery.trim();
|
|
|
|
|
|
if (debounceTimer) clearTimeout(debounceTimer);
|
|
|
|
|
|
if (q.length <= 3) {
|
|
|
|
|
|
navHits = [];
|
2026-04-17 17:47:26 +02:00
|
|
|
|
navWebHits = [];
|
2026-04-17 17:41:10 +02:00
|
|
|
|
navSearching = false;
|
2026-04-17 17:47:26 +02:00
|
|
|
|
navWebSearching = false;
|
|
|
|
|
|
navWebError = null;
|
2026-04-17 17:41:10 +02:00
|
|
|
|
navOpen = false;
|
|
|
|
|
|
return;
|
2026-04-17 17:31:08 +02:00
|
|
|
|
}
|
2026-04-17 17:41:10 +02:00
|
|
|
|
navSearching = true;
|
2026-04-17 17:47:26 +02:00
|
|
|
|
navWebHits = [];
|
|
|
|
|
|
navWebSearching = false;
|
|
|
|
|
|
navWebError = null;
|
2026-04-17 17:41:10 +02:00
|
|
|
|
navOpen = true;
|
|
|
|
|
|
debounceTimer = setTimeout(async () => {
|
|
|
|
|
|
try {
|
|
|
|
|
|
const res = await fetch(`/api/recipes/search?q=${encodeURIComponent(q)}`);
|
|
|
|
|
|
const body = await res.json();
|
2026-04-17 17:47:26 +02:00
|
|
|
|
if (navQuery.trim() !== q) return;
|
|
|
|
|
|
navHits = body.hits;
|
|
|
|
|
|
if (body.hits.length === 0) {
|
|
|
|
|
|
navWebSearching = true;
|
|
|
|
|
|
try {
|
|
|
|
|
|
const wres = await fetch(`/api/recipes/search/web?q=${encodeURIComponent(q)}`);
|
|
|
|
|
|
if (navQuery.trim() !== q) return;
|
|
|
|
|
|
if (!wres.ok) {
|
|
|
|
|
|
const err = await wres.json().catch(() => ({}));
|
|
|
|
|
|
navWebError = err.message ?? `HTTP ${wres.status}`;
|
|
|
|
|
|
} else {
|
|
|
|
|
|
const wbody = await wres.json();
|
|
|
|
|
|
navWebHits = wbody.hits;
|
|
|
|
|
|
}
|
|
|
|
|
|
} finally {
|
|
|
|
|
|
if (navQuery.trim() === q) navWebSearching = false;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2026-04-17 17:41:10 +02:00
|
|
|
|
} finally {
|
|
|
|
|
|
if (navQuery.trim() === q) navSearching = false;
|
|
|
|
|
|
}
|
|
|
|
|
|
}, 300);
|
2026-04-17 17:31:08 +02:00
|
|
|
|
});
|
|
|
|
|
|
|
2026-04-17 17:41:10 +02:00
|
|
|
|
function submitNav(e: SubmitEvent) {
|
2026-04-17 17:31:08 +02:00
|
|
|
|
e.preventDefault();
|
|
|
|
|
|
const q = navQuery.trim();
|
|
|
|
|
|
if (!q) return;
|
2026-04-17 17:41:10 +02:00
|
|
|
|
navOpen = false;
|
2026-04-17 17:31:08 +02:00
|
|
|
|
void goto(`/search?q=${encodeURIComponent(q)}`);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2026-04-17 17:41:10 +02:00
|
|
|
|
function handleClickOutside(e: MouseEvent) {
|
|
|
|
|
|
if (navContainer && !navContainer.contains(e.target as Node)) {
|
|
|
|
|
|
navOpen = false;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function handleKey(e: KeyboardEvent) {
|
|
|
|
|
|
if (e.key === 'Escape' && navOpen) navOpen = false;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function pickHit() {
|
|
|
|
|
|
navOpen = false;
|
|
|
|
|
|
navQuery = '';
|
|
|
|
|
|
navHits = [];
|
2026-04-17 17:47:26 +02:00
|
|
|
|
navWebHits = [];
|
2026-04-17 17:41:10 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
afterNavigate(() => {
|
|
|
|
|
|
navQuery = '';
|
|
|
|
|
|
navHits = [];
|
2026-04-17 17:47:26 +02:00
|
|
|
|
navWebHits = [];
|
2026-04-17 17:41:10 +02:00
|
|
|
|
navOpen = false;
|
|
|
|
|
|
});
|
|
|
|
|
|
|
2026-04-17 15:28:22 +02:00
|
|
|
|
onMount(() => {
|
|
|
|
|
|
profileStore.load();
|
2026-04-17 17:41:10 +02:00
|
|
|
|
document.addEventListener('click', handleClickOutside);
|
|
|
|
|
|
document.addEventListener('keydown', handleKey);
|
|
|
|
|
|
return () => {
|
|
|
|
|
|
document.removeEventListener('click', handleClickOutside);
|
|
|
|
|
|
document.removeEventListener('keydown', handleKey);
|
|
|
|
|
|
};
|
2026-04-17 15:28:22 +02:00
|
|
|
|
});
|
|
|
|
|
|
</script>
|
|
|
|
|
|
|
feat(ui): custom confirmation dialog replacing native window.confirm
Single reusable dialog with a promise-based API: confirmAction({...})
returns Promise<boolean>. Supports title, optional message body,
confirm/cancel labels, and a 'destructive' flag that paints the confirm
button red.
Accessibility: Escape cancels, Enter confirms, confirm button auto-focus,
role=dialog + aria-labelledby, backdrop click = cancel.
Rolled out to: recipe delete, domain remove, profile delete, wishlist
remove. Native confirm() is gone from the codebase.
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-04-17 17:15:21 +02:00
|
|
|
|
<ConfirmDialog />
|
|
|
|
|
|
|
2026-04-17 15:28:22 +02:00
|
|
|
|
<header class="bar">
|
2026-04-17 17:41:10 +02:00
|
|
|
|
<div class="bar-inner">
|
|
|
|
|
|
<a href="/" class="brand">Kochwas</a>
|
|
|
|
|
|
{#if showHeaderSearch}
|
|
|
|
|
|
<div class="nav-search-wrap" bind:this={navContainer}>
|
|
|
|
|
|
<form class="nav-search" onsubmit={submitNav} role="search">
|
|
|
|
|
|
<input
|
|
|
|
|
|
type="search"
|
|
|
|
|
|
bind:value={navQuery}
|
|
|
|
|
|
onfocus={() => {
|
|
|
|
|
|
if (navHits.length > 0 || navQuery.trim().length > 3) navOpen = true;
|
|
|
|
|
|
}}
|
|
|
|
|
|
placeholder="Rezept suchen…"
|
|
|
|
|
|
autocomplete="off"
|
|
|
|
|
|
inputmode="search"
|
|
|
|
|
|
aria-label="Suchbegriff"
|
|
|
|
|
|
/>
|
|
|
|
|
|
</form>
|
|
|
|
|
|
{#if navOpen}
|
|
|
|
|
|
<div class="dropdown" role="listbox">
|
|
|
|
|
|
{#if navSearching && navHits.length === 0}
|
|
|
|
|
|
<p class="dd-status">Suche läuft …</p>
|
|
|
|
|
|
{:else if navHits.length > 0}
|
|
|
|
|
|
<ul class="dd-list">
|
|
|
|
|
|
{#each navHits as r (r.id)}
|
|
|
|
|
|
<li>
|
|
|
|
|
|
<a
|
|
|
|
|
|
href={`/recipes/${r.id}`}
|
|
|
|
|
|
class="dd-item"
|
|
|
|
|
|
onclick={pickHit}
|
|
|
|
|
|
role="option"
|
|
|
|
|
|
aria-selected="false"
|
|
|
|
|
|
>
|
|
|
|
|
|
{#if r.image_path}
|
|
|
|
|
|
<img src={`/images/${r.image_path}`} alt="" loading="lazy" />
|
|
|
|
|
|
{:else}
|
|
|
|
|
|
<div class="dd-placeholder">🥘</div>
|
|
|
|
|
|
{/if}
|
|
|
|
|
|
<div class="dd-body">
|
|
|
|
|
|
<div class="dd-title">{r.title}</div>
|
|
|
|
|
|
{#if r.source_domain}
|
|
|
|
|
|
<div class="dd-domain">{r.source_domain}</div>
|
|
|
|
|
|
{/if}
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</a>
|
|
|
|
|
|
</li>
|
|
|
|
|
|
{/each}
|
|
|
|
|
|
</ul>
|
|
|
|
|
|
<a
|
|
|
|
|
|
class="dd-web"
|
|
|
|
|
|
href={`/search/web?q=${encodeURIComponent(navQuery.trim())}`}
|
|
|
|
|
|
onclick={pickHit}
|
|
|
|
|
|
>
|
|
|
|
|
|
🌐 Im Internet weitersuchen
|
|
|
|
|
|
</a>
|
2026-04-17 17:47:26 +02:00
|
|
|
|
{:else}
|
|
|
|
|
|
<p class="dd-section">Keine lokalen Rezepte – aus dem Internet:</p>
|
|
|
|
|
|
{#if navWebSearching}
|
|
|
|
|
|
<p class="dd-status">Suche im Internet läuft …</p>
|
|
|
|
|
|
{:else if navWebError}
|
|
|
|
|
|
<p class="dd-status dd-error">Internet-Suche zurzeit nicht möglich.</p>
|
|
|
|
|
|
{:else if navWebHits.length > 0}
|
|
|
|
|
|
<ul class="dd-list">
|
|
|
|
|
|
{#each navWebHits as w (w.url)}
|
|
|
|
|
|
<li>
|
|
|
|
|
|
<a
|
|
|
|
|
|
href={`/preview?url=${encodeURIComponent(w.url)}`}
|
|
|
|
|
|
class="dd-item"
|
|
|
|
|
|
onclick={pickHit}
|
|
|
|
|
|
role="option"
|
|
|
|
|
|
aria-selected="false"
|
|
|
|
|
|
>
|
|
|
|
|
|
{#if w.thumbnail}
|
|
|
|
|
|
<img src={w.thumbnail} alt="" loading="lazy" />
|
|
|
|
|
|
{:else}
|
|
|
|
|
|
<div class="dd-placeholder">🍽️</div>
|
|
|
|
|
|
{/if}
|
|
|
|
|
|
<div class="dd-body">
|
|
|
|
|
|
<div class="dd-title">{w.title}</div>
|
|
|
|
|
|
<div class="dd-domain">{w.domain}</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</a>
|
|
|
|
|
|
</li>
|
|
|
|
|
|
{/each}
|
|
|
|
|
|
</ul>
|
|
|
|
|
|
{:else}
|
|
|
|
|
|
<p class="dd-status">Auch im Internet nichts gefunden.</p>
|
|
|
|
|
|
{/if}
|
2026-04-17 17:41:10 +02:00
|
|
|
|
{/if}
|
|
|
|
|
|
</div>
|
|
|
|
|
|
{/if}
|
|
|
|
|
|
</div>
|
|
|
|
|
|
{/if}
|
|
|
|
|
|
<div class="bar-right">
|
|
|
|
|
|
<a href="/wishlist" class="nav-link" aria-label="Wunschliste">🍽️</a>
|
|
|
|
|
|
<a href="/admin" class="nav-link" aria-label="Einstellungen">⚙️</a>
|
|
|
|
|
|
<ProfileSwitcher />
|
|
|
|
|
|
</div>
|
2026-04-17 15:35:20 +02:00
|
|
|
|
</div>
|
2026-04-17 15:28:22 +02:00
|
|
|
|
</header>
|
|
|
|
|
|
|
|
|
|
|
|
<main>
|
|
|
|
|
|
{@render children()}
|
|
|
|
|
|
</main>
|
|
|
|
|
|
|
|
|
|
|
|
<style>
|
|
|
|
|
|
:global(html, body) {
|
|
|
|
|
|
margin: 0;
|
|
|
|
|
|
padding: 0;
|
|
|
|
|
|
background: #f8faf8;
|
|
|
|
|
|
color: #1a1a1a;
|
|
|
|
|
|
font-family: system-ui, -apple-system, 'Segoe UI', sans-serif;
|
|
|
|
|
|
-webkit-font-smoothing: antialiased;
|
|
|
|
|
|
}
|
|
|
|
|
|
:global(a) {
|
|
|
|
|
|
color: #2b6a3d;
|
|
|
|
|
|
}
|
|
|
|
|
|
:global(*) {
|
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
|
}
|
|
|
|
|
|
.bar {
|
|
|
|
|
|
position: sticky;
|
|
|
|
|
|
top: 0;
|
|
|
|
|
|
z-index: 10;
|
2026-04-17 17:41:10 +02:00
|
|
|
|
background: white;
|
|
|
|
|
|
border-bottom: 1px solid #e4eae7;
|
|
|
|
|
|
}
|
|
|
|
|
|
.bar-inner {
|
|
|
|
|
|
max-width: 760px;
|
|
|
|
|
|
margin: 0 auto;
|
2026-04-17 15:28:22 +02:00
|
|
|
|
display: flex;
|
|
|
|
|
|
align-items: center;
|
2026-04-17 17:31:08 +02:00
|
|
|
|
gap: 0.6rem;
|
|
|
|
|
|
padding: 0.6rem 1rem;
|
2026-04-17 17:52:51 +02:00
|
|
|
|
position: relative;
|
2026-04-17 15:28:22 +02:00
|
|
|
|
}
|
|
|
|
|
|
.brand {
|
|
|
|
|
|
font-size: 1.15rem;
|
|
|
|
|
|
font-weight: 700;
|
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
|
color: #2b6a3d;
|
2026-04-17 17:31:08 +02:00
|
|
|
|
flex-shrink: 0;
|
|
|
|
|
|
}
|
2026-04-17 17:41:10 +02:00
|
|
|
|
.nav-search-wrap {
|
|
|
|
|
|
position: relative;
|
2026-04-17 17:31:08 +02:00
|
|
|
|
flex: 1;
|
|
|
|
|
|
min-width: 0;
|
2026-04-17 17:41:10 +02:00
|
|
|
|
}
|
|
|
|
|
|
.nav-search {
|
2026-04-17 17:31:08 +02:00
|
|
|
|
display: flex;
|
|
|
|
|
|
}
|
|
|
|
|
|
.nav-search input {
|
|
|
|
|
|
width: 100%;
|
|
|
|
|
|
padding: 0.55rem 0.85rem;
|
|
|
|
|
|
font-size: 0.95rem;
|
|
|
|
|
|
border: 1px solid #cfd9d1;
|
|
|
|
|
|
border-radius: 999px;
|
|
|
|
|
|
background: #f4f8f5;
|
|
|
|
|
|
min-height: 40px;
|
|
|
|
|
|
}
|
|
|
|
|
|
.nav-search input:focus {
|
|
|
|
|
|
outline: 2px solid #2b6a3d;
|
|
|
|
|
|
outline-offset: 1px;
|
|
|
|
|
|
background: white;
|
2026-04-17 15:28:22 +02:00
|
|
|
|
}
|
2026-04-17 17:41:10 +02:00
|
|
|
|
.dropdown {
|
|
|
|
|
|
position: absolute;
|
|
|
|
|
|
top: calc(100% + 0.4rem);
|
|
|
|
|
|
left: 0;
|
|
|
|
|
|
right: 0;
|
|
|
|
|
|
background: white;
|
|
|
|
|
|
border: 1px solid #e4eae7;
|
|
|
|
|
|
border-radius: 12px;
|
|
|
|
|
|
box-shadow: 0 14px 40px rgba(0, 0, 0, 0.18);
|
|
|
|
|
|
max-height: 70vh;
|
|
|
|
|
|
overflow-y: auto;
|
|
|
|
|
|
z-index: 50;
|
|
|
|
|
|
}
|
|
|
|
|
|
.dd-list {
|
|
|
|
|
|
list-style: none;
|
|
|
|
|
|
padding: 0.35rem;
|
|
|
|
|
|
margin: 0;
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
|
gap: 0.1rem;
|
|
|
|
|
|
}
|
|
|
|
|
|
.dd-item {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
gap: 0.65rem;
|
|
|
|
|
|
padding: 0.45rem 0.55rem;
|
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
|
color: #1a1a1a;
|
|
|
|
|
|
border-radius: 10px;
|
|
|
|
|
|
min-height: 52px;
|
|
|
|
|
|
}
|
|
|
|
|
|
.dd-item:hover {
|
|
|
|
|
|
background: #f4f8f5;
|
|
|
|
|
|
}
|
|
|
|
|
|
.dd-item img,
|
|
|
|
|
|
.dd-placeholder {
|
|
|
|
|
|
width: 44px;
|
|
|
|
|
|
height: 44px;
|
|
|
|
|
|
object-fit: cover;
|
|
|
|
|
|
border-radius: 8px;
|
|
|
|
|
|
background: #eef3ef;
|
|
|
|
|
|
display: grid;
|
|
|
|
|
|
place-items: center;
|
|
|
|
|
|
font-size: 1.3rem;
|
|
|
|
|
|
flex-shrink: 0;
|
|
|
|
|
|
}
|
|
|
|
|
|
.dd-body {
|
|
|
|
|
|
min-width: 0;
|
|
|
|
|
|
flex: 1;
|
|
|
|
|
|
}
|
|
|
|
|
|
.dd-title {
|
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
|
font-size: 0.95rem;
|
|
|
|
|
|
line-height: 1.25;
|
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
|
}
|
|
|
|
|
|
.dd-domain {
|
|
|
|
|
|
font-size: 0.78rem;
|
|
|
|
|
|
color: #888;
|
|
|
|
|
|
margin-top: 0.1rem;
|
|
|
|
|
|
}
|
|
|
|
|
|
.dd-status {
|
|
|
|
|
|
text-align: center;
|
|
|
|
|
|
color: #888;
|
|
|
|
|
|
padding: 0.9rem 0.6rem;
|
|
|
|
|
|
margin: 0;
|
|
|
|
|
|
font-size: 0.9rem;
|
|
|
|
|
|
}
|
2026-04-17 17:47:26 +02:00
|
|
|
|
.dd-error {
|
|
|
|
|
|
color: #c53030;
|
|
|
|
|
|
}
|
|
|
|
|
|
.dd-section {
|
|
|
|
|
|
margin: 0;
|
|
|
|
|
|
padding: 0.6rem 0.85rem 0.3rem;
|
|
|
|
|
|
font-size: 0.8rem;
|
|
|
|
|
|
color: #888;
|
|
|
|
|
|
border-bottom: 1px solid #f0f3f1;
|
|
|
|
|
|
text-transform: uppercase;
|
|
|
|
|
|
letter-spacing: 0.03em;
|
|
|
|
|
|
}
|
2026-04-17 17:41:10 +02:00
|
|
|
|
.dd-web {
|
|
|
|
|
|
display: block;
|
|
|
|
|
|
padding: 0.75rem 0.85rem;
|
|
|
|
|
|
text-align: center;
|
|
|
|
|
|
border-top: 1px solid #e4eae7;
|
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
|
color: #2b6a3d;
|
|
|
|
|
|
font-size: 0.95rem;
|
|
|
|
|
|
background: #fafdfb;
|
|
|
|
|
|
}
|
|
|
|
|
|
.dd-web:hover {
|
|
|
|
|
|
background: #eaf4ed;
|
|
|
|
|
|
}
|
2026-04-17 15:35:20 +02:00
|
|
|
|
.bar-right {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
align-items: center;
|
2026-04-17 17:31:08 +02:00
|
|
|
|
gap: 0.4rem;
|
|
|
|
|
|
flex-shrink: 0;
|
2026-04-17 17:43:08 +02:00
|
|
|
|
margin-left: auto;
|
2026-04-17 17:31:08 +02:00
|
|
|
|
}
|
2026-04-17 17:41:10 +02:00
|
|
|
|
.nav-link {
|
|
|
|
|
|
display: inline-flex;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
justify-content: center;
|
|
|
|
|
|
width: 40px;
|
|
|
|
|
|
height: 40px;
|
|
|
|
|
|
border-radius: 999px;
|
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
|
font-size: 1.15rem;
|
|
|
|
|
|
}
|
|
|
|
|
|
.nav-link:hover {
|
|
|
|
|
|
background: #f4f8f5;
|
|
|
|
|
|
}
|
|
|
|
|
|
main {
|
|
|
|
|
|
padding: 0 1rem 4rem;
|
|
|
|
|
|
max-width: 760px;
|
|
|
|
|
|
margin: 0 auto;
|
|
|
|
|
|
}
|
2026-04-17 17:31:08 +02:00
|
|
|
|
@media (max-width: 520px) {
|
|
|
|
|
|
.brand {
|
|
|
|
|
|
font-size: 0;
|
|
|
|
|
|
width: 1.6rem;
|
|
|
|
|
|
height: 1.6rem;
|
|
|
|
|
|
background: #2b6a3d;
|
|
|
|
|
|
border-radius: 8px;
|
|
|
|
|
|
position: relative;
|
|
|
|
|
|
}
|
|
|
|
|
|
.brand::after {
|
|
|
|
|
|
content: '🍳';
|
|
|
|
|
|
font-size: 1rem;
|
|
|
|
|
|
position: absolute;
|
|
|
|
|
|
inset: 0;
|
|
|
|
|
|
display: grid;
|
|
|
|
|
|
place-items: center;
|
|
|
|
|
|
}
|
|
|
|
|
|
.nav-link {
|
|
|
|
|
|
width: 36px;
|
|
|
|
|
|
height: 36px;
|
|
|
|
|
|
font-size: 1.05rem;
|
|
|
|
|
|
}
|
2026-04-17 17:52:51 +02:00
|
|
|
|
/* Beim Tippen auf engen Screens nach rechts ausdehnen
|
|
|
|
|
|
und die Action-Icons dahinter verschwinden lassen. */
|
|
|
|
|
|
.nav-search-wrap:focus-within {
|
|
|
|
|
|
position: absolute;
|
|
|
|
|
|
top: 0.6rem;
|
|
|
|
|
|
bottom: 0.6rem;
|
|
|
|
|
|
left: calc(1rem + 1.6rem + 0.6rem);
|
|
|
|
|
|
right: 1rem;
|
|
|
|
|
|
z-index: 60;
|
|
|
|
|
|
}
|
|
|
|
|
|
.nav-search-wrap:focus-within .nav-search input {
|
|
|
|
|
|
background: white;
|
|
|
|
|
|
}
|
2026-04-17 15:35:20 +02:00
|
|
|
|
}
|
2026-04-17 15:28:22 +02:00
|
|
|
|
</style>
|