mirror of
https://github.com/aljazceru/debug-rss.git
synced 2025-12-18 10:04:20 +01:00
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:
10
index.html
10
index.html
@@ -250,6 +250,16 @@
|
|||||||
text-decoration: underline;
|
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 {
|
.raw-xml {
|
||||||
background: #1e1e1e;
|
background: #1e1e1e;
|
||||||
color: #d4d4d4;
|
color: #d4d4d4;
|
||||||
|
|||||||
Reference in New Issue
Block a user