From 01d1dc4f53d0403e3d9f3056a6a0f3093bac4c2d Mon Sep 17 00:00:00 2001 From: Hannes Heute Date: Tue, 2 Jul 2024 22:29:08 +0200 Subject: [PATCH] stop overflowing of messages in admin logs view --- view/theme/frio/css/style.css | 10 +++++++++- view/theme/frio/templates/admin/logs/view.tpl | 4 ++-- 2 files changed, 11 insertions(+), 3 deletions(-) diff --git a/view/theme/frio/css/style.css b/view/theme/frio/css/style.css index 3a44ab0d6f..4c562ba586 100644 --- a/view/theme/frio/css/style.css +++ b/view/theme/frio/css/style.css @@ -3324,10 +3324,18 @@ li.addon { #adminpage .addon .desc { padding-left: 10px; } +#adminpage td.log-message, +#logdetail td.log-message { + width: 80%; + word-break: break-all; +} +#logdetail td.log-message { + width: 80%; +} #admin-users #users tr.blocked { background-color: #f8efc0; } -.adminpage .table-hover > tbody > tr:hover + tr.details { +#adminpage .table-hover > tbody > tr:hover + tr.details { background-color: #f5f5f5; } .offset-anchor::before { diff --git a/view/theme/frio/templates/admin/logs/view.tpl b/view/theme/frio/templates/admin/logs/view.tpl index 4a5c77f53d..2b0a8c7204 100644 --- a/view/theme/frio/templates/admin/logs/view.tpl +++ b/view/theme/frio/templates/admin/logs/view.tpl @@ -59,7 +59,7 @@ {{foreach $data as $row}} - @@ -76,7 +76,7 @@ {{/if}} ">{{$row->level}} {{$row->context}} - {{$row->message}} + {{$row->message}} {{/foreach}}