Changeset - f60a07dbe2f0
[Not reviewed]
beta
0 2 0
Marcin Kuzminski - 13 years ago 2013-03-02 21:31:02
marcin@python-works.com
notification inbox show subject
2 files changed with 8 insertions and 3 deletions:
0 comments (0 inline, 0 general)
rhodecode/public/css/style.css
Show inline comments
 
@@ -4643,25 +4643,25 @@ PULL REQUESTS
 
                                  DIFFS CSS
 
******************************************************************************/
 
.diff-collapse{
 
	text-align: center;
 
	margin-bottom: -15px;
 
}
 
.diff-collapse-button{
 
	cursor: pointer;
 
	color: #666;
 
	font-size: 16px;
 
}
 
.diff-container {
 
	
 

	
 
}
 

	
 
.diff-container.hidden{
 
	display: none;
 
	overflow: hidden;
 
}
 

	
 

	
 
div.diffblock {
 
    overflow: auto;
 
    padding: 0px;
 
    border: 1px solid #ccc;
 
@@ -4747,25 +4747,25 @@ div.diffblock pre.raw {
 
    color:#000000;
 
}
 
table.code-difftable {
 
    border-collapse: collapse;
 
    width: 99%;
 
    border-radius: 0px !important;
 
}
 
table.code-difftable td {
 
    padding: 0 !important;
 
    background: none !important;
 
    border:0 !important;
 
    vertical-align: none !important;
 
    
 

	
 
}
 
table.code-difftable .context {
 
    background:none repeat scroll 0 0 #DDE7EF;
 
}
 
table.code-difftable .add {
 
    background:none repeat scroll 0 0 #DDFFDD;
 
}
 
table.code-difftable .add ins {
 
    background:none repeat scroll 0 0 #AAFFAA;
 
    text-decoration:none;
 
}
 
table.code-difftable .del {
rhodecode/templates/admin/notifications/show_notification.html
Show inline comments
 
@@ -30,25 +30,30 @@
 
      <div id="notification_${c.notification.notification_id}">
 
        <div class="notification-header">
 
          <div class="gravatar">
 
              <img alt="gravatar" src="${h.gravatar_url(h.email_or_none(c.notification.created_by_user.email),24)}"/>
 
          </div>
 
          <div class="desc">
 
              ${c.notification.description}
 
          </div>
 
          <div class="delete-notifications">
 
            <span id="${c.notification.notification_id}" class="delete-notification delete_icon action"></span>
 
          </div>
 
        </div>
 
        <div class="notification-body">${h.rst_w_mentions(c.notification.body)}</div>
 
        <div class="notification-body">
 
        <div class="notification-subject">${h.literal(c.notification.subject)}</div>
 
        %if c.notification.body:
 
            ${h.rst_w_mentions(c.notification.body)}
 
        %endif
 
        </div>
 
      </div>
 
    </div>
 
</div>
 
<script type="text/javascript">
 
var url = "${url('notification', notification_id='__NOTIFICATION_ID__')}";
 
var main = "${url('notifications')}";
 
   YUE.on(YUQ('.delete-notification'),'click',function(e){
 
       var notification_id = e.currentTarget.id;
 
       deleteNotification(url,notification_id,[function(){window.location=main}])
 
   })
 
</script>
 
</%def>
0 comments (0 inline, 0 general)