mirror of
https://github.com/friendica/friendica
synced 2024-11-17 22:23:41 +00:00
stop overflowing of messages in admin logs view
This commit is contained in:
parent
d6b9858143
commit
01d1dc4f53
2 changed files with 11 additions and 3 deletions
|
@ -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 {
|
||||
|
|
|
@ -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>
|
||||
|
|
Loading…
Reference in a new issue