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:
parent
8f142d5ec4
commit
2a55548b84
|
@ -81,7 +81,8 @@
|
|||
font-size: 16px;
|
||||
}
|
||||
|
||||
.info-dialog-invite-link {
|
||||
.info-dialog-invite-link,
|
||||
.info-dialog-invite-link:hover {
|
||||
color: inherit;
|
||||
cursor: inherit;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue