From b59322842c2896e622be4bdd7d015f208844ea86 Mon Sep 17 00:00:00 2001 From: fredtempez Date: Thu, 7 Feb 2019 17:57:41 +0100 Subject: [PATCH] =?UTF-8?q?Correct=20Menu=20connect=C3=A9=20sticky=20et=20?= =?UTF-8?q?noon=20fixed?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- core/layout/common.css | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/core/layout/common.css b/core/layout/common.css index c3bacbdb..058a8f66 100755 --- a/core/layout/common.css +++ b/core/layout/common.css @@ -405,16 +405,16 @@ nav a:hover { /* Barre de navigation fixe quand le menu est en-dehors du site */ #navfixedlogout { position: fixed; - top:0; + top:0px; z-index:18; width:100%; } #navfixedconnected { - position: fixed; - top:45; + top:45px; z-index:18; - width:100%; + position: -webkit-sticky; /* Safari */ + position: sticky; }