Fixes #3448: Webhook http log overflows out of browser borders
This commit is contained in:
parent
d9f4b93f48
commit
017a0b1d96
2 changed files with 15 additions and 2 deletions
|
@ -1,5 +1,5 @@
|
||||||
<div class="settings-entry">
|
<div class="settings-entry">
|
||||||
<table class="settings-list" style="width: 100%;">
|
<table class="settings-list u-overflow-wrap" style="width: 100%;">
|
||||||
<tbody>
|
<tbody>
|
||||||
<tr>
|
<tr>
|
||||||
<td width="20%"><%- @T('Direction') %>
|
<td width="20%"><%- @T('Direction') %>
|
||||||
|
|
|
@ -234,6 +234,15 @@ ol, ul {
|
||||||
cursor: not-allowed;
|
cursor: not-allowed;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.u-overflow-wrap {
|
||||||
|
word-break: break-word;
|
||||||
|
|
||||||
|
@supports (overflow-wrap: anywhere) {
|
||||||
|
overflow-wrap: anywhere;
|
||||||
|
word-break: unset;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
.zIndex-1 {
|
.zIndex-1 {
|
||||||
z-index: 100;
|
z-index: 100;
|
||||||
}
|
}
|
||||||
|
@ -9980,6 +9989,10 @@ output {
|
||||||
word-break: normal;
|
word-break: normal;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
td {
|
||||||
|
word-break: break-all;
|
||||||
|
}
|
||||||
|
|
||||||
td.empty-cell {
|
td.empty-cell {
|
||||||
border-top: none;
|
border-top: none;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue