From abeb79a93f40f7555f33d6b2bd55bae4a721ad1c Mon Sep 17 00:00:00 2001 From: Claude Date: Thu, 2 Apr 2026 12:12:08 +0000 Subject: [PATCH] Wrap long mapping values instead of truncating with ellipsis https://claude.ai/code/session_01CwcZK8nqL8pyBH9AxDs9qo --- src/options/options.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/options/options.css b/src/options/options.css index 4c9a11e..699ba36 100644 --- a/src/options/options.css +++ b/src/options/options.css @@ -80,7 +80,7 @@ header h1 { font-size: 24px; font-weight: 600; } text-transform: uppercase; letter-spacing: 0.5px; color: #6b7280; padding: 8px 10px; border-bottom: 1px solid #e5e7eb; } -.mapping-table td { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; } +.mapping-table td { word-break: break-all; } .mapping-table td { padding: 8px 10px; border-bottom: 1px solid #f3f4f6; font-size: 13px; }