diff options
| author | ryderr <r@okfoc.us> | 2014-10-02 16:47:10 -0400 |
|---|---|---|
| committer | ryderr <r@okfoc.us> | 2014-10-02 16:47:10 -0400 |
| commit | a509d206fa660d43b32478b4e6fb715bbd42b7bb (patch) | |
| tree | c0207510e486a43a38b21372b104132e718b1663 | |
| parent | e6dbfff54e2a97fbb539cab9ef9dd7945d74e0bc (diff) | |
footer hover state
| -rwxr-xr-x | public/assets/stylesheets/app.css | 4 | ||||
| -rw-r--r-- | views/partials/footer.ejs | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/public/assets/stylesheets/app.css b/public/assets/stylesheets/app.css index 757f1df..f3f1e37 100755 --- a/public/assets/stylesheets/app.css +++ b/public/assets/stylesheets/app.css @@ -455,6 +455,10 @@ iframe.embed { font-size: 13px; } +.footer a:hover{ + text-decoration:underline; +} + /* PROFILE PAGE */ .profilePic { diff --git a/views/partials/footer.ejs b/views/partials/footer.ejs index 3f816f0..3ee4afc 100644 --- a/views/partials/footer.ejs +++ b/views/partials/footer.ejs @@ -12,7 +12,7 @@ <span> you are signed in as → - <a href="/profile/[[- user.username ]]">[[- user.displayName ]]</a> + <a href="/profile/[[- user.username ]]"><b>[[- user.displayName ]]</b></a> [[ if (user.isStaff) { ]] <a href="/staff">Staff Area</a> [[ } ]] |
