From 9774df238681d17096fe427047a14e70cece2a0a Mon Sep 17 00:00:00 2001 From: Philipp Schafft Date: Thu, 3 Mar 2022 09:13:23 +0000 Subject: [PATCH] Fix: Corrected CSS for long data in tables --- web/assets/css/style.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/web/assets/css/style.css b/web/assets/css/style.css index 1a130624..0240029d 100644 --- a/web/assets/css/style.css +++ b/web/assets/css/style.css @@ -255,6 +255,11 @@ section.box table tbody tr:hover { background-color: #cccccc; } +section.box table tr td { + overflow-wrap: break-word; + vertical-align: top; +} + section.box table.table-keys tr > * { padding: 0.4em 1.5em; }