From e102dc14aa4ee0d1a0c846c56acafe116f155efd Mon Sep 17 00:00:00 2001 From: Georgy Litvinov Date: Thu, 14 Dec 2023 17:59:15 +0100 Subject: [PATCH] style fixes --- webapp/src/main/webapp/css/audit/audit.css | 22 ++++++++++++++++++++-- 1 file changed, 20 insertions(+), 2 deletions(-) diff --git a/webapp/src/main/webapp/css/audit/audit.css b/webapp/src/main/webapp/css/audit/audit.css index af23075ee3..d5b6394018 100644 --- a/webapp/src/main/webapp/css/audit/audit.css +++ b/webapp/src/main/webapp/css/audit/audit.css @@ -7,11 +7,29 @@ section#audit table.history { border: 1px solid gray; width: 100%; } +tbody tr td:nth-child(1) { + min-width: 2em; +} + +tbody tr td:nth-child(2) { + max-width: 10em; + word-break: break-word ; +} -section#audit table.history th{ +tbody tr td:nth-child(3) { + max-width: 7em; + word-break: break-word ; +} + +section#audit table.history th { font-weight: bolder; } -section#audit table.history td{ +section#audit table.history td { padding: 2px 5px 2px 5px; } + +section#audit table.history pre { + line-height: normal; + white-space: break-spaces; +}