stop overflowing of messages in admin logs view

This commit is contained in:
Hannes Heute 2024-07-02 22:29:08 +02:00
parent d6b9858143
commit 01d1dc4f53
2 changed files with 11 additions and 3 deletions

View file

@ -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 {

View file

@ -59,7 +59,7 @@
</thead>
<tbody>
{{foreach $data as $row}}
<tr id="ev-{{$row->id}}" class="log-event"
<tr id="ev-{{$row->id}}" class="log-event"
role="button" tabIndex="0"
aria-label="{{$l10n.View_details}}" aria-haspopup="true" aria-expanded="false"
data-data="{{$row->data}}" data-source="{{$row->source}}">
@ -76,7 +76,7 @@
{{/if}}
">{{$row->level}}</td>
<td>{{$row->context}}</td>
<td style="width:80%">{{$row->message}}</td>
<td class="log-message">{{$row->message}}</td>
</tr>
{{/foreach}}
</tbody>