Merge pull request #2 from aljazceru/claude/fix-field-text-overflow-01Jtwz7Um6dNLzzEee3MwQXz

Fix text overflow in form fields
This commit is contained in:
2025-11-23 07:17:18 +01:00
committed by GitHub

View File

@@ -188,6 +188,7 @@
padding: 10px; padding: 10px;
background: #f9f9f9; background: #f9f9f9;
border-radius: 5px; border-radius: 5px;
overflow: hidden;
} }
.meta-label { .meta-label {
@@ -198,6 +199,8 @@
.meta-value { .meta-value {
color: #333; color: #333;
word-break: break-word; word-break: break-word;
overflow-wrap: break-word;
max-width: 100%;
} }
.item { .item {
@@ -218,6 +221,7 @@
padding: 8px; padding: 8px;
background: white; background: white;
border-radius: 3px; border-radius: 3px;
overflow: hidden;
} }
.field-name { .field-name {
@@ -231,11 +235,15 @@
color: #555; color: #555;
font-size: 14px; font-size: 14px;
word-break: break-word; word-break: break-word;
overflow-wrap: break-word;
max-width: 100%;
} }
.field-value a { .field-value a {
color: #667eea; color: #667eea;
text-decoration: none; text-decoration: none;
word-break: break-all;
overflow-wrap: break-word;
} }
.field-value a:hover { .field-value a:hover {