Fix HTML content wrapping in description fields

- Add white-space: pre-wrap to .field-value pre elements
- Enable word-wrap and overflow-wrap for long HTML content
- Ensures description field content wraps within window instead of overflowing horizontally
This commit is contained in:
Claude
2025-11-23 06:26:04 +00:00
parent 9d654b2c1a
commit 26b64baded

View File

@@ -250,6 +250,16 @@
text-decoration: underline;
}
.field-value pre {
white-space: pre-wrap;
word-wrap: break-word;
overflow-wrap: break-word;
margin: 0;
font-family: 'Courier New', monospace;
font-size: 13px;
max-width: 100%;
}
.raw-xml {
background: #1e1e1e;
color: #d4d4d4;