From e517320dcd4c93b2fe29ea99d18d8e161854190b Mon Sep 17 00:00:00 2001 From: Juergen Kunz Date: Tue, 10 Mar 2026 19:49:46 +0000 Subject: [PATCH] fix(dees-appui): add min-height: 0 to mainmenu and secondarymenu to prevent unintended container height and fix layout stacking --- changelog.md | 6 ++++++ ts_web/00_commitinfo_data.ts | 2 +- ts_web/elements/00group-appui/dees-appui/dees-appui.ts | 2 ++ 3 files changed, 9 insertions(+), 1 deletion(-) diff --git a/changelog.md b/changelog.md index 602c486..4f3b783 100644 --- a/changelog.md +++ b/changelog.md @@ -1,5 +1,11 @@ # Changelog +## 2026-03-10 - 3.46.1 - fix(dees-appui) +add min-height: 0 to mainmenu and secondarymenu to prevent unintended container height and fix layout stacking + +- Modified ts_web/elements/00group-appui/dees-appui/dees-appui.ts: added min-height: 0 to .maingrid > dees-appui-mainmenu and .maingrid > dees-appui-secondarymenu +- Fixes layout issues where children or flexbox-derived min-height could cause menu containers to expand and interfere with z-index stacking + ## 2026-03-10 - 3.46.0 - feat(dees-tile) unify tile metadata into a consistent bottom info bar and add PDF file-size display diff --git a/ts_web/00_commitinfo_data.ts b/ts_web/00_commitinfo_data.ts index 6fc1837..9701400 100644 --- a/ts_web/00_commitinfo_data.ts +++ b/ts_web/00_commitinfo_data.ts @@ -3,6 +3,6 @@ */ export const commitinfo = { name: '@design.estate/dees-catalog', - version: '3.46.0', + version: '3.46.1', description: 'A comprehensive library that provides dynamic web components for building sophisticated and modern web applications using JavaScript and TypeScript.' } diff --git a/ts_web/elements/00group-appui/dees-appui/dees-appui.ts b/ts_web/elements/00group-appui/dees-appui/dees-appui.ts index b2dc0aa..ca8f573 100644 --- a/ts_web/elements/00group-appui/dees-appui/dees-appui.ts +++ b/ts_web/elements/00group-appui/dees-appui/dees-appui.ts @@ -219,11 +219,13 @@ export class DeesAppui extends DeesElement { .maingrid > dees-appui-mainmenu { position: relative; z-index: 3; + min-height: 0; } .maingrid > dees-appui-secondarymenu { position: relative; z-index: 2; + min-height: 0; } .maingrid > dees-appui-maincontent {