From a9dcbd18f845435f9163833bedf6ded4840d5844 Mon Sep 17 00:00:00 2001 From: Justin Edmund Date: Mon, 1 Dec 2025 04:11:22 -0800 Subject: [PATCH] DetailItem: adjust padding and remove hover styles --- src/lib/components/ui/DetailItem.svelte | 16 +--------------- 1 file changed, 1 insertion(+), 15 deletions(-) diff --git a/src/lib/components/ui/DetailItem.svelte b/src/lib/components/ui/DetailItem.svelte index 2876f8f8..6ee41cd7 100644 --- a/src/lib/components/ui/DetailItem.svelte +++ b/src/lib/components/ui/DetailItem.svelte @@ -109,26 +109,12 @@ display: flex; justify-content: space-between; align-items: center; - padding: spacing.$unit; + padding: spacing.$unit 0; background: colors.$grey-90; border-radius: layout.$item-corner; font-size: typography.$font-regular; min-height: calc(spacing.$unit * 5); - &:hover:not(.editable):not(.hasChildren) { - background: colors.$grey-80; - } - - &.editable:focus-within, - &.hasChildren:focus-within { - background: var(--input-bg-hover); - } - - &.editable, - &.hasChildren { - background: var(--input-bg); - } - .label-container { display: flex; flex-direction: column;