Added links to user profile for banned/moderators

This commit is contained in:
Kenneth Jao 2016-09-05 17:19:04 -04:00
parent 6a7f69f65c
commit bee59d458c
2 changed files with 5 additions and 5 deletions

View File

@ -583,12 +583,12 @@
display: table;
}
.email {
.email, .realname {
margin-right: 5%;
}
.realname {
margin-right: 5%;
.email:hover, .realname:hover {
text-decoration: underline;
}
.classBox .fa-times {

View File

@ -270,8 +270,8 @@
<template name="userDisplay">
<div class="userBox" userid="{{_id}}">
<span class="email">{{email}}</span>
<span class="realname">{{name}}</span>
<span class="email" onclick="window.location='/user/{{email}}'">{{email}}</span>
<span class="realname" onclick="window.location='/user/{{email}}'">{{name}}</span>
<i class="fa fa-times" aria-hidden="true"></i>
</div>
</template>