summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xpublic/assets/stylesheets/app.css10
-rw-r--r--views/partials/header.ejs4
2 files changed, 11 insertions, 3 deletions
diff --git a/public/assets/stylesheets/app.css b/public/assets/stylesheets/app.css
index 5ca5a16..d672465 100755
--- a/public/assets/stylesheets/app.css
+++ b/public/assets/stylesheets/app.css
@@ -65,7 +65,14 @@ a{
left: 0;
z-index: 6;
}
-
+.topLinks a.icon-help-circled {
+ font-size: 24px;
+ padding: 21px 27px 0 8px;
+}
+.topLinks a.icon-help-circled:hover {
+ background:transparent;
+ color:red;
+}
.page #header {
background: white;
border-bottom: 1px solid;
@@ -2149,6 +2156,7 @@ a[data-role="forgot-password"] {
text-decoration: none;
font-size: 14px;
}
+
.page h1 {
font-size: 26px;
padding: 10px 0 15px 0;
diff --git a/views/partials/header.ejs b/views/partials/header.ejs
index 8a5036b..43bcc49 100644
--- a/views/partials/header.ejs
+++ b/views/partials/header.ejs
@@ -53,7 +53,6 @@
<span class="topLinks">
[[ if (logged_in) { ]]
-
[[ if (user.isStaff) { ]]
<a href="/layout" data-role="show-layouts-modal" class="topLink">Layouts</a>
[[ } ]]
@@ -68,7 +67,8 @@
[[ } else if (! profile) { ]]
<a href="/profile" class="topLink">Profile</a>
[[ } ]]
-
+ <a href="#" class="icon-help-circled"></a>
+
[[ } else { ]]
<a href="/signup" data-role="show-signup-modal" class="signUp topLink">Sign Up</a>
<a href="/login" data-role="show-signin-modal" class="signIn topLink">Sign In</a>