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.
This commit is contained in:
virtuacoplenny 2018-04-13 10:15:29 -07:00 committed by bbaldino
parent 8f142d5ec4
commit 2a55548b84
1 changed files with 2 additions and 1 deletions

View File

@ -81,7 +81,8 @@
font-size: 16px;
}
.info-dialog-invite-link {
.info-dialog-invite-link,
.info-dialog-invite-link:hover {
color: inherit;
cursor: inherit;
}