forked from ZwiiCMS-Team/ZwiiCMS
Suppression modif barre membre + menu sticky
This commit is contained in:
parent
10c51fee63
commit
80f448eb00
@ -2288,14 +2288,10 @@ class layout extends common {
|
|||||||
}
|
}
|
||||||
$rightItems .= '<li><a href="' . helper::baseUrl() . 'user/edit/' . $this->getUser('id'). '/' . $_SESSION['csrf'] . '" title="Configurer mon compte">' . template::ico('user', 'right') . $this->getUser('firstname') . ' ' . $this->getUser('lastname') . '</a></li>';
|
$rightItems .= '<li><a href="' . helper::baseUrl() . 'user/edit/' . $this->getUser('id'). '/' . $_SESSION['csrf'] . '" title="Configurer mon compte">' . template::ico('user', 'right') . $this->getUser('firstname') . ' ' . $this->getUser('lastname') . '</a></li>';
|
||||||
$rightItems .= '<li><a id="barLogout" href="' . helper::baseUrl() . 'user/logout" title="Se déconnecter">' . template::ico('logout') . '</a></li>';
|
$rightItems .= '<li><a id="barLogout" href="' . helper::baseUrl() . 'user/logout" title="Se déconnecter">' . template::ico('logout') . '</a></li>';
|
||||||
// Barre de membre pleine ou limitée selon les droits de l'utilisateur
|
// Barre de membre
|
||||||
if($this->getUser('group') === self::GROUP_MEMBER) {
|
|
||||||
echo '<div id="bar"><ul id="barMember">' . $rightItems . '</ul></div>';
|
|
||||||
} else {
|
|
||||||
echo '<div id="bar"><div class="container"><ul id="barLeft">' . $leftItems . '</ul><ul id="barRight">' . $rightItems . '</ul></div></div>';
|
echo '<div id="bar"><div class="container"><ul id="barLeft">' . $leftItems . '</ul><ul id="barRight">' . $rightItems . '</ul></div></div>';
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Affiche le script
|
* Affiche le script
|
||||||
|
@ -235,13 +235,20 @@ td > .col12 {
|
|||||||
padding-left: 5px; /* Pour éviter que le select touche le bord lorsque la fenêtre est redimensionnée */
|
padding-left: 5px; /* Pour éviter que le select touche le bord lorsque la fenêtre est redimensionnée */
|
||||||
margin: 0 -10px;
|
margin: 0 -10px;
|
||||||
text-align: right;
|
text-align: right;
|
||||||
|
position: -webkit-sticky; /* Safari */
|
||||||
|
position: sticky;
|
||||||
|
top: 0;
|
||||||
|
z-index: 19;
|
||||||
}
|
}
|
||||||
/* Barre pour les membres */
|
/* Barre pour les membres */
|
||||||
#bar #barMember {
|
#bar #barMember {
|
||||||
float: right;
|
float: right;
|
||||||
font-size: .8em;
|
font-size: .8em;
|
||||||
position: fixed;
|
position: fixed;
|
||||||
z-index: 60;
|
position: -webkit-sticky; /* Safari */
|
||||||
|
position: sticky;
|
||||||
|
top: 0;
|
||||||
|
z-index: 19;
|
||||||
right: 10px;
|
right: 10px;
|
||||||
top: 10px;;
|
top: 10px;;
|
||||||
padding: 5px;
|
padding: 5px;
|
||||||
|
Loading…
Reference in New Issue
Block a user