From f58e171a691db7b17263dc6d0e04e6fa7f8d21e2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=A9mie=20Astori?= Date: Fri, 6 Jul 2018 02:00:43 -0400 Subject: [PATCH] Fix incorrect left padding for highlights on mobile --- client/css/style.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/client/css/style.css b/client/css/style.css index b8daef10..6aee2f39 100644 --- a/client/css/style.css +++ b/client/css/style.css @@ -2463,6 +2463,10 @@ part/quit messages where we don't load previews (adds a blank line otherwise) */ padding: 0; } + #chat .channel .message.highlight { + padding-left: 5px; + } + #chat .channel .message.highlight .time { padding-left: 0; }