diff options
Diffstat (limited to 'phpBB/styles/subsilver2/template/overall_header.html')
-rw-r--r-- | phpBB/styles/subsilver2/template/overall_header.html | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/phpBB/styles/subsilver2/template/overall_header.html b/phpBB/styles/subsilver2/template/overall_header.html index e41095ad38..560f6a32b3 100644 --- a/phpBB/styles/subsilver2/template/overall_header.html +++ b/phpBB/styles/subsilver2/template/overall_header.html @@ -154,19 +154,22 @@ function marklist(id, name, state) <div id="notification_list" class="notification_list"> <table class="tablebg" width="310px" cellspacing="1"> <!-- BEGIN notifications --> - <tr> + <tr class="row<!-- IF notifications.UNREAD -->2<!-- ELSE -->1<!-- ENDIF -->"> <!-- IF notifications.AVATAR --> - <td class="row1" width="50px"> + <td width="50px"> {notifications.AVATAR} </td> - <td class="row1" valign="top"> + <td valign="top"> <!-- ELSE --> - <td class="row1" colspan="2" valign="top"> + <td colspan="2" valign="top"> <!-- ENDIF --> - <!-- IF notifications.URL or notifications.U_MARK_READ --><a href="<!-- IF notifications.UNREAD -->{notifications.U_MARK_READ}<!-- ELSE -->{notifications.URL}<!-- ENDIF -->"><!-- ENDIF --> + <!-- IF notifications.URL --><a href="<!-- IF notifications.UNREAD -->{notifications.U_MARK_READ}<!-- ELSE -->{notifications.URL}<!-- ENDIF -->"><!-- ENDIF --> {notifications.FORMATTED_TITLE} <!-- IF notifications.URL --></a><!-- ENDIF --><br /> {notifications.TIME} + <!-- IF not notifications.URL and notifications.UNREAD --> + <br /><a href="{notifications.U_MARK_READ}">{L_MARK_READ}</a> + <!-- ENDIF --> </td> </tr> <!-- END notifications --> |