From 67af7ef3fe17310b2044c250fc601d270e3dc0d2 Mon Sep 17 00:00:00 2001 From: Pavel Djundik Date: Tue, 28 Nov 2017 12:26:50 +0200 Subject: [PATCH] Fix <> appearing for nicks in chat messages on mobile --- theme.css | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/theme.css b/theme.css index 2eaa1c8..e5f54fe 100644 --- a/theme.css +++ b/theme.css @@ -274,6 +274,10 @@ body { color: #f0c079; } +#chat .msg .text .user { + border-bottom: 1px dotted #555; +} + #chat .channel .highlight, #chat .channel .highlight .time, #chat .channel .highlight .from, @@ -288,10 +292,6 @@ body { border-color: #ad1457; } -#chat .msg .text .user { - border-bottom: 1px dotted #555; -} - #windows .header .topic, #chat table.channel-list td { color: #999; @@ -331,11 +331,11 @@ body { } @media (max-width: 479px) { - #chat .message .user::before { + #chat .message .from .user::before { content: "<"; } - #chat .message .user::after { + #chat .message .from .user::after { content: ">"; } }