From e9dae569ccfa037dc137331d295884866213d189 Mon Sep 17 00:00:00 2001 From: Hypolite Petovan Date: Wed, 5 Mar 2025 19:07:10 -0500 Subject: [PATCH] [frio] Fix Safari bug where notification icon jumps to next line --- view/theme/frio/css/style.css | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/view/theme/frio/css/style.css b/view/theme/frio/css/style.css index 7bd9a165ea..e20add6d67 100644 --- a/view/theme/frio/css/style.css +++ b/view/theme/frio/css/style.css @@ -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;