From e98c837433b0fca02a305e6d93f0eb9e0a60123b Mon Sep 17 00:00:00 2001 From: Jeremy Zhang Date: Sat, 11 Nov 2017 00:30:58 +0000 Subject: [PATCH] Discord mentions highlighted like channel names --- webapp/titanembeds/static/css/embedstyle.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/webapp/titanembeds/static/css/embedstyle.css b/webapp/titanembeds/static/css/embedstyle.css index ea1ef46..08a93d8 100644 --- a/webapp/titanembeds/static/css/embedstyle.css +++ b/webapp/titanembeds/static/css/embedstyle.css @@ -510,14 +510,14 @@ p.mentioned span.chatmessage { margin-bottom: 3px; } -.chatmessage .channellink { +.chatmessage .channellink, .chatmessage .discordmention { border-radius: 5px; background-color: rgba(0, 0, 0, 0.2); color: #82b1ff; cursor: pointer; } -.chatmessage .channellink:hover { +.chatmessage .channellink:hover, .chatmessage .discordmention:hover { background-color: rgba(0, 0, 0, 0.5); color: white; }