Fix kanban doesn't show boards in kdots

This commit is contained in:
nathan 2025-02-10 16:27:36 -07:00
parent 3676941fac
commit 0ab5357f88
2 changed files with 7 additions and 3 deletions

View File

@ -520,6 +520,9 @@ egw-framework#egw_fw_basecontainer .egw_fw_ui_sidemenu_entry_header {
}
/*** END HEADER ***/
/*** APPLICATION ***/
egw-app {
/* Application template gets full height */
}
egw-app::part(name) {
display: flex;
align-items: center;
@ -529,7 +532,8 @@ egw-app::part(content) {
flex-direction: column;
overflow-y: hidden;
}
egw-app > div[id] > div {
egw-app > div[id] > div,
egw-app > div[id] > et2-template {
height: 100%;
}
/* Individual application colors, should go in each app's CSS */

View File

@ -502,8 +502,8 @@ egw-app {
flex-direction: column;
overflow-y:hidden;
}
& > div[id] > div {
/* Application template gets full height */
& > div[id] > div, & > div[id] > et2-template {
height: 100%;
}
}