HoverCard: Prevent floating avatars from intercepting with current card

This commit is contained in:
Alex Gleason 2020-08-02 22:13:32 -05:00
parent feec86718d
commit 4197e8e833
No known key found for this signature in database
GPG key ID: 7211D1F99744FBB7

View file

@ -98,3 +98,15 @@
left: 80px;
}
}
/* Prevent floating avatars from intercepting with current card */
.status,
.detailed-status {
.floating-link {
display: none;
}
&:hover .floating-link {
display: block;
}
}