From 3c8fa13ffe116f59ca9176cd8d22347b58f0f139 Mon Sep 17 00:00:00 2001 From: 4cdn <4cdn@users.noreply.github.com> Date: Sat, 7 Nov 2015 19:09:34 -0500 Subject: [PATCH] block-inline --> inline-block & cater to firefox MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 19:03:41.183 Error in parsing value for 'display'. Declaration dropped.1 site.css:44:13 19:03:41.183 Unknown property 'overflow-wrap'. Declaration dropped.1 site.css:45:14 "You might as well use word-wrap as well because as the spec says, they are literally just alternate names for each other. Some browsers support one and not the other. Firefox (tested v43) only supports word-wrap" —https://css-tricks.com/snippets/css/prevent-long-urls-from-breaking-out-of-container/ --- contrib/static/site.css | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/contrib/static/site.css b/contrib/static/site.css index d2ecacc..59f670b 100644 --- a/contrib/static/site.css +++ b/contrib/static/site.css @@ -41,8 +41,9 @@ pre { white-space: pre-wrap; background: #3f3f3f; color: #d17600; - display: block-inline; + display: inline-block; overflow-wrap: break-word; + word-wrap: break-word; } td { @@ -313,4 +314,4 @@ textarea#reply-text { hr { padding-bottom: 20px; -} \ No newline at end of file +}