feat: Expandable metadata drawer + transcription system (#175, #176) #178

Merged
marcel merged 47 commits from feat/issue-175-176-metadata-drawer-transcription into main 2026-04-06 11:31:11 +02:00
2 changed files with 5 additions and 4 deletions
Showing only changes of commit 6dc81ef2e3 - Show all commits

View File

@@ -266,12 +266,13 @@ onMount(() => {
{#if isOwn(msg)}
<button
type="button"
class="hover:text-error absolute -right-1 -bottom-1 rounded p-0.5 text-ink-3 transition-colors"
class="hover:text-error absolute -right-1 -bottom-1 cursor-pointer rounded p-0.5 text-ink-3 transition-colors"
title={m.btn_delete()}
aria-label={m.btn_delete()}
onclick={(e) => { e.stopPropagation(); deleteComment(msg.id); }}
>
<svg
class="h-3 w-3"
class="h-4 w-4"
fill="none"
viewBox="0 0 24 24"
stroke="currentColor"

View File

@@ -138,7 +138,7 @@ function handleTextareaMouseUp() {
{#if !hasComments}
<button
type="button"
class="flex items-center gap-1 text-xs font-medium text-ink-2 transition-colors hover:text-ink"
class="flex cursor-pointer items-center gap-1 text-xs font-medium text-ink-2 transition-colors hover:text-ink"
onclick={() => (commentOpen = true)}
>
<svg
@@ -188,7 +188,7 @@ function handleTextareaMouseUp() {
<!-- Delete button -->
<button
type="button"
class="hover:text-error text-ink-3 transition-colors"
class="hover:text-error cursor-pointer text-ink-3 transition-colors"
aria-label={m.btn_delete()}
onclick={handleDelete}
>