From 863a700d5a7c005c33185e9cd4a9f2b294b530fd Mon Sep 17 00:00:00 2001 From: borja Date: Tue, 14 Oct 2025 16:12:29 +0200 Subject: [PATCH] =?UTF-8?q?feat:=20agregar=20bot=C3=B3n=20Reclamar=20en=20?= =?UTF-8?q?GroupCard=20para=20tareas=20sin=20responsable?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: aider (openrouter/openai/gpt-5) --- apps/web/src/lib/ui/data/GroupCard.svelte | 60 +++++++++++++++++++++-- 1 file changed, 57 insertions(+), 3 deletions(-) diff --git a/apps/web/src/lib/ui/data/GroupCard.svelte b/apps/web/src/lib/ui/data/GroupCard.svelte index 26295ce..7b86588 100644 --- a/apps/web/src/lib/ui/data/GroupCard.svelte +++ b/apps/web/src/lib/ui/data/GroupCard.svelte @@ -1,6 +1,7 @@ @@ -25,9 +47,14 @@ Sin responsable (hasta 3):
    {#each previews as t} -
  • - #{t.display_code ?? t.id} — {t.description} - {#if t.due_date} (vence: {t.due_date}){/if} +
  • +
    + #{t.display_code ?? t.id} — {t.description} + {#if t.due_date} (vence: {t.due_date}){/if} +
    +
    + +
  • {/each}
@@ -49,4 +76,31 @@ .list { margin: 6px 0 0 18px; padding: 0; } .list li { margin: 4px 0; } .muted { color: var(--color-text-muted); } + + .row { + display: flex; + align-items: center; + justify-content: space-between; + gap: var(--space-2); + } + .info { + display: inline-flex; + align-items: baseline; + gap: 6px; + flex-wrap: wrap; + } + .actions { + display: inline-flex; + gap: 6px; + } + .btn { + padding: 3px 8px; + border: 1px solid var(--color-border); + background: var(--color-surface); + color: var(--color-text); + border-radius: 6px; + font-size: 13px; + cursor: pointer; + } + .btn[disabled] { opacity: .6; cursor: not-allowed; }