From 84fb39d85b67385727305fc481820f66913f9e9a Mon Sep 17 00:00:00 2001 From: Scott Idem Date: Fri, 13 Mar 2026 15:51:27 -0400 Subject: [PATCH] fix(sys-bar): prevent bar height shift on hover - Hover info strip is always in DOM (opacity-only toggle, no {#if} mount) so first hover no longer triggers a layout recalc/flash - Bar strip gets fixed h-9 height so inline label text appearing on group-hover can never shift the bar vertically Co-Authored-By: Claude Sonnet 4.6 --- src/lib/app_components/e_app_sys_bar.svelte | 61 +++++++++++---------- 1 file changed, 31 insertions(+), 30 deletions(-) diff --git a/src/lib/app_components/e_app_sys_bar.svelte b/src/lib/app_components/e_app_sys_bar.svelte index 6bbad4a4..c834c246 100644 --- a/src/lib/app_components/e_app_sys_bar.svelte +++ b/src/lib/app_components/e_app_sys_bar.svelte @@ -352,45 +352,46 @@ -->
- - {#if !expand && (person_display || access_label)} -
- {#if person_display} - - {person_display} - {/if} - {#if access_label} - - · {access_label} - - {/if} -
- {/if} + +
+ {#if person_display} + + {person_display} + {/if} + {#if access_label} + + · {access_label} + + {/if} +
- +