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

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