From: Hypolite Petovan Date: Fri, 18 Sep 2020 02:19:51 +0000 (-0400) Subject: [frio] Fix Firefox-specific bug where top-level post heading div would cover the... X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=75b91479452421c330c79241f7bfecde39039e08;p=friendica.git [frio] Fix Firefox-specific bug where top-level post heading div would cover the avatar --- diff --git a/view/theme/frio/css/style.css b/view/theme/frio/css/style.css index bf2123baaf..c8fc42ad6d 100644 --- a/view/theme/frio/css/style.css +++ b/view/theme/frio/css/style.css @@ -1503,6 +1503,12 @@ aside .panel-body { position: relative; } +/* Workaround for Firefox where the post heading covers the avatar, preventing hovercard interaction, + 48px is the width of the avatar image and should be adjusted accordingly if it ever changes. */ +.media .dropdown.pull-left + [role=heading] { + margin-left: 48px; +} + .preferences { position: absolute; right: 0;