From 2a55548b844712c1add2cfcbf3c6a371777f83e4 Mon Sep 17 00:00:00 2001 From: virtuacoplenny Date: Fri, 13 Apr 2018 10:15:29 -0700 Subject: [PATCH] fix(info): hide anchor hover colors for the call url (#2807) The call url is an anchor element so that right clicking it can bring up the copy link option in the context menu. Clicking on it does a no-op so the anchor was colored to look like plain text. Hovering over it right now makes it look like an anchor due to some atlaskit color, so supress the coloring. --- css/modals/invite/_info.scss | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/css/modals/invite/_info.scss b/css/modals/invite/_info.scss index 0bf39d666..b5c849fb5 100644 --- a/css/modals/invite/_info.scss +++ b/css/modals/invite/_info.scss @@ -81,7 +81,8 @@ font-size: 16px; } - .info-dialog-invite-link { + .info-dialog-invite-link, + .info-dialog-invite-link:hover { color: inherit; cursor: inherit; }