Merge pull request #9225 from MrPetovan/bug/9136-frio-firefox-hovercard

[frio] Fix Firefox-specific bug where top-level post heading div would cover the avatar
2022.09-rc
Michael Vogel 2020-09-18 05:21:18 +02:00 zatwierdzone przez GitHub
commit 39c5acb4b4
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
1 zmienionych plików z 6 dodań i 0 usunięć

Wyświetl plik

@ -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;