Changeset - a66198aa9e84
[Not reviewed]
beta
0 2 0
Marcin Kuzminski - 13 years ago 2013-02-01 01:16:45
marcin@python-works.com
make unread also a link, constantly was clicking that
- make the links and hover same as other links in that menu
2 files changed with 9 insertions and 2 deletions:
0 comments (0 inline, 0 general)
rhodecode/public/css/style.css
Show inline comments
 
@@ -2133,8 +2133,15 @@ a.metatag[tag="license"]:hover {
 
    color: #FFFFFF;
 
    font-weight: bold;
 
}
 
#quick_login .notifications a {
 
#quick_login .notifications a,
 
#quick_login .unread a {
 
    color: #FFFFFF;
 
    display: block;
 
    padding: 2px;    
 
}
 
#quick_login .notifications a:hover,
 
#quick_login .unread a:hover {
 
    background-color: inherit !important;
 
}
 
#quick_login .email, #quick_login .unread {
 
    color: #FFFFFF;
rhodecode/templates/base/base.html
Show inline comments
 
@@ -122,7 +122,7 @@
 
                <div class="email">${c.rhodecode_user.email}</div>
 
                <div class="big_gravatar"><img alt="gravatar" src="${h.gravatar_url(c.rhodecode_user.email,48)}" /></div>
 
                <div class="notifications"><a href="${h.url('notifications')}">${_('Notifications')}</a></div>
 
                <div class="unread">${_('Unread')}: ${c.unread_notifications}</div>
 
                <div class="unread"><a href="${h.url('notifications')}">${_('Unread')}: ${c.unread_notifications}</a></div>
 
            </div>
 
            <div class="links_right">
 
            <ol class="links">
0 comments (0 inline, 0 general)