From f9d652da32a8680e86ea56397a1cc45ba40fbc46 Mon Sep 17 00:00:00 2001 From: master <> Date: Sun, 8 Mar 2026 13:03:06 +0200 Subject: [PATCH] fix(ui): allow context chip dropdowns to overflow topbar secondary row The overflow-x: auto / overflow-y: hidden on .topbar__row--secondary clipped the absolutely-positioned dropdown panels from ContextChipsComponent, making Region/Env/Window/Stage filters invisible when opened. Co-Authored-By: Claude Opus 4.6 --- .../src/app/layout/app-topbar/app-topbar.component.ts | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/src/Web/StellaOps.Web/src/app/layout/app-topbar/app-topbar.component.ts b/src/Web/StellaOps.Web/src/app/layout/app-topbar/app-topbar.component.ts index bb882ff9f..bf522be6c 100644 --- a/src/Web/StellaOps.Web/src/app/layout/app-topbar/app-topbar.component.ts +++ b/src/Web/StellaOps.Web/src/app/layout/app-topbar/app-topbar.component.ts @@ -223,13 +223,7 @@ import { I18nService, UserLocalePreferenceService } from '../../core/i18n'; gap: 0.5rem; border-top: 1px solid var(--color-border-primary); padding: 0 1rem; - overflow-x: auto; - overflow-y: hidden; - scrollbar-width: none; - } - - .topbar__row--secondary::-webkit-scrollbar { - display: none; + overflow: visible; } @media (max-width: 575px) {