summaryrefslogtreecommitdiff
path: root/client
diff options
context:
space:
mode:
authorMarkus Heiser <markus.heiser@darmarit.de>2025-03-15 17:49:25 +0100
committerMarkus Heiser <markus.heiser@darmarIT.de>2025-03-27 12:27:37 +0100
commit68d871dea0570d1ce1ac2c6b1bf50cefb6d09fab (patch)
treee57b0daca101708ca037b3fec5dcd86d2ddfba61 /client
parent150b2e21fdcc06492b7d78bbcb91fbcc037a7831 (diff)
[fix] image deatils view: vertical overflow in results.image-detail-open
overflow-y: scroll If the information on the image exceeds the visible area in the detail view, there must be a way to access this information via scroll. max-height: -17rem versus 7rem There are new fields in the lower area, so the height of the image (top) must be reduced Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
Diffstat (limited to 'client')
-rw-r--r--client/simple/src/less/detail.less3
1 files changed, 2 insertions, 1 deletions
diff --git a/client/simple/src/less/detail.less b/client/simple/src/less/detail.less
index 535af4afd..b09052c88 100644
--- a/client/simple/src/less/detail.less
+++ b/client/simple/src/less/detail.less
@@ -24,6 +24,7 @@ article.result-images .detail {
border: 1px solid var(--color-result-detail-background);
z-index: 1000;
padding: 4rem 3rem 3rem 3rem;
+ overflow-y: scroll;
a.result-images-source {
display: block;
@@ -42,7 +43,7 @@ article.result-images .detail {
height: inherit;
max-width: 100%;
min-height: inherit;
- max-height: calc(100vh - 25rem - 7rem);
+ max-height: calc(100vh - 25rem - 17rem);
background: inherit;
}
}