From 23a9018988a9734bd48586e64d62254aef9b3078 Mon Sep 17 00:00:00 2001 From: Raphael Michel Date: Mon, 7 Sep 2020 11:10:11 +0200 Subject: [PATCH] Remove break-all from email CSS --- src/pretix/base/templates/pretixbase/email/base.html | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/pretix/base/templates/pretixbase/email/base.html b/src/pretix/base/templates/pretixbase/email/base.html index 1b31581b75..ff17e64891 100644 --- a/src/pretix/base/templates/pretixbase/email/base.html +++ b/src/pretix/base/templates/pretixbase/email/base.html @@ -71,12 +71,9 @@ /* These are technically the same, but use both */ overflow-wrap: break-word; word-wrap: break-word; + word-break: break-word; -ms-word-break: break-all; - /* This is the dangerous one in WebKit, as it breaks things wherever */ - word-break: break-all; - /* Instead use this non-standard one: */ - word-break: break-word; /* Adds a hyphen where the word breaks, if supported (No Blink) */ -ms-hyphens: auto;