diff --git a/core/core.php b/core/core.php
index 8e08d200..1eaa2506 100644
--- a/core/core.php
+++ b/core/core.php
@@ -2234,8 +2234,12 @@ class layout extends common {
}
$rightItems .= '
' . template::ico('user', 'right') . $this->getUser('firstname') . ' ' . $this->getUser('lastname') . '';
$rightItems .= '' . template::ico('logout') . '';
- // Barre de membre
- echo '';
+ // Barre de membre pleine ou limitée selon les droits de l'utilisateur
+ if($this->getUser('group') === self::GROUP_MEMBER) {
+ echo '';
+ } else {
+ echo '';
+ }
}
}
diff --git a/core/layout/common.css b/core/layout/common.css
index 8166ef54..682aa49d 100755
--- a/core/layout/common.css
+++ b/core/layout/common.css
@@ -226,7 +226,7 @@ td > .col12 {
.container-large-fixed {
width: 100%;
position:fixed;
- z-index: 100;
+ z-index: 50;
}
/* Barre de membre */
@@ -236,6 +236,25 @@ td > .col12 {
margin: 0 -10px;
text-align: right;
}
+/* Barre pour les membres */
+#bar #barMember {
+ float: right;
+ font-size: .8em;
+ position: fixed;
+ z-index: 60;
+ right: 10px;
+ top: 10px;;
+ padding: 5px;
+ background: rgba(33, 34, 35, .8);
+ color: #FFF;
+ height: 55px;
+ -webkit-transition: background.3s ease-out;
+ transition: background .3s ease-out;
+ -moz-border-radius:10px;
+ -webkit-border-radius:10px;
+ border-radius:10px;
+}
+/* fin barre pour les membres */
#bar:after {
content: " ";
clear: both;