From 8d371a5ed96fc9cd57a05eb6037a95d11f73106e Mon Sep 17 00:00:00 2001 From: Michael Smith Date: Sat, 13 Jun 2015 22:18:44 +0200 Subject: [PATCH] Fixes problem with Firefox breaking long lines between any random character. References #624. Firefox would break long lines in the middle of words, disregarding hyphenation rules resulting in poor readability. This change fixes that behaviour while still preventing very long unbreakable strings from showing a horizontal scrollbar. Tested in Firefox 38.0.5 and Google Chrome 43.0.2357.124 (64-bit) --- css/glowingbear.css | 2 -- 1 file changed, 2 deletions(-) diff --git a/css/glowingbear.css b/css/glowingbear.css index 46e1243..f72e486 100644 --- a/css/glowingbear.css +++ b/css/glowingbear.css @@ -34,13 +34,11 @@ td.message { padding: 1px 1px 1px 5px; -ms-word-break: break-all; - word-break: break-all; /* Non standard for webkit */ word-break: break-word; -webkit-hyphens: auto; - -moz-hyphens: auto; -ms-hyphens: auto; hyphens: auto;