From d9ab4acd8f52a3603f6b9881b717da195043de55 Mon Sep 17 00:00:00 2001 From: pezcurrel Date: Mon, 21 Aug 2023 10:55:49 +0200 Subject: [PATCH] Fixed overflow when long strings where present --- web/site/css/instances.css | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/web/site/css/instances.css b/web/site/css/instances.css index c062ae3..b3a44ee 100644 --- a/web/site/css/instances.css +++ b/web/site/css/instances.css @@ -16,6 +16,7 @@ img { } .ihead { width: 100%; + max-width: 100%; text-align: center; font-size: 14pt; font-weight: bold; @@ -33,6 +34,7 @@ img { } .ibody { width: 100%; + max-width: 100%; font-size: 11pt; line-height: 1.6; background-color: #b7bec8; @@ -49,6 +51,7 @@ img { } .idesc, .inote, .istat, .noxreas { width: 100%; + max-width: 100%; max-height: 205px; overflow: auto; border: 1px solid #dbdee3; @@ -59,6 +62,10 @@ img { padding-top: 2px; line-height: 1.4; } +.idesc { + word-break: normal; + overflow-wrap: anywhere; +} .istat { padding: 6px; }