feat(ui): add AnnotateHintStrip — 18px hint strip, hidden md:flex, annotateMode gated
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
18
frontend/src/lib/components/AnnotateHintStrip.svelte
Normal file
18
frontend/src/lib/components/AnnotateHintStrip.svelte
Normal file
@@ -0,0 +1,18 @@
|
||||
<script lang="ts">
|
||||
type Props = {
|
||||
annotateMode: boolean;
|
||||
};
|
||||
|
||||
let { annotateMode }: Props = $props();
|
||||
</script>
|
||||
|
||||
{#if annotateMode}
|
||||
<div
|
||||
data-testid="annotate-hint-strip"
|
||||
class="hidden h-[18px] items-center gap-2 border-t border-dashed px-3.5 md:flex"
|
||||
style="background: rgba(1,40,81,0.05); border-color: rgba(1,40,81,0.20)"
|
||||
>
|
||||
<span class="text-[10px] font-bold tracking-wide text-primary uppercase">Annotieren</span>
|
||||
<span class="text-[10px] text-ink-2">Klicken Sie auf einen Bereich im Dokument</span>
|
||||
</div>
|
||||
{/if}
|
||||
Reference in New Issue
Block a user