Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@
{#if isEditMode && agendaItemId && !item}
<p class="border-t p-4 text-sm text-muted-foreground">Punkt hittades inte.</p>
{:else}
<div class="w-full space-y-4">
<div class="w-full space-y-4" data-agenda-item-editor={isEditMode ? '' : undefined}>
<div class="flex flex-col gap-3">
<div class="flex flex-wrap items-center gap-2">
<Input bind:value={newTitle} placeholder="Rubrik" class="min-w-[12rem]" />
Expand Down
2 changes: 1 addition & 1 deletion src/lib/components/blocks/agenda/agenda-item-row.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
hasBeenCompleted(currentIndex, index) && 'bg-muted/50 text-muted-foreground',
currentAgendaItemId != null &&
item.id === currentAgendaItemId &&
'bg-primary/10 text-primary',
'[&:not(:has([data-agenda-item-editor]))]:bg-primary/10 [&:not(:has([data-agenda-item-editor]))]:text-primary',
)}
>
{#if itemLeading}
Expand Down
2 changes: 1 addition & 1 deletion src/routes/(realtime)/m/admin/projector/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@
</div>
{:else}
<div class="col-span-3 flex justify-center">
<div class="w-full max-w-md">
<div class="mx-auto w-full max-w-md text-center">
<PollView />
</div>
</div>
Expand Down
Loading