From 77b45f6b24489b984f5bc6b3beab5362cc8b660f Mon Sep 17 00:00:00 2001 From: sylvarn <36841179+wnku@users.noreply.github.com> Date: Thu, 14 May 2020 10:01:09 +0100 Subject: [PATCH] 3.3: Enabling 2-column layout on Firefox the -moz- prefix css hack has not worked since 2018 and Firefox has been displaying as 1 column since. Fixing this -rory --- newparp/static/css/newparp.css | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/newparp/static/css/newparp.css b/newparp/static/css/newparp.css index 52fc67fb..43c1e1ad 100644 --- a/newparp/static/css/newparp.css +++ b/newparp/static/css/newparp.css @@ -1966,7 +1966,6 @@ body:not(.no_forms) .content_boxes .input {margin-left:4px;margin-top:3px} -webkit-transform: rotate(360deg); } -/* overflow:hidden prevents column breaks in Firefox. */ /* prevent this from parsing in Chrome for now as Chrome 45+ does not fully render secondary columns with it applied */ @-moz-document url-prefix() { #group_chats li {overflow:hidden;} @@ -1976,7 +1975,7 @@ body:not(.no_forms) .content_boxes .input {margin-left:4px;margin-top:3px} @media (min-width: 1165px) { #filter_chats {max-width:100%} /* disable this for smaller and mobile layouts, as it breaks old devices */ - #group_chats { -moz-column-width: 500px; -moz-column-gap: 20px; -webkit-column-width: 500px; -webkit-column-gap: 20px; } + #group_chats { column-width: 500px; column-gap: 20px; -webkit-column-width: 500px; -webkit-column-gap: 20px; } } /* 3.4. Your chats */