diff options
author | PayBas <contact@paybas.com> | 2014-05-28 21:33:17 +0200 |
---|---|---|
committer | PayBas <contact@paybas.com> | 2014-06-15 10:02:08 +0200 |
commit | d5f4d288e92499b64e96aeafe673ed05708cc8da (patch) | |
tree | dbffc7117e7d3412fa2a4c01a0e00247d653b5f9 /phpBB/styles/prosilver/template/notification_dropdown.html | |
parent | 3a96c5b753cbbde459f9835e952b2cb75008a9fc (diff) | |
download | forums-d5f4d288e92499b64e96aeafe673ed05708cc8da.tar forums-d5f4d288e92499b64e96aeafe673ed05708cc8da.tar.gz forums-d5f4d288e92499b64e96aeafe673ed05708cc8da.tar.bz2 forums-d5f4d288e92499b64e96aeafe673ed05708cc8da.tar.xz forums-d5f4d288e92499b64e96aeafe673ed05708cc8da.zip |
[ticket/12608] Improve notifications drop-down menu styling in header
PHPBB3-12608
Diffstat (limited to 'phpBB/styles/prosilver/template/notification_dropdown.html')
-rw-r--r-- | phpBB/styles/prosilver/template/notification_dropdown.html | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/phpBB/styles/prosilver/template/notification_dropdown.html b/phpBB/styles/prosilver/template/notification_dropdown.html index db4d5bade7..fbe0e1efd4 100644 --- a/phpBB/styles/prosilver/template/notification_dropdown.html +++ b/phpBB/styles/prosilver/template/notification_dropdown.html @@ -20,12 +20,15 @@ <!-- BEGIN notifications --> <li class="<!-- IF notifications.UNREAD --> bg2<!-- ENDIF -->"> <!-- IF notifications.URL --> - <a href="<!-- IF notifications.UNREAD -->{notifications.U_MARK_READ}" data-real-url="{notifications.URL}<!-- ELSE -->{notifications.URL}<!-- ENDIF -->"> + <a href="<!-- IF notifications.UNREAD -->{notifications.U_MARK_READ}" class="notification-block" data-real-url="{notifications.URL}<!-- ELSE -->{notifications.URL}<!-- ENDIF -->"> <!-- ENDIF --> <!-- IF notifications.AVATAR -->{notifications.AVATAR}<!-- ELSE --><img src="{T_THEME_PATH}/images/no_avatar.gif" alt="" /><!-- ENDIF --> <div class="notification_text"> - <p>{notifications.FORMATTED_TITLE}</p> - <p>» {notifications.TIME}</p> + <p class="title">{notifications.FORMATTED_TITLE}</p> + <!-- IF notifications.REFERENCE --><p class="notification-reference">{notifications.REFERENCE}</p><!-- ENDIF --> + <!-- IF notifications.FORUM --><p class="notification-forum">{notifications.FORUM}</p><!-- ENDIF --> + <!-- IF notifications.REASON --><p class="notification-reason">{notifications.REASON}</p><!-- ENDIF --> + <p class="notification-time">{notifications.TIME}</p> </div> <!-- IF notifications.URL --></a><!-- ENDIF --> <!-- IF notifications.UNREAD --> |