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
 
@@ -4649,13 +4649,13 @@ PULL REQUESTS
 
.diff-collapse-button{
 
	cursor: pointer;
 
	color: #666;
 
	font-size: 16px;
 
}
 
.diff-container {
 
	
 

	
 
}
 

	
 
.diff-container.hidden{
 
	display: none;
 
	overflow: hidden;
 
}
 
@@ -4753,13 +4753,13 @@ table.code-difftable {
 
}
 
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;
rhodecode/templates/admin/notifications/show_notification.html
Show inline comments
 
@@ -36,13 +36,18 @@
 
              ${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')}";
0 comments (0 inline, 0 general)