Merge pull request #14841 from MrPetovan/bug/14801-safari-workaround

[frio] Fix Safari bug where notification icon jumps to next line
pull/14837/head
Michael Vogel 2025-03-06 05:02:57 +01:00 zatwierdzone przez GitHub
commit dc3dcb4a36
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: B5690EEEBB952194
1 zmienionych plików z 8 dodań i 0 usunięć

Wyświetl plik

@ -629,6 +629,14 @@ nav.navbar .nav > li > button:focus {
text-align: center;
z-index: 1;
}
/* Workaround for Safari bug where the notification icon jumps on the next line */
#topbar-first .topbar-nav .nav > li + li {
margin-left: 1px;
}
#topbar-first .topbar-nav .nav > li + li > a {
margin-left: -1px;
}
/* End workaround */
#topbar-first .topbar-nav .nav-segment {
position: relative;
text-align: left;