From 66f6a623d82e314ea85cdefef10ca9947a74bfc2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=A9mie=20Astori?= Date: Sat, 20 Aug 2016 00:23:56 -0400 Subject: [PATCH] Allow long URLs to break onto next line on Chrome This fixes a bug that displays a horizontal scrollbar and messes up with the layout when URLs (or text) is too long. Fix is Chrome-specific but so is the bug. --- client/css/style.css | 1 + 1 file changed, 1 insertion(+) diff --git a/client/css/style.css b/client/css/style.css index 7663d889..7e531b8e 100644 --- a/client/css/style.css +++ b/client/css/style.css @@ -815,6 +815,7 @@ button { #chat .msg { word-wrap: break-word; + word-break: break-word; /* Webkit-specific */ } #chat .unread-marker {