diff --git a/app/assets/stylesheets/style.css.scss b/app/assets/stylesheets/style.css.scss index 7ab7341..8576c63 100644 --- a/app/assets/stylesheets/style.css.scss +++ b/app/assets/stylesheets/style.css.scss @@ -430,6 +430,10 @@ blockquote p { color: #888 !important; } + &.unconfirmed { + color: #bbb !important; + } + &:hover { color: #ddd !important; } diff --git a/app/views/users/_username.html.erb b/app/views/users/_username.html.erb index 616cd3b..ef094e2 100644 --- a/app/views/users/_username.html.erb +++ b/app/views/users/_username.html.erb @@ -1,4 +1,4 @@
- <%= link_to user.name, user_path(user.id), class: "role #{user.role.name} #{"banned" if user.banned?} #{"disabled" if user.disabled?}", title: user.ign %> + <%= link_to user.name, user_path(user.id), class: "role #{user.role.name} #{"banned" if user.banned?} #{"disabled" if user.disabled?} #{"unconfirmed" unless user.confirmed?}", title: user.ign %> <%= link_to "$", donate_statics_path, class: "donor", title: "Donator" if user.donor? %>
\ No newline at end of file