styling on you

This commit is contained in:
Devin Howard 2016-11-24 11:43:50 -05:00
parent 46c563afb2
commit dbcd64bfe9
2 changed files with 14 additions and 0 deletions

View file

@ -837,6 +837,9 @@ label {
.accountApps .accountIcon {
background-position: 0 -32px;
}
.accountNotifications .accountIcon {
background-position: 0 0; /* TODO get a real icon */
}
.accountInvite .accountIcon {
background-position: 0 -64px;
}
@ -851,6 +854,10 @@ label {
.accountListItem:hover a {
color: #424242;
}
.accountNotifications.unread a {
color: #424242;
font-weight: 900;
}
.accountListItem:hover .accountIcon {
background-position-x: -32px;
}

View file

@ -45,4 +45,11 @@ module ApplicationHelper
end
false
end
def user_unread_notification_count
return 0 if current_user.nil?
current_user.mailboxer_notification_receipts.reduce(0) do |total, receipt|
receipt.is_read ? total : total + 1
end
end
end