Truncate long debug messages

pull/4944/head
GogoVega 2024-10-23 23:10:09 +02:00
parent 83acc4836b
commit 702bf3d547
No known key found for this signature in database
GPG Key ID: E1E048B63AC5AC2B
1 changed files with 8 additions and 1 deletions

View File

@ -131,6 +131,10 @@
}
.red-ui-debug-msg-topic {
display: block;
max-width: 100%;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
color: var(--red-ui-debug-message-text-color-meta);
}
.red-ui-debug-msg-name {
@ -233,7 +237,10 @@
.red-ui-debug-msg-type-number-toggle { cursor: pointer;}
.red-ui-debug-msg-type-string {
white-space: pre-wrap;
display: block;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
.red-ui-debug-msg-row {