From d8419aa8fdb210bb28061b547fdf2bc30c9bd44d Mon Sep 17 00:00:00 2001 From: Justin Edmund Date: Sun, 21 Dec 2025 12:29:58 -0800 Subject: [PATCH] expose edit button next to menu --- src/lib/components/party/Party.svelte | 33 ++++++++++++++------------- 1 file changed, 17 insertions(+), 16 deletions(-) diff --git a/src/lib/components/party/Party.svelte b/src/lib/components/party/Party.svelte index 034b6414..eb5f1aa9 100644 --- a/src/lib/components/party/Party.svelte +++ b/src/lib/components/party/Party.svelte @@ -938,24 +938,25 @@
+ {#if canEdit()} + + {/if} + - + - {#if canEdit()} + {#if canEdit() && hasCollectionLinks} - + - {#if hasCollectionLinks} - - - - {/if} {/if} @@ -1230,15 +1231,15 @@ gap: $unit-half; } - // Style the dropdown trigger button + // Style the dropdown trigger button to match Button ghost small :global(.party-actions-trigger) { display: inline-flex; align-items: center; justify-content: center; - width: 32px; - height: 32px; - padding: 0; - border-radius: 50%; + width: 30px; + height: 30px; + padding: $unit; + border-radius: $input-corner; background-color: transparent; color: var(--text-secondary); border: none; @@ -1247,7 +1248,7 @@ outline: none; &:hover { - background-color: var(--button-subtle-bg-hover); + background-color: var(--button-bg); color: var(--text-primary); }