From b5da347a673e7ac7aea9e4e6ac4c48d9efa191b5 Mon Sep 17 00:00:00 2001 From: Yohan Boniface Date: Thu, 9 May 2024 17:07:33 +0200 Subject: [PATCH] fix: adapt panel expanded height when map has a caption bar cf #1788 --- umap/static/umap/css/panel.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/umap/static/umap/css/panel.css b/umap/static/umap/css/panel.css index aa9f2670..9759de54 100644 --- a/umap/static/umap/css/panel.css +++ b/umap/static/umap/css/panel.css @@ -139,4 +139,8 @@ border-bottom-left-radius: 0; border-bottom-right-radius: 0; } + .umap-caption-bar-enabled .panel.expanded { + height: calc(100% - var(--footer-height)); + max-height: calc(100% - var(--footer-height)); + } }