diff --git a/database/backends/PostgresSmartBackend.php b/database/backends/PostgresSmartBackend.php
index e08a1ca96049bee8473a2c369644a9a455f661ac..99f648348600fd162a902aea2d90b1ce85c1c606 100644
--- a/database/backends/PostgresSmartBackend.php
+++ b/database/backends/PostgresSmartBackend.php
@@ -206,7 +206,7 @@ class PostgresSmartBackend implements Backend
                    backlog.type,
                    backlog.time,
                    network.networkname,
-                   replace(replace(replace(backlog.message, '&', '&amp;'), '<', '&lt;'), '>', '&gt;') AS message
+                   backlog.message
             FROM
               backlog
               JOIN sender ON backlog.senderid = sender.senderid
@@ -230,7 +230,7 @@ class PostgresSmartBackend implements Backend
                    backlog.type,
                    backlog.time,
                    network.networkname,
-                   replace(replace(replace(backlog.message, '&', '&amp;'), '<', '&lt;'), '>', '&gt;') AS message
+                   backlog.message
             FROM
               backlog
               JOIN sender ON backlog.senderid = sender.senderid
diff --git a/res/css/_content.sass b/res/css/_content.sass
index 98ca7e56fa949b1512c684996c763c74fe82c698..eaa15229471cbb19c4569a2d451ee127c9d16397 100644
--- a/res/css/_content.sass
+++ b/res/css/_content.sass
@@ -191,7 +191,7 @@
 
         &.focus
           padding: 0
-          margin: 1rem -1rem
+          margin: 0.5rem -0.5rem
 
           @media(max-width: 800px)
             margin: 1rem 0
diff --git a/res/css/search.css b/res/css/search.css
index 5fee15f5bdfe2490d3e46f3396d8a33b5cbccfab..8179b4d5815d97887e5b62615d0df63cc84befe1 100644
--- a/res/css/search.css
+++ b/res/css/search.css
@@ -1070,7 +1070,7 @@ body {
         position: relative; }
         .results .buffer .container .context.focus {
           padding: 0;
-          margin: 1rem -1rem; }
+          margin: 0.5rem -0.5rem; }
           @media (max-width: 800px) {
             .results .buffer .container .context.focus {
               margin: 1rem 0; } }