ajout et relookage du bouton connexion

This commit is contained in:
Pierre 2020-12-01 11:36:33 +01:00
parent c294143d01
commit 45feca0c10
3 changed files with 12 additions and 7 deletions

View file

@ -723,12 +723,12 @@ body{
} }
.btn.bouton-login{ .btn.bouton-login{
background: $couleur-liens; background: $fond-transparent;
border-radius: 0.2rem; border-radius: 0.2rem;
color: #333 !important;
&:hover{
color: black; color: black;
background-color: $page-active; &:hover{
color: white;
background-color: $couleur-liens;
} }
} }

View file

@ -12699,13 +12699,13 @@ body {
} }
.btn.bouton-login { .btn.bouton-login {
background: #C84227; background: rgba(255, 255, 255, 0.92);
border-radius: 0.2rem; border-radius: 0.2rem;
color: #333 !important; color: black;
} }
.btn.bouton-login:hover { .btn.bouton-login:hover {
color: black; color: white;
background-color: #C84227; background-color: #C84227;
} }

View file

@ -97,6 +97,11 @@
if (!isset($GLOBALS['visiteur_session']['id_auteur'])) { if (!isset($GLOBALS['visiteur_session']['id_auteur'])) {
?> ?>
<ul class="nav a-droite"> <ul class="nav a-droite">
<li class="separ">
<a class="btn bouton-login" href="[(#URL_PAGE{espace_membre})]" rel="nofollow" title="Connexion">
<i class="fas fa-user"></i> Espace membre
</a>
</li>
<?php <?php
} }
?> ?>