Skip to content

Commit

Permalink
style of user list fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
ignatov committed Aug 18, 2011
1 parent 96d9cbd commit d4b114e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -382,7 +382,7 @@ object User extends User with KeyedMetaMapper[Long, User] {
<ul>
{
User.findAll(OrderBy(User.userName, Ascending)) map { u =>
<li class={"ui-selectee" + (if (u.deleted_?) " deleted" else if (u.banned.is) " banned" else "")}>
<li class={"ui-selectee ui-corner-all" + (if (u.deleted_?) " deleted" else if (u.banned.is) " banned" else "")}>
<div class="profile_link">
{
Gravatar(u.email, 16) ++
Expand Down

0 comments on commit d4b114e

Please sign in to comment.