fix(dees-appui): add min-height: 0 to mainmenu and secondarymenu to prevent unintended container height and fix layout stacking
This commit is contained in:
@@ -1,5 +1,11 @@
|
|||||||
# Changelog
|
# 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)
|
## 2026-03-10 - 3.46.0 - feat(dees-tile)
|
||||||
unify tile metadata into a consistent bottom info bar and add PDF file-size display
|
unify tile metadata into a consistent bottom info bar and add PDF file-size display
|
||||||
|
|
||||||
|
|||||||
@@ -3,6 +3,6 @@
|
|||||||
*/
|
*/
|
||||||
export const commitinfo = {
|
export const commitinfo = {
|
||||||
name: '@design.estate/dees-catalog',
|
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.'
|
description: 'A comprehensive library that provides dynamic web components for building sophisticated and modern web applications using JavaScript and TypeScript.'
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -219,11 +219,13 @@ export class DeesAppui extends DeesElement {
|
|||||||
.maingrid > dees-appui-mainmenu {
|
.maingrid > dees-appui-mainmenu {
|
||||||
position: relative;
|
position: relative;
|
||||||
z-index: 3;
|
z-index: 3;
|
||||||
|
min-height: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.maingrid > dees-appui-secondarymenu {
|
.maingrid > dees-appui-secondarymenu {
|
||||||
position: relative;
|
position: relative;
|
||||||
z-index: 2;
|
z-index: 2;
|
||||||
|
min-height: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.maingrid > dees-appui-maincontent {
|
.maingrid > dees-appui-maincontent {
|
||||||
|
|||||||
Reference in New Issue
Block a user